Release 20240411 (#4989)

This commit is contained in:
pkippes 2024-04-11 14:34:51 +02:00 committed by GitHub
commit e7bf805a42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
86 changed files with 20249 additions and 3785 deletions

1
.github/CODEOWNERS vendored
View File

@ -19,3 +19,4 @@ tests/** @centreon/owners-robot-e2e
.github/** @centreon/owners-pipelines
packaging/** @centreon/owners-pipelines
selinux/** @centreon/owners-pipelines
.github/scripts/pod_spell_check.t @centreon/owners-perl

View File

@ -8,7 +8,7 @@ if (!@ARGV) {
die "Missing perl file to check.";
}
my $stopword_filename='.github/scripts/stopwords.t';
my $stopword_filename='tests/resources/spellcheck/stopwords.t';
if(defined($ARGV[1])){
$stopword_filename=$ARGV[1];
}
@ -19,4 +19,4 @@ printf("stopword file use : ".$stopword_filename." \n");
add_stopwords(<FILE>);
set_spell_cmd('hunspell -l');
all_pod_files_spelling_ok($ARGV[0]);
close(FILE);
close(FILE);

View File

@ -1,21 +0,0 @@
--filter-vdom
--force-counters32
Centreon
Datacore
Fortigate
Fortinet
license-instances-usage-prct
MBean
OID
oneaccess-sys-mib
perfdata
powershell
proto
Sansymphony
queue-messages-inflighted
SNMP
space-usage-prct
SSH
SureBackup
topic-messages-inflighted
Veeam

View File

@ -30,10 +30,10 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
node-version: 21
- name: Install Mockoon CLI
run: npm install -g -D @mockoon/cli@6.2.0
run: npm install -g -D @mockoon/cli@7.0.0
- name: Install perl dependencies
uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0
@ -65,22 +65,12 @@ jobs:
pip3.11 install RobotFramework-Examples
shell: bash
- name: Run Robot Framework API tests
- name: Run Robot Framework tests
run: |
sudo mkdir -p /var/lib/centreon/centplugins/
sudo chmod 777 /var/lib/centreon/centplugins/
robot tests/functional/api
- name: Run Robot Framework SNMP tests
run: |
sudo useradd snmp
sudo mkdir -p /usr/snmpsim/data
sudo cp -r tests/resources/snmp/* /usr/snmpsim/data/
sudo cp -r tests/robot/* /usr/snmpsim/data/
snmpsimd --logging-method=null --agent-udpv4-endpoint=127.0.0.1:2024 --process-user=snmp --process-group=snmp &
robot tests/functional/snmp
- name: Run Robot Framework Database tests
run: robot tests/functional/database
- name: Run Robot Framework Linux tests
run: robot tests/functional/linux
robot tests/robot

View File

@ -0,0 +1,3 @@
{
"dependencies": []
}

View File

@ -0,0 +1,9 @@
{
"pkg_name": "centreon-plugin-Applications-Infor-Ion-Grid-Restapi",
"pkg_summary": "Centreon Plugin to monitor ION Grid using RestAPI",
"plugin_name": "centreon_infor_ion_grid_restapi.pl",
"files": [
"centreon/plugins/script_custom.pm",
"apps/infor/ion/grid"
]
}

View File

@ -0,0 +1,3 @@
{
"dependencies": []
}

View File

@ -239,9 +239,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
Check job status.
[EXPERIMENTAL] Monitor job status.
=over 8

View File

@ -266,9 +266,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
Check licenses.
[EXPERIMENTAL] Monitor licenses.
=over 8

View File

@ -132,9 +132,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
List jobs.
[EXPERIMENTAL] List jobs.
=over 8

View File

@ -136,9 +136,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
List repositories.
[EXPERIMENTAL] List repositories.
=over 8

View File

@ -225,9 +225,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
Check repositories.
[EXPERIMENTAL] Monitor repositories.
=over 8

View File

@ -179,9 +179,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
Check tape jobs status.
[EXPERIMENTAL] Monitor tape jobs status.
=over 8

View File

@ -127,6 +127,7 @@ sub new {
});
return $self;
}
sub manage_selection {
my ($self, %options) = @_;
@ -213,9 +214,7 @@ __END__
=head1 MODE
EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time)
Check SureBackup jobs.
[EXPERIMENTAL] Monitor SureBackup jobs.
=over 8

View File

@ -48,8 +48,6 @@ __END__
=head1 PLUGIN DESCRIPTION
EXPERIMENTAL Plugin : Community-supported only (no support from Centreon at this time)
Check Veeam through powershell.
[EXPERIMENTAL] Monitor Veeam backup server using powershell script via WSMAN protocol.
=cut

View File

@ -0,0 +1,217 @@
#
# Copyright 2024 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
package apps::infor::ion::grid::custom::restapi;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
use centreon::plugins::http;
use JSON::XS;
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
if (!defined($options{output})) {
print "Class Custom: Need to specify 'output' argument.\n";
exit 3;
}
if (!defined($options{options})) {
$options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument.");
$options{output}->option_exit();
}
if (!defined($options{noptions})) {
$options{options}->add_options(arguments => {
'hostname:s' => { name => 'hostname' },
'port:s' => { name => 'port' },
'proto:s' => { name => 'proto' },
'api-username:s' => { name => 'api_username' },
'api-password:s' => { name => 'api_password' },
'timeout:s' => { name => 'timeout' },
'unknown-http-status:s' => { name => 'unknown_http_status' },
'warning-http-status:s' => { name => 'warning_http_status' },
'critical-http-status:s' => { name => 'critical_http_status' },
'cookies-file:s' => { name => 'cookies_file' }
});
}
$options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1);
$self->{output} = $options{output};
$self->{http} = centreon::plugins::http->new(%options, default_backend => 'curl');
return $self;
}
sub set_options {
my ($self, %options) = @_;
$self->{option_results} = $options{option_results};
}
sub set_defaults {}
sub check_options {
my ($self, %options) = @_;
$self->{hostname} = (defined($self->{option_results}->{hostname}))
? $self->{option_results}->{hostname}
: '';
$self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443;
$self->{proto} = (defined($self->{option_results}->{proto}))
? $self->{option_results}->{proto}
: 'https';
$self->{timeout} = (defined($self->{option_results}->{timeout}))
? $self->{option_results}->{timeout}
: 20;
$self->{api_username} = (defined($self->{option_results}->{api_username}))
? $self->{option_results}->{api_username}
: '';
$self->{api_password} = (defined($self->{option_results}->{api_password}))
? $self->{option_results}->{api_password}
: '';
$self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status}))
? $self->{option_results}->{unknown_http_status}
: '%{http_code} < 200 or %{http_code} >= 300';
$self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status}))
? $self->{option_results}->{warning_http_status}
: '';
$self->{critical_http_status} = (defined($self->{option_results}->{critical_http_status}))
? $self->{option_results}->{critical_http_status}
: '';
$self->{cookies_file} = (defined($self->{option_results}->{cookies_file}))
? $self->{option_results}->{cookies_file}
: '';
if ($self->{hostname} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify --hostname option.");
$self->{output}->option_exit();
}
if ($self->{api_username} ne '' && $self->{api_password} eq '') {
$self->{output}->add_option_msg(short_msg => "Need to specify --api-password option.");
$self->{output}->option_exit();
}
return 0;
}
sub build_options_for_httplib {
my ($self, %options) = @_;
$self->{option_results}->{hostname} = $self->{hostname};
$self->{option_results}->{port} = $self->{port};
$self->{option_results}->{proto} = $self->{proto};
$self->{option_results}->{timeout} = $self->{timeout};
if ($self->{api_username} ne '') {
$self->{option_results}->{credentials} = 1;
$self->{option_results}->{basic} = 1;
$self->{option_results}->{username} = $self->{api_username};
$self->{option_results}->{password} = $self->{api_password};
}
$self->{option_results}->{cookies_file} = $self->{cookies_file};
}
sub settings {
my ($self, %options) = @_;
return if (defined($self->{settings_done}));
$self->build_options_for_httplib();
$self->{http}->add_header(key => 'Accept', value => 'application/json');
$self->{http}->set_options(%{$self->{option_results}});
$self->{settings_done} = 1;
}
sub request_api {
my ($self, %options) = @_;
$self->settings();
my $content = $self->{http}->request(
%options,
unknown_status => $self->{unknown_http_status},
warning_status => $self->{warning_http_status},
critical_status => $self->{critical_http_status}
);
if (!defined($content) || $content eq '') {
$self->{output}->add_option_msg(short_msg => "API returns empty content [code: '"
. $self->{http}->get_code()
. "'] [message: '"
. $self->{http}->get_message()
. "']");
$self->{output}->option_exit();
}
my $decoded;
eval {
$decoded = JSON::XS->new->utf8->decode($content);
};
if ($@) {
$self->{output}->add_option_msg(short_msg =>
"Cannot decode response (add --debug option to display returned content)");
$self->{output}->option_exit();
}
return $decoded;
}
1;
__END__
=head1 NAME
ION Grid Rest API
=head1 REST API OPTIONS
=over 8
=item B<--hostname>
Define the name or the address of the host.
=item B<--port>
Define the port to connect to (default: '443').
=item B<--proto>
Select the right protocol between 'http' and 'https' (default: 'https').
=item B<--api-username>
Username to access the API.
=item B<--api-password>
Password to access the API.
=item B<--timeout>
Maximum time to wait (in seconds) for a response to HTTP requests before timeout (default: '20').
=back
=cut

View File

@ -0,0 +1,181 @@
#
# Copyright 2024 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
package apps::infor::ion::grid::mode::application;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng);
sub custom_status_output {
my ($self, %options) = @_;
return sprintf(
"state is '%s' [online: %s] [started: %s]",
$self->{result_values}->{state},
$self->{result_values}->{online},
$self->{result_values}->{started}
);
}
sub prefix_application_output {
my ($self, %options) = @_;
return sprintf(
"Application '%s' [description: %s] ",
$options{instance_value}->{name},
$options{instance_value}->{description}
);
}
sub prefix_global_output {
my ($self, %options) = @_;
return "Total applications ";
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'global',
type => 0,
cb_prefix_output => 'prefix_global_output' },
{ name => 'applications',
type => 1,
cb_prefix_output => 'prefix_application_output',
message_multiple => 'All applications are ok' },
];
$self->{maps_counters}->{global} = [
{ label => 'total',
nlabel => 'ion.grid.applications.total.count',
set => {
key_values => [{ name => 'total' }],
output_template => "Total : %s",
perfdatas => [{ template => '%d', min => 0 }] }
}
];
$self->{maps_counters}->{applications} = [
{
label => 'status',
type => 2,
critical_default => '%{online} =~ /true/ && %{state} !~ /^(OK)/i',
set => {
key_values => [
{ name => 'state' }, { name => 'online' }, { name => 'name' },
{ name => 'description' }, { name => 'started' }
],
closure_custom_output => $self->can('custom_status_output'),
closure_custom_perfdata => sub { return 0; },
closure_custom_threshold_check => \&catalog_status_threshold_ng
}
}
];
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
bless $self, $class;
$options{options}->add_options(arguments => {
'filter-name:s' => { name => 'filter_name' }
});
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
}
sub manage_selection {
my ($self, %options) = @_;
my $result = $options{custom}->request_api(
method => 'GET',
url_path => '/grid/rest/applications'
);
foreach my $entry (@{$result}) {
next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne ''
&& $entry->{name} !~ /$self->{option_results}->{filter_name}/);
$self->{applications}->{$entry->{name}} = {
name => $entry->{name},
description => $entry->{description},
online => ($entry->{online}) ? "true" : "false",
started => ($entry->{started}) ? "true" : "false",
state => $entry->{globalState}->{stateText}
}
}
if (scalar(keys %{$self->{applications}}) <= 0) {
$self->{output}->add_option_msg(short_msg => "No applications found");
$self->{output}->option_exit();
}
$self->{global}->{total} = scalar(keys %{$self->{applications}});
}
1;
__END__
=head1 MODE
Monitor the status of the application.
=over 8
=item B<--filter-name>
Define which applications should be monitored based on their names. This option will be treated as a regular expression.
Example: --filter-name='^application1$'
=item B<--warning-status>
Define the conditions to match for the status to be WARNING (default: '').
The condition can be written using special variables like %{state}, %{online}, %{started},
%{name} or %{description}. Regular expressions are supported.
Typical syntax: --warning-status='%{state} ne "OK"'
=item B<--critical-status>
Define the conditions to match for the status to be CRITICAL (default: '%{online} =~ /true/ && %{state} !~ /^(OK)/i').
The condition can be written using special variables like %{state}, %{online}, %{started},
%{name} or %{description}. Regular expressions are supported.
Typical syntax: --critical-status='%{started} ne "true"'
=item B<--warning-total>
Define the warning threshold for the total number of applications.
=item B<--critical-total>
Define the critical threshold for the total number of applications.
=back
=cut

View File

@ -0,0 +1,117 @@
#
# Copyright 2023 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
package apps::infor::ion::grid::mode::listapplications;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$options{options}->add_options(arguments => {});
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::init(%options);
}
sub manage_selection {
my ($self, %options) = @_;
my $result = $options{custom}->request_api(
method => 'GET',
url_path => '/grid/rest/applications'
);
my @applications;
foreach my $entry (@{$result}) {
push @applications, {
name => $entry->{name},
description => $entry->{description},
online => ($entry->{online}) ? "true" : "false",
started => ($entry->{started}) ? "true" : "false",
state => $entry->{globalState}->{stateText}
}
}
return \@applications;
}
sub run {
my ($self, %options) = @_;
my $results = $self->manage_selection(%options);
foreach (@$results) {
$self->{output}->output_add(
long_msg => sprintf(
'[name: %s][description: %s][online: %s][started: %s][state: %s]',
$_->{name},
$_->{description},
$_->{online},
$_->{started},
$_->{state}
)
);
}
$self->{output}->output_add(
severity => 'OK',
short_msg => 'List applications:'
);
$self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1);
$self->{output}->exit();
}
sub disco_format {
my ($self, %options) = @_;
$self->{output}->add_disco_format(elements => ['name', 'description', 'online', 'started', 'state']);
}
sub disco_show {
my ($self, %options) = @_;
my $results = $self->manage_selection(%options);
foreach (@$results) {
$self->{output}->add_disco_entry(%$_);
}
}
1;
=head1 MODE
List applications.
=over 8
=back
=cut

View File

@ -0,0 +1,117 @@
#
# Copyright 2023 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
package apps::infor::ion::grid::mode::listnodes;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$options{options}->add_options(arguments => {});
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::init(%options);
}
sub manage_selection {
my ($self, %options) = @_;
my $result = $options{custom}->request_api(
method => 'GET',
url_path => '/grid/rest/nodes'
);
my @nodes;
foreach my $entry (@{$result}) {
push @nodes, {
type => ucfirst(lc($entry->{entityType})),
name => $entry->{name},
application_name => $entry->{applicationName},
host_name => $entry->{hostName},
state => ($entry->{online}) ? "online" : "offline"
}
}
return \@nodes;
}
sub run {
my ($self, %options) = @_;
my $results = $self->manage_selection(%options);
foreach (@$results) {
$self->{output}->output_add(
long_msg => sprintf(
'[type: %s][name: %s][application_name: %s][host_name: %s][state: %s]',
$_->{type},
$_->{name},
$_->{application_name},
$_->{host_name},
$_->{state}
)
);
}
$self->{output}->output_add(
severity => 'OK',
short_msg => 'List nodes:'
);
$self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1);
$self->{output}->exit();
}
sub disco_format {
my ($self, %options) = @_;
$self->{output}->add_disco_format(elements => ['type', 'name', 'application_name', 'host_name', 'state']);
}
sub disco_show {
my ($self, %options) = @_;
my $results = $self->manage_selection(%options);
foreach (@$results) {
$self->{output}->add_disco_entry(%$_);
}
}
1;
=head1 MODE
List nodes.
=over 8
=back
=cut

View File

@ -0,0 +1,243 @@
#
# Copyright 2024 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
package apps::infor::ion::grid::mode::node;
use base qw(centreon::plugins::templates::counter);
use strict;
use warnings;
use centreon::plugins::misc;
use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng);
sub custom_heap_output {
my ($self, %options) = @_;
return sprintf(
'Heap usage: %s%s/%s%s (%.2f%%)',
$self->{perfdata}->change_bytes(value => $self->{result_values}->{heap_used}),
$self->{perfdata}->change_bytes(value => $self->{result_values}->{heap_max}),
$self->{result_values}->{heap_percent}
);
}
sub custom_status_output {
my ($self, %options) = @_;
return sprintf(
"state is '%s'",
$self->{result_values}->{state}
);
}
sub prefix_node_output {
my ($self, %options) = @_;
return sprintf(
"Node '%s' with PID '%s' from application '%s' on host '%s' ",
$options{instance_value}->{name},
$options{instance_value}->{pid},
$options{instance_value}->{application_name},
$options{instance_value}->{host_name}
);
}
sub set_counters {
my ($self, %options) = @_;
$self->{maps_counters_type} = [
{ name => 'nodes',
type => 1,
cb_prefix_output => 'prefix_node_output',
message_multiple => 'All nodes are ok' },
];
$self->{maps_counters}->{nodes} = [
{
label => 'status',
type => 2,
warning_default => '%{state} !~ /online/',
set => {
key_values => [
{ name => 'state' }, { name => 'name' }, { name => 'host_name' },
{ name => 'application_name' }, { name => 'type' }, { name => 'pid' }
],
closure_custom_output => $self->can('custom_status_output'),
closure_custom_perfdata => sub { return 0; },
closure_custom_threshold_check => \&catalog_status_threshold_ng
}
},
{ label => 'log-error', nlabel => 'node.log.error.count', set => {
key_values => [{ name => 'logger_error' }, { name => 'pid' }],
output_template => 'Log error: %d',
perfdatas => [
{ template => '%d', min => 0,
label_extra_instance => 1, instance_use => 'pid' }
]
}
},
{ label => 'log-warning', nlabel => 'node.log.warning.count', set => {
key_values => [{ name => 'logger_warning' }, { name => 'pid' }],
output_template => 'Log warning: %d',
perfdatas => [
{ template => '%d', min => 0,
label_extra_instance => 1, instance_use => 'pid' }
]
}
},
{ label => 'uptime', nlabel => 'node.uptime.seconds', set => {
key_values => [{ name => 'uptime' }, { name => 'uptime_human' }],
output_template => 'Uptime: %s',
output_use => 'uptime_human',
closure_custom_perfdata => sub { return 0; },
}
},
{ label => 'cpu-usage', nlabel => 'node.cpu.usage.percentage', set => {
key_values => [{ name => 'cpu_percent' }, { name => 'pid' }],
output_template => 'CPU usage: %.2f%%',
perfdatas => [
{ template => '%.2f', min => 0, max => 100, unit => '%',
label_extra_instance => 1, instance_use => 'pid' }
]
}
},
{ label => 'heap-usage', nlabel => 'node.heap.usage.percentage', set => {
key_values => [{ name => 'heap_percent' }, { name => 'heap_used' },
{ name => 'heap_max' }, { name => 'pid' }],
closure_custom_output => $self->can('custom_heap_output'),
perfdatas => [
{ template => '%.2f', min => 0, max => 100, unit => '%',
label_extra_instance => 1, instance_use => 'pid' }
]
}
}
];
}
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
bless $self, $class;
$options{options}->add_options(arguments => {
'filter-type:s' => { name => 'filter_type' },
'filter-name:s' => { name => 'filter_name' },
'filter-application-name:s' => { name => 'filter_application_name' },
'filter-host-name:s' => { name => 'filter_host_name' }
});
return $self;
}
sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
}
sub manage_selection {
my ($self, %options) = @_;
my $result = $options{custom}->request_api(
method => 'GET',
url_path => '/grid/rest/nodes'
);
foreach my $entry (@{$result}) {
next if (defined($self->{option_results}->{filter_type})
&& $self->{option_results}->{filter_type} ne ''
&& $entry->{entityType} !~ /$self->{option_results}->{filter_type}/i);
next if (defined($self->{option_results}->{filter_name})
&& $self->{option_results}->{filter_name} ne ''
&& $entry->{name} !~ /$self->{option_results}->{filter_name}/);
next if (defined($self->{option_results}->{filter_host_name})
&& $self->{option_results}->{filter_host_name} ne ''
&& $entry->{hostName} !~ /$self->{option_results}->{filter_host_name}/);
next if (defined($self->{option_results}->{filter_application_name})
&& $self->{option_results}->{filter_application_name} ne ''
&& $entry->{applicationName} !~ /$self->{option_results}->{filter_application_name}/);
$self->{nodes}->{$entry->{jvmId}} = {
type => ucfirst(lc($entry->{entityType})),
name => $entry->{name},
application_name => $entry->{applicationName},
host_name => $entry->{hostName},
uptime => ($entry->{upTime} > 0) ? $entry->{upTime} / 1000 : 0,
uptime_human => ($entry->{upTime} > 0) ? centreon::plugins::misc::change_seconds(value => $entry->{upTime} / 1000) : 0,
logger_error => $entry->{loggerErrorCount},
logger_warning => $entry->{loggerWarningCount},
heap_used => $entry->{memoryUsed},
heap_max => $entry->{memoryMax},
heap_percent => $entry->{memoryUsed} / $entry->{memoryMax} * 100,
cpu_percent => $entry->{cpuPercent},
state => ($entry->{online}) ? "online" : "offline"
};
$self->{nodes}->{$entry->{jvmId}}->{pid} = $1 if ($entry->{jvmId} =~ /-(\d+)$/); # 10.1.2.3:50156-5152
}
if (scalar(keys %{$self->{nodes}}) <= 0) {
$self->{output}->add_option_msg(short_msg => "No nodes found");
$self->{output}->option_exit();
}
}
1;
__END__
=head1 MODE
Monitor the status and the statistics of the nodes.
=over 8
=item B<--filter-type>
Define which nodes should be monitored based on the their type. This option will be treated as a regular expression.
=item B<--filter-name>
Define which nodes should be monitored based on the their name. This option will be treated as a regular expression.
=item B<--filter-application-name>
Define which applications should be monitored based on the their name. This option will be treated as a regular expression.
=item B<--filter-host-name>
Define which hosts should be monitored based on the their name. This option will be treated as a regular expression.
=item B<--warning-status>
Define the conditions to match to return a warning status (default: "%{state} !~ /online/").
The condition can be written using the following macros: %{state}, %{name}, %{host_name},
%{application_name}, %{type}.
=item B<--critical-status>
Define the conditions to match to return a critical status.
The condition can be written using the following macros: %{state}, %{name}, %{host_name},
%{application_name}, %{type}.
=item B<--warning-*> B<--critical-*>
Thresholds for 'log-error', 'log-warning', 'uptime' (s), 'cpu-usage', 'heap-usage' (%).
=back
=cut

View File

@ -0,0 +1,49 @@
#
# Copyright 2020 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
package apps::infor::ion::grid::plugin;
use strict;
use warnings;
use base qw(centreon::plugins::script_custom);
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$self->{modes} = {
'application' => 'apps::infor::ion::grid::mode::application',
'list-applications' => 'apps::infor::ion::grid::mode::listapplications',
'list-nodes' => 'apps::infor::ion::grid::mode::listnodes',
'node' => 'apps::infor::ion::grid::mode::node'
};
$self->{custom_modes}->{restapi} = 'apps::infor::ion::grid::custom::restapi';
return $self;
}
1;
=head1 PLUGIN DESCRIPTION
Check Infor ION Grid using API.
=cut

View File

@ -49,7 +49,7 @@ Try {
Foreach ($update in $updates) {
$item = @{
title = $update.Title;
title = $update.Title.Normalize([Text.NormalizationForm]::FormD) -replace "\p{M}", "" -replace "\p{Z}", " ";
isMandatory = $update.IsMandatory;
}

View File

@ -330,6 +330,7 @@ sub request {
}
if (defined($options{request}->{cookies_file})) {
$self->curl_setopt(option => $self->{constant_cb}->(name => 'CURLOPT_COOKIEFILE'), parameter => $options{request}->{cookies_file});
$self->curl_setopt(option => $self->{constant_cb}->(name => 'CURLOPT_COOKIEJAR'), parameter => $options{request}->{cookies_file});
}
$self->curl_setopt(option => $self->{constant_cb}->(name => 'CURLOPT_FOLLOWLOCATION'), parameter => 1);

View File

@ -211,7 +211,7 @@ sub check_options {
my $label = $_->{label};
$label =~ s/-//g;
$list_counter .= $_->{label}." ";
$th_counter .= "--warning-$_->{label}='\$_SERVICEWARNING" . uc($label) . "\$' --critical-$_->{label}='\$_SERVICECRITICAL" . uc($label) . "\$'";
$th_counter .= " --warning-$_->{label}='\$_SERVICEWARNING" . uc($label) . "\$' --critical-$_->{label}='\$_SERVICECRITICAL" . uc($label) . "\$'";
}
}

View File

@ -382,7 +382,7 @@ sub service_message {
' . $self->{option_results}->{service_output} . '
' . $self->{option_results}->{service_longoutput};
$self->{option_results}->{service_longoutput} =~ s/\\n/<br \/>/g;
$self->{option_results}->{service_longoutput} =~ s/\n/<br \/>/g;
my $output = $self->{option_results}->{service_output} . $line_break . $self->{option_results}->{service_longoutput};
my $background_color= 'white';
@ -829,7 +829,7 @@ Use this option to disable SSL.
=item B<--smtp-debug>
Enable smtp-debug mode.
Enable debugging of SMTP.
=item B<--to-address>

View File

@ -153,7 +153,7 @@ sub manage_selection {
my @lines = split /\n/, $stdout;
foreach my $line (@lines) {
next if ($line !~ /^(\S+)\s+(\S+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\S+)\s+(.*)/);
my ($fs, $type, $size, $used, $available, $percent, $mount) = ($1, $2, $3, $4, $5, $6, $7);
my ($fs, $type, $used, $available, $percent, $mount) = ($1, $2, $4, $5, $6, $7);
next if (defined($self->{option_results}->{filter_fs}) && $self->{option_results}->{filter_fs} ne '' &&
$fs !~ /$self->{option_results}->{filter_fs}/);
@ -170,9 +170,9 @@ sub manage_selection {
display => $mount,
fs => $fs,
type => $type,
total => $size * 1024,
used => $used * 1024,
free => $available * 1024
free => $available * 1024,
total => ($used + $available) * 1024
};
}

View File

@ -212,6 +212,7 @@ sub manage_selection {
my $instance = $1 . '.' . $2;
my $name = $self->{output}->decode(join('', map(chr($_), split(/\./, $2))));
$self->{option_results}->{filter_name} = $self->{output}->decode($self->{option_results}->{filter_name});
next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' &&
$name !~ /$self->{option_results}->{filter_name}/);

View File

@ -32,7 +32,7 @@ use Safe;
# Calc functions
#########################
sub custom_threshold_output {
my ($self, %options) = @_;
my ($self, %options) = @_;
my $status = 'ok';
if (defined($self->{instance_mode}->{option_results}->{critical_status}) && $self->{instance_mode}->{option_results}->{critical_status} ne '' &&
@ -278,7 +278,7 @@ sub custom_traffic_threshold {
sub custom_traffic_output {
my ($self, %options) = @_;
my ($traffic_value, $traffic_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{traffic_per_seconds}, network => 1);
my ($traffic_value, $traffic_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{traffic_per_seconds}, network => 1);
return sprintf(
'Traffic %s : %s/s (%s)',
ucfirst($self->{result_values}->{label}), $traffic_value . $traffic_unit,
@ -298,7 +298,7 @@ sub custom_traffic_calc {
my $diff_traffic = ($options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref} } - $options{old_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref} });
$self->{result_values}->{traffic_per_seconds} = $diff_traffic / $options{delta_time};
$self->{result_values}->{traffic_counter} = $options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref} };
if (defined($options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}}) &&
if (defined($options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}}) &&
$options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}} > 0) {
$self->{result_values}->{traffic_prct} = $self->{result_values}->{traffic_per_seconds} * 100 / $options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}};
$self->{result_values}->{speed} = $options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}};
@ -402,10 +402,10 @@ sub custom_errors_calc {
}
my $errors = $options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} };
my $errors_diff = ($options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} } -
my $errors_diff = ($options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} } -
$options{old_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} });
my $total = $options{new_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'};
my $total_diff = ($options{new_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'} -
my $total_diff = ($options{new_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'} -
$options{old_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'});
$self->{result_values}->{prct} = 0;
@ -456,7 +456,7 @@ sub custom_speed_calc {
sub set_counters_global {
my ($self, %options) = @_;
push @{$self->{maps_counters}->{global}},
push @{$self->{maps_counters}->{global}},
{ label => 'total-port', filter => 'add_global', nlabel => 'total.interfaces.count', set => {
key_values => [ { name => 'total_port' } ],
output_template => 'Total port : %s', output_error_template => 'Total port : %s',
@ -509,7 +509,7 @@ sub set_counters_global {
sub set_counters_status {
my ($self, %options) = @_;
push @{$self->{maps_counters}->{int}},
push @{$self->{maps_counters}->{int}},
{ label => 'status', filter => 'add_status', threshold => 0, set => {
key_values => $self->set_key_values_status(),
closure_custom_calc => $self->can('custom_status_calc'),
@ -526,7 +526,7 @@ sub set_counters_traffic {
return if ($self->{no_traffic} != 0 && $self->{no_set_traffic} != 0);
push @{$self->{maps_counters}->{int}},
push @{$self->{maps_counters}->{int}},
{ label => 'in-traffic', filter => 'add_traffic', nlabel => 'interface.traffic.in.bitspersecond', set => {
key_values => $self->set_key_values_in_traffic(),
closure_custom_calc => $self->can('custom_traffic_calc'), closure_custom_calc_extra_options => { label_ref => 'in' },
@ -551,7 +551,7 @@ sub set_counters_errors {
return if ($self->{no_errors} != 0 && $self->{no_set_errors} != 0);
push @{$self->{maps_counters}->{int}},
push @{$self->{maps_counters}->{int}},
{ label => 'in-discard', filter => 'add_errors', nlabel => 'interface.packets.in.discard.count', set => {
key_values => [ { name => 'indiscard', diff => 1 }, { name => 'total_in_packets', diff => 1 }, { name => 'display' }, { name => 'mode_cast' } ],
closure_custom_calc => $self->can('custom_errors_calc'), closure_custom_calc_extra_options => { label_ref1 => 'in', label_ref2 => 'discard' },
@ -592,7 +592,7 @@ sub set_counters_cast {
return if ($self->{no_cast} != 0 && $self->{no_set_cast} != 0);
push @{$self->{maps_counters}->{int}},
push @{$self->{maps_counters}->{int}},
{ label => 'in-ucast', filter => 'add_cast', nlabel => 'interface.packets.in.unicast.count', set => {
key_values => [ { name => 'iucast', diff => 1 }, { name => 'imcast', diff => 1 }, { name => 'ibcast', diff => 1 }, { name => 'display' }, { name => 'mode_cast' } ],
closure_custom_calc => $self->can('custom_cast_calc'),
@ -655,7 +655,7 @@ sub set_counters_speed {
return if ($self->{no_speed} != 0 && $self->{no_set_speed} != 0);
push @{$self->{maps_counters}->{int}},
push @{$self->{maps_counters}->{int}},
{ label => 'speed', filter => 'add_speed', nlabel => 'interface.speed.bitspersecond', set => {
key_values => [ { name => 'speed' }, { name => 'display' } ],
closure_custom_calc => $self->can('custom_speed_calc'),
@ -676,7 +676,7 @@ sub set_counters_volume {
return if ($self->{no_volume} != 0 && $self->{no_set_volume} != 0);
push @{$self->{maps_counters}->{int}},
push @{$self->{maps_counters}->{int}},
{ label => 'in-volume', filter => 'add_volume', nlabel => 'interface.volume.in.bytes', set => {
key_values => [ { name => 'in_volume', diff => 1 }, { name => 'display' } ],
output_template => 'Volume In : %.2f %s',
@ -927,13 +927,14 @@ sub new {
bless $self, $class;
$self->{no_oid_options} = defined($options{no_oid_options}) && $options{no_oid_options} =~ /^[01]$/ ? $options{no_oid_options} : 0;
$self->{no_interfaceid_options} = defined($options{no_interfaceid_options}) && $options{no_interfaceid_options} =~ /^[01]$/ ?
$self->{no_interfaceid_options} = defined($options{no_interfaceid_options}) && $options{no_interfaceid_options} =~ /^[01]$/ ?
$options{no_interfaceid_options} : 0;
$options{options}->add_options(arguments => {
'add-global' => { name => 'add_global' },
'add-status' => { name => 'add_status' },
'add-duplex-status' => { name => 'add_duplex_status' },
'regex-id' => { name => 'regex_id' },
'warning-status:s' => { name => 'warning_status', default => $self->default_warning_status() },
'critical-status:s' => { name => 'critical_status', default => $self->default_critical_status() },
'check-metrics:s' => { name => 'check_metrics', default => $self->default_check_metrics() },
@ -1042,7 +1043,7 @@ sub check_options {
$self->{output}->add_option_msg(short_msg => 'Cannot use option --add-speed with --speed, --speed-in or --speed-out options.');
$self->{output}->option_exit();
}
# If no options, we set status
if (!defined($self->{option_results}->{add_global}) &&
!defined($self->{option_results}->{add_status}) && !defined($self->{option_results}->{add_traffic}) &&
@ -1143,7 +1144,7 @@ sub reload_cache {
if ($func = $self->can($self->{oids_label}->{ $self->{option_results}->{oid_display} }->{get})) {
$func->($self, snmp_get => $snmp_get, name => $self->{option_results}->{oid_display});
}
if (defined($self->{option_results}->{oid_extra_display}) &&
if (defined($self->{option_results}->{oid_extra_display}) &&
($func = $self->can($self->{oids_label}->{ $self->{option_results}->{oid_extra_display} }->{get}))) {
$func->($self, snmp_get => $snmp_get, name => $self->{option_results}->{oid_extra_display});
}
@ -1166,12 +1167,12 @@ sub reload_cache {
$func = $self->can($self->{oids_label}->{$self->{option_results}->{oid_display}}->{cache});
$func->($self, result => $result, datas => $datas, name => $self->{option_results}->{oid_display});
}
if (defined($self->{option_results}->{oid_extra_display}) && $self->{option_results}->{oid_extra_display} ne $self->{option_results}->{oid_display} &&
if (defined($self->{option_results}->{oid_extra_display}) && $self->{option_results}->{oid_extra_display} ne $self->{option_results}->{oid_display} &&
$self->{option_results}->{oid_extra_display} ne $self->{option_results}->{oid_filter}) {
$func = $self->can($self->{oids_label}->{$self->{option_results}->{oid_extra_display}}->{cache});
$func->($self, result => $result, datas => $datas, name => $self->{option_results}->{oid_extra_display});
}
$self->{statefile_cache}->write(data => $datas);
}
@ -1205,11 +1206,17 @@ sub get_selection {
}
my $all_ids = $self->{statefile_cache}->get(name => 'all_ids');
if (!defined($self->{option_results}->{use_name}) && defined($self->{option_results}->{interface})
if (!defined($self->{option_results}->{use_name}) && defined($self->{option_results}->{interface})
&& $self->{no_interfaceid_options} == 0) {
foreach (@{$all_ids}) {
if ($self->{option_results}->{interface} =~ /(^|\s|,)$_(\s*,|$)/) {
$self->add_selected_interface(id => $_);
for my $id (@{$all_ids}) {
if (defined($self->{option_results}->{regex_id}) # with option regex_id
and $id =~ /$self->{option_results}->{interface}/ # id must match the regex
or !defined($self->{option_results}->{regex_id}) # without the option
and $self->{option_results}->{interface} =~ /(^|\s|,)$id(\s*,|$)/ # the id must be part of the list
) {
$self->add_selected_interface(id => $id);
}
}
} else {
@ -1305,7 +1312,7 @@ sub load_cast {
my ($self, %options) = @_;
$self->set_oids_cast();
if (!defined($self->{option_results}->{force_counters64})) {
if (!defined($self->{option_results}->{force_counters64})) {
$self->{snmp}->load(
oids => [
$self->{oid_ifInUcastPkts}, $self->{oid_ifInBroadcastPkts}, $self->{oid_ifInMulticastPkts},
@ -1360,7 +1367,7 @@ sub manage_selection {
my $custom_add_result_method = $self->can('custom_add_result');
$self->get_selection();
$self->{array_interface_selected} = [keys %{$self->{int}}];
$self->{array_interface_selected} = [keys %{$self->{int}}];
$self->load_status() if (defined($self->{option_results}->{add_status}) || defined($self->{option_results}->{add_global}));
$self->load_errors() if (defined($self->{option_results}->{add_errors}));
$self->load_traffic() if (defined($self->{option_results}->{add_traffic}));
@ -1372,7 +1379,7 @@ sub manage_selection {
$self->{results} = $self->{snmp}->get_leef();
$self->pre_result();
$self->add_result_global() if (defined($self->{option_results}->{add_global}));
$self->add_result_global() if (defined($self->{option_results}->{add_global}));
foreach (@{$self->{array_interface_selected}}) {
$self->add_result_status(instance => $_) if (defined($self->{option_results}->{add_status}));
$self->add_result_traffic(instance => $_) if (defined($self->{option_results}->{add_traffic}));
@ -1383,7 +1390,7 @@ sub manage_selection {
$self->$custom_add_result_method(instance => $_) if ($custom_add_result_method);
}
$self->{cache_name} = 'snmpstandard_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' .
$self->{cache_name} = 'snmpstandard_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' .
(defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')) . '_' .
(defined($self->{option_results}->{interface}) ? md5_hex($self->{option_results}->{interface}) : md5_hex('all')) . '_' .
md5_hex($self->{checking});
@ -1444,12 +1451,12 @@ sub pre_result {
$self->{map_speed_dsl}->[$i]->{speed_in} = $results->{ $self->{oid_adslAturCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }
if (defined($results->{ $self->{oid_adslAturCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }));
$self->{map_speed_dsl}->[$i]->{speed_out} = $results->{ $self->{oid_adslAtucCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }
if (defined($results->{ $self->{oid_adslAtucCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }));
if (defined($results->{ $self->{oid_adslAtucCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }));
} elsif ($self->{results}->{ $self->{oid_iftype} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} } == 251) {
$self->{map_speed_dsl}->[$i]->{speed_in} = $results->{ $self->{oid_xdsl2LineStatusAttainableRateDs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }
if (defined($results->{ $self->{oid_xdsl2LineStatusAttainableRateDs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }));
$self->{map_speed_dsl}->[$i]->{speed_out} = $results->{ $self->{oid_xdsl2LineStatusAttainableRateUs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }
if (defined($results->{ $self->{oid_xdsl2LineStatusAttainableRateUs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }));
if (defined($results->{ $self->{oid_xdsl2LineStatusAttainableRateUs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} }));
}
}
}
@ -1458,7 +1465,7 @@ sub pre_result {
sub add_result_status {
my ($self, %options) = @_;
$self->{int}->{$options{instance}}->{opstatus} = defined($self->{results}->{$self->{oid_opstatus} . '.' . $options{instance}}) ? $self->{oid_opstatus_mapping}->{$self->{results}->{$self->{oid_opstatus} . '.' . $options{instance}}} : undef;
$self->{int}->{$options{instance}}->{admstatus} = defined($self->{results}->{$self->{oid_adminstatus} . '.' . $options{instance}}) ? $self->{oid_adminstatus_mapping}->{$self->{results}->{$self->{oid_adminstatus} . '.' . $options{instance}}} : undef;
$self->{int}->{$options{instance}}->{duplexstatus} = defined($self->{results}->{$self->{oid_duplexstatus} . '.' . $options{instance}}) ? $self->{oid_duplexstatus_mapping}->{$self->{results}->{$self->{oid_duplexstatus} . '.' . $options{instance}}} : 'n/a';
@ -1466,7 +1473,7 @@ sub add_result_status {
sub add_result_errors {
my ($self, %options) = @_;
$self->{int}->{$options{instance}}->{indiscard} = $self->{results}->{$self->{oid_ifInDiscards} . '.' . $options{instance}};
$self->{int}->{$options{instance}}->{inerror} = $self->{results}->{$self->{oid_ifInErrors} . '.' . $options{instance}};
$self->{int}->{$options{instance}}->{outdiscard} = $self->{results}->{$self->{oid_ifOutDiscards} . '.' . $options{instance}};
@ -1475,7 +1482,7 @@ sub add_result_errors {
sub add_result_traffic {
my ($self, %options) = @_;
$self->{int}->{$options{instance}}->{mode_traffic} = 32;
$self->{int}->{$options{instance}}->{in} = $self->{results}->{$self->{oid_in32} . '.' . $options{instance}};
$self->{int}->{$options{instance}}->{out} = $self->{results}->{$self->{oid_out32} . '.' . $options{instance}};
@ -1510,7 +1517,7 @@ sub add_result_traffic {
} else {
$interface_speed = $self->{results}->{$self->{oid_speed32} . '.' . $options{instance}};
}
$self->{int}->{$options{instance}}->{speed_in} = $interface_speed;
$self->{int}->{$options{instance}}->{speed_out} = $interface_speed;
@ -1526,10 +1533,10 @@ sub add_result_traffic {
$self->{int}->{$options{instance}}->{speed_out} = $self->{option_results}->{speed_out} * 1000000 if (defined($self->{option_results}->{speed_out}) && $self->{option_results}->{speed_out} ne '');
}
}
sub add_result_cast {
my ($self, %options) = @_;
$self->{int}->{$options{instance}}->{mode_cast} = 32;
$self->{int}->{$options{instance}}->{iucast} = $self->{results}->{$self->{oid_ifInUcastPkts} . '.' . $options{instance}};
$self->{int}->{$options{instance}}->{ibcast} = defined($self->{results}->{$self->{oid_ifInBroadcastPkts} . '.' . $options{instance}}) ? $self->{results}->{$self->{oid_ifInBroadcastPkts} . '.' . $options{instance}} : 0;
@ -1551,11 +1558,11 @@ sub add_result_cast {
$self->{int}->{$options{instance}}->{mode_cast} = 64;
}
}
foreach (('iucast', 'imcast', 'ibcast', 'oucast', 'omcast', 'obcast')) {
$self->{int}->{$options{instance}}->{$_} = 0 if (!defined($self->{int}->{$options{instance}}->{$_}));
}
# https://tools.ietf.org/html/rfc3635 : The IF-MIB octet counters
# count the number of octets sent to or received from the layer below
# this interface, whereas the packet counters count the number of
@ -1585,13 +1592,13 @@ sub add_result_speed {
} else {
$interface_speed = $self->{results}->{$self->{oid_speed32} . "." . $options{instance}};
}
$self->{int}->{$options{instance}}->{speed} = $interface_speed;
}
sub add_result_volume {
my ($self, %options) = @_;
$self->{int}->{$options{instance}}->{mode_traffic} = 32;
$self->{int}->{$options{instance}}->{in_volume} = $self->{results}->{$self->{oid_in32} . '.' . $options{instance}};
$self->{int}->{$options{instance}}->{out_volume} = $self->{results}->{$self->{oid_out32} . '.' . $options{instance}};
@ -1683,15 +1690,20 @@ Units of thresholds for communication types (default: 'percent_delta') ('percent
=item B<--nagvis-perfdata>
Display traffic perfdata to be compatible with nagvis widget.
Display traffic perfdata to be compatible with NagVis widget.
=item B<--interface>
Set the interface (number expected) example: 1,2,... (empty means 'check all interfaces').
Define the interface filter on IDs (OID indexes, e.g.: 1,2,...). If empty, all interfaces will be monitored.
To filter on interface names, see --name.
=item B<--name>
Allows you to define the interface (in option --interface) by name instead of OID index. The name matching mode supports regular expressions.
With this option, the interfaces will be filtered by name (given in option --interface) instead of OID index. The name matching mode supports regular expressions.
=item B<--regex-id>
With this option, interface IDs will be filtered using the --interface parameter as a regular expression instead of a list of IDs.
=item B<--speed>
@ -1707,7 +1719,7 @@ Set interface speed for outgoing traffic (in Mb).
=item B<--map-speed-dsl>
Get interface speed configuration for interface type 'adsl' and 'vdsl2'.
Get interface speed configuration for interfaces of type 'ADSL' and 'VDSL2'.
Syntax: --map-speed-dsl=interface-src-name,interface-dsl-name
@ -1719,7 +1731,7 @@ Force to use 64 bits counters only. Can be used to improve performance.
=item B<--force-counters32>
Force to use 32 bits counters (even in snmp v2c and v3). Should be used when 64 bits counters are buggy.
Force to use 32-bits counters (even with SNMP versions 2c and 3). To use when 64 bits counters are buggy.
=item B<--reload-cache-time>

View File

@ -123,16 +123,19 @@ sub get_change_value {
my $value = $options{value};
return '' if (!defined($options{value}));
if (defined($self->{map_values}->{$options{value}})) {
if (defined($self->{option_results}->{convert_custom_values}) && $self->{option_results}->{convert_custom_values} ne '') {
eval "\$value = $self->{option_results}->{convert_custom_values}";
}
if (defined($value) && defined($self->{map_values}->{$value})) {
$value = $self->{map_values}->{$value}
} elsif (defined($self->{map_values}->{$options{value}})) {
$value = $self->{map_values}->{$options{value}};
} elsif (defined($self->{option_results}->{map_value_other}) && $self->{option_results}->{map_value_other} ne '') {
$value = $self->{option_results}->{map_value_other};
}
if (defined($self->{option_results}->{convert_custom_values}) && $self->{option_results}->{convert_custom_values} ne '') {
eval "\$value = $self->{option_results}->{convert_custom_values}";
}
return $value;
}
@ -316,9 +319,9 @@ __END__
=head1 MODE
Check SNMP string values (can be a String or an Integer).
Check SNMP string values (can be a string or an integer).
Check values absent:
Check absent values:
centreon_plugins.pl --plugin=snmp_standard::plugin --mode=string-value --hostname=127.0.0.1 --snmp-version=2c --snmp-community=public
--oid-table='.1.3.6.1.2.1.25.4.2.1.2' --format-ok='%{filter_rows} processes' --format-critical='processes are absent: %{details_critical}' --critical-absent='centengine' --critical-absent='crond' --filter-table-value='centengine|crond'
@ -392,7 +395,7 @@ Separator uses between values (default: coma).
=item B<--convert-custom-values>
Custom code to convert values.
Example to convert octetstring to macaddress: --convert-custom-values='join(":", unpack("(H2)*", $value))'
Example to convert octet string to MAC address: --convert-custom-values='join(":", unpack("(H2)*", $value))'
=item B<--use-perl-mod>

View File

@ -1,377 +0,0 @@
*** Settings ***
Documentation OS Linux Local plugin
Library OperatingSystem
Library String
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin
# Test list-systemdservices mode with filter-name option set to a fake value
&{linux_local_listsystemd_test1}
... filtername=toto
... filterdescription=
... result=List systemd services:
# Test list-systemdservices mode with filter-name option set to a service name value
&{linux_local_listsystemd_test2}
... filtername=NetworkManager.service
... filterdescription=
... result=List systemd services: \n\'NetworkManager.service\' [desc = NetworkManager.service] [load = not-found] [active = inactive] [sub = dead]
# Test list-systemdservices mode with filter-description option set to a fake value
&{linux_local_listsystemd_test3}
... filtername=
... filterdescription=toto
... result=List systemd services:
# Test list-systemdservices mode with filter-description option set to a service description value
&{linux_local_listsystemd_test4}
... filtername=
... filterdescription='User Manager for UID 1001'
... result=List systemd services: \n\'user@1001.service\' [desc = User Manager for UID 1001] [load = loaded] [active = active] [sub = running]
@{linux_local_listsystemd_tests}
... &{linux_local_listsystemd_test1}
... &{linux_local_listsystemd_test2}
... &{linux_local_listsystemd_test3}
... &{linux_local_listsystemd_test4}
# Test simple usage of the systemd-sc-status mode
&{linux_local_systemd_test_1}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 120, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with filter-name option set to a fake value
&{linux_local_systemd_test_2}
... filtername=toto
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=UNKNOWN: No service found.
# Test systemd-sc-status mode with filter-name option set to a service name value
&{linux_local_systemd_test_3}
... filtername=NetworkManager.service
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=OK: Total Running: 0, Total Failed: 0, Total Dead: 1, Total Exited: 0 - Service 'NetworkManager.service' status : not-found/inactive/dead [boot: -] | 'total_running'=0;;;0;1 'total_failed'=0;;;0;1 'total_dead'=1;;;0;1 'total_exited'=0;;;0;1
# Test systemd-sc-status mode with exclude-name option set to a fake value
&{linux_local_systemd_test_4}
... filtername=
... excludename=toto
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 120, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with exclude-name option set to a service name value
&{linux_local_systemd_test_5}
... filtername=
... excludename=NetworkManager.service
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 119, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;413 'total_failed'=0;;;0;413 'total_dead'=119;;;0;413 'total_exited'=40;;;0;413
# Test systemd-sc-status mode with warning-status option set to '\%{sub} =~ /exited/ && \%{display} =~ /network/'
&{linux_local_systemd_test_6}
... filtername=
... excludename=
... warningstatus='\%{sub} =~ /exited/ && \%{display} =~ /network/'
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=WARNING: Service 'systemd-networkd-wait-online.service' status : loaded/active/exited [boot: enabled] - Service 'walinuxagent-network-setup.service' status : loaded/active/exited [boot: enabled] | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with critical-status option set to '\%{sub} =~ /exited/ && \%{display} =~ /network/'
&{linux_local_systemd_test_7}
... filtername=
... excludename=
... warningstatus=
... criticalstatus='\%{sub} =~ /exited/ && \%{display} =~ /network/'
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=CRITICAL: Service 'systemd-networkd-wait-online.service' status : loaded/active/exited [boot: enabled] - Service 'walinuxagent-network-setup.service' status : loaded/active/exited [boot: enabled] | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with warning-total-running option set to 20
&{linux_local_systemd_test_8}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=20
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=WARNING: Total Running: 40 | 'total_running'=40;0:20;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with critical-total-running option set to 20
&{linux_local_systemd_test_9}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=20
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=CRITICAL: Total Running: 40 | 'total_running'=40;;0:20;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with warning-total-dead option set to 20
&{linux_local_systemd_test_10}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=20
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=WARNING: Total Dead: 120 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;0:20;;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with critical-total-dead option set to 20
&{linux_local_systemd_test_11}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=20
... warningtotalexited=
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=CRITICAL: Total Dead: 120 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;0:20;0;414 'total_exited'=40;;;0;414
# Test systemd-sc-status mode with warning-total-exited option set to 20
&{linux_local_systemd_test_12}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=20
... criticaltotalexited=
... warningtotalfailed=
... criticaltotalfailed=
... result=WARNING: Total Exited: 40 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;0:20;;0;414
# Test systemd-sc-status mode with critical-total-exited option set to 20
&{linux_local_systemd_test_13}
... filtername=
... excludename=
... warningstatus=
... criticalstatus=
... warningtotalrunning=
... criticaltotalrunning=
... warningtotaldead=
... criticaltotaldead=
... warningtotalexited=
... criticaltotalexited=20
... warningtotalfailed=
... criticaltotalfailed=
... result=CRITICAL: Total Exited: 40 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;0:20;0;414
# Test systemd-sc-status mode with warning-total-failed option : NO DATA FOR THIS TEST
# Test systemd-sc-status mode with critical-total-failed option : NO DATA FOR THIS TEST
@{linux_local_systemd_tests}
... &{linux_local_systemd_test_1}
... &{linux_local_systemd_test_2}
... &{linux_local_systemd_test_3}
... &{linux_local_systemd_test_4}
... &{linux_local_systemd_test_5}
... &{linux_local_systemd_test_6}
... &{linux_local_systemd_test_7}
... &{linux_local_systemd_test_8}
... &{linux_local_systemd_test_9}
... &{linux_local_systemd_test_10}
... &{linux_local_systemd_test_11}
... &{linux_local_systemd_test_12}
... &{linux_local_systemd_test_13}
*** Test Cases ***
Linux Local Systemd-sc-status
[Documentation] Linux Local Systemd services status
[Tags] os linux local
FOR ${linux_local_systemd_test} IN @{linux_local_systemd_tests}
${command} Catenate
... ${CMD}
... --mode=systemd-sc-status
${length} Get Length ${linux_local_systemd_test.filtername}
IF ${length} > 0
${command} Catenate ${command} --filter-name=${linux_local_systemd_test.filtername}
END
${length} Get Length ${linux_local_systemd_test.excludename}
IF ${length} > 0
${command} Catenate ${command} --exclude-name=${linux_local_systemd_test.excludename}
END
${length} Get Length ${linux_local_systemd_test.warningstatus}
IF ${length} > 0
${command} Catenate ${command} --warning-status=${linux_local_systemd_test.warningstatus}
END
${length} Get Length ${linux_local_systemd_test.criticalstatus}
IF ${length} > 0
${command} Catenate ${command} --critical-status=${linux_local_systemd_test.criticalstatus}
END
${length} Get Length ${linux_local_systemd_test.warningtotalrunning}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-total-running=${linux_local_systemd_test.warningtotalrunning}
END
${length} Get Length ${linux_local_systemd_test.criticaltotalrunning}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-total-running=${linux_local_systemd_test.criticaltotalrunning}
END
${length} Get Length ${linux_local_systemd_test.warningtotaldead}
IF ${length} > 0
${command} Catenate ${command} --warning-total-dead=${linux_local_systemd_test.warningtotaldead}
END
${length} Get Length ${linux_local_systemd_test.criticaltotaldead}
IF ${length} > 0
${command} Catenate ${command} --critical-total-dead=${linux_local_systemd_test.criticaltotaldead}
END
${length} Get Length ${linux_local_systemd_test.warningtotalexited}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-total-exited=${linux_local_systemd_test.warningtotalexited}
END
${length} Get Length ${linux_local_systemd_test.criticaltotalexited}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-total-exited=${linux_local_systemd_test.criticaltotalexited}
END
${length} Get Length ${linux_local_systemd_test.warningtotalfailed}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-total-failed=${linux_local_systemd_test.warningtotalfailed}
END
${length} Get Length ${linux_local_systemd_test.criticaltotalfailed}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-total-failed=${linux_local_systemd_test.criticaltotalfailed}
END
${output} Run ${command}
Log To Console . no_newline=true
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${linux_local_systemd_test.result}
... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${linux_local_systemd_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n}
... values=False
END
Linux Local List-systemd-services
[Documentation] Linux Local List Systemd services
[Tags] os linux local
FOR ${linux_local_listsystemd_test} IN @{linux_local_listsystemd_tests}
${command} Catenate
... ${CMD}
... --mode=list-systemdservices
${length} Get Length ${linux_local_listsystemd_test.filtername}
IF ${length} > 0
${command} Catenate ${command} --filter-name=${linux_local_listsystemd_test.filtername}
END
${length} Get Length ${linux_local_listsystemd_test.filterdescription}
IF ${length} > 0
${command} Catenate
... ${command}
... --filter-description=${linux_local_listsystemd_test.filterdescription}
END
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${linux_local_listsystemd_test.result}
... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${linux_local_listsystemd_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n}
... values=False
END

View File

@ -1,101 +0,0 @@
*** Settings ***
Documentation Hardware UPS standard SNMP plugin
Library OperatingSystem
Library String
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::standard::rfc1628::snmp::plugin
&{ups_standard_test_with_values}
... snmpcommunity=hardware-ups/hardware-ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid=
... result=OK: All input lines are ok | '1#line.input.frequence.hertz'=49.9Hz;;;; '1#line.input.voltage.volt'=233V;;;; '1#line.input.current.ampere'=0A;;;; '1#line.input.power.watt'=0W;;;; '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;; '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;;
&{ups_standard_test_critical_with_null_values}
... snmpcommunity=hardware-ups/hardware-ups-standard_null_val
... warningpower='215:'
... criticalcurrent='@0:214'
... warningvoltage='@0:214'
... warningfrequence='@0:214'
... excludeid=
... result=CRITICAL: Input Line '1' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '2' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '3' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W | '1#line.input.frequence.hertz'=0Hz;@0:214;;; '1#line.input.voltage.volt'=0V;@0:214;;; '1#line.input.current.ampere'=0A;;@0:214;; '1#line.input.power.watt'=0W;215:;;; '2#line.input.frequence.hertz'=0Hz;@0:214;;; '2#line.input.voltage.volt'=0V;@0:214;;; '2#line.input.current.ampere'=0A;;@0:214;; '2#line.input.power.watt'=0W;215:;;; '3#line.input.frequence.hertz'=0Hz;@0:214;;; '3#line.input.voltage.volt'=0V;@0:214;;; '3#line.input.current.ampere'=0A;;@0:214;; '3#line.input.power.watt'=0W;215:;;;
&{ups_standard_test_with_exclude_option_1}
... snmpcommunity=hardware-ups/hardware-ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid='1,2'
... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;;
&{ups_standard_test_with_exclude_option_2}
... snmpcommunity=hardware-ups/hardware-ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid='1, 2'
... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;;
&{ups_standard_test_with_exclude_option_3}
... snmpcommunity=hardware-ups/hardware-ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid='1 ,3'
... result=OK: Input Line '2' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;;
@{ups_standard_tests}
... &{ups_standard_test_with_values}
... &{ups_standard_test_critical_with_null_values}
... &{ups_standard_test_with_exclude_option_1}
... &{ups_standard_test_with_exclude_option_2}
... &{ups_standard_test_with_exclude_option_3}
*** Test Cases ***
Hardware UPS Standard SNMP input lines
[Documentation] Hardware UPS standard SNMP input lines
[Tags] hardware UPS snmp
FOR ${ups_standard_test} IN @{ups_standard_tests}
${command} Catenate
... ${CMD}
... --mode=input-lines
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=${ups_standard_test.snmpcommunity}
${length} Get Length ${ups_standard_test.warningpower}
IF ${length} > 0
${command} Catenate ${command} --warning-power=${ups_standard_test.warningpower}
END
${length} Get Length ${ups_standard_test.criticalcurrent}
IF ${length} > 0
${command} Catenate ${command} --critical-current=${ups_standard_test.criticalcurrent}
END
${length} Get Length ${ups_standard_test.warningvoltage}
IF ${length} > 0
${command} Catenate ${command} --warning-voltage=${ups_standard_test.warningvoltage}
END
${length} Get Length ${ups_standard_test.warningfrequence}
IF ${length} > 0
${command} Catenate ${command} --warning-frequence=${ups_standard_test.warningfrequence}
END
${length} Get Length ${ups_standard_test.excludeid}
IF ${length} > 0
${command} Catenate ${command} --exclude-id=${ups_standard_test.excludeid}
END
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${ups_standard_test.result}
... Wrong output result for compliance of ${ups_standard_test.result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
END

View File

@ -1,79 +0,0 @@
*** Settings ***
Documentation Network Aruba Instant SNMP plugin - AP Usage
Library OperatingSystem
Library String
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=network::aruba::instant::snmp::plugin --mode=ap-usage --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024
&{ap_usage_test_1}
... documentation=Test AP usage without filters
... snmpcommunity=network-aruba-instant/ap-usage
... filtercounters=
... filtername=
... warningclients=
... criticalclients=
... result=OK: total access points: 5 - All access points are ok | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100
&{ap_usage_test_2}
... documentation=Test AP usage with filter on clients
... snmpcommunity=network-aruba-instant/ap-usage
... filtercounters=clients
... filtername=
... warningclients=
... criticalclients=
... result=OK: All access points are ok | 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 4#clients.current.count'=11;;;0; 'AP Sotano#clients.current.count'=4;;;0;
&{ap_usage_test_3}
... documentation=Test AP usage with filter on clients and filter on name
... snmpcommunity=network-aruba-instant/ap-usage
... filtercounters=clients
... filtername=Piso 4
... warningclients=
... criticalclients=
... result=OK: Access Point 'AP Piso 4' Current Clients: 11 | 'AP Piso 4#clients.current.count'=11;;;0;
&{ap_usage_test_4}
... documentation=Test AP usage without filters with warning when less than 20 clients
... snmpcommunity=network-aruba-instant/ap-usage
... filtercounters=
... filtername=
... warningclients=20:
... criticalclients=
... result=WARNING: Access Point 'AP Piso 1' Current Clients: 4 - Access Point 'AP Piso 2' Current Clients: 17 - Access Point 'AP Piso 3' Current Clients: 14 - Access Point 'AP Piso 4' Current Clients: 11 - Access Point 'AP Sotano' Current Clients: 4 | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;20:;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;20:;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;20:;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;20:;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;20:;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100
@{ap_usage_tests}
... &{ap_usage_test_1}
... &{ap_usage_test_2}
... &{ap_usage_test_3}
... &{ap_usage_test_4}
*** Test Cases ***
Network Aruba Instant SNMP plugin
[Documentation] AP Usage
[Tags] network aruba snmp
FOR ${ap_usage_tc} IN @{ap_usage_tests}
${command} Catenate
... ${CMD}
... --filter-counters='${ap_usage_tc.filtercounters}'
... --filter-name='${ap_usage_tc.filtername}'
... --warning-clients='${ap_usage_tc.warningclients}'
... --critical-clients='${ap_usage_tc.criticalclients}'
... --snmp-community=${ap_usage_tc.snmpcommunity}
Log To Console ${ap_usage_tc.documentation}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${ap_usage_tc.result}
... Wrong output result for compliance of ${ap_usage_tc.result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
END

View File

@ -1,408 +0,0 @@
*** Settings ***
Documentation Network Fortinet Fortigate SNMP plugin
Library OperatingSystem
Library String
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin
# Test simple usage of the linkmonitor mode
&{fortinet_fortigate_linkmonitor_test1}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with filter-id option set to 3
&{fortinet_fortigate_linkmonitor_test2}
... filterid=3
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with filter-name option set to MonitorWAN1
&{fortinet_fortigate_linkmonitor_test3}
... filterid=
... filtername='MonitorWAN1'
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=OK: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive, latency: 39.739ms, jitter: 0.096ms, packet loss: 0.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0;
# Test linkmonitor mode with filter-vdom option set to 'root'
&{fortinet_fortigate_linkmonitor_test4}
... filterid=
... filtername=
... filtervdom='root'
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with custom-perf-data-instances option set to '%(name) %(id)'
&{fortinet_fortigate_linkmonitor_test5}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances='%(name) %(id)'
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~1#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~1#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~1#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~2#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~2#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~2#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~3#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with unknown-status option set to '%{state} eq "alive"'
&{fortinet_fortigate_linkmonitor_test6}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus='\%{state} eq "alive"'
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead UNKNOWN: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-status option set to '%{state} eq "alive"'
&{fortinet_fortigate_linkmonitor_test7}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus='\%{state} eq "alive"'
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with critical-status option set to '%{state} eq "alive"'
&{fortinet_fortigate_linkmonitor_test8}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus='\%{state} eq "alive"'
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-latency option set to 40
&{fortinet_fortigate_linkmonitor_test9}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=40
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;0:40;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;0:40;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;0:40;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with critical-latency option set to 40
&{fortinet_fortigate_linkmonitor_test10}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=40
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;0:40;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;0:40;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;0:40;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-jitter option set to 1
&{fortinet_fortigate_linkmonitor_test11}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=1
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;0:1;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;0:1;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;0:1;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with critical-jitter option set to 1
&{fortinet_fortigate_linkmonitor_test12}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=1
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;0:1;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;0:1;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;0:1;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-packetloss option set to 0.5
&{fortinet_fortigate_linkmonitor_test13}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=0.5
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;0:0.5;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;0:0.5;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;0:0.5;;0;
# Test linkmonitor mode with critical-packetloss option set to 0.5
&{fortinet_fortigate_linkmonitor_test14}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=0.5
... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;0:0.5;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;0:0.5;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;0:0.5;0;
@{fortinet_fortigate_linkmonitor_tests}
... &{fortinet_fortigate_linkmonitor_test1}
... &{fortinet_fortigate_linkmonitor_test2}
... &{fortinet_fortigate_linkmonitor_test3}
... &{fortinet_fortigate_linkmonitor_test4}
... &{fortinet_fortigate_linkmonitor_test5}
... &{fortinet_fortigate_linkmonitor_test6}
... &{fortinet_fortigate_linkmonitor_test7}
... &{fortinet_fortigate_linkmonitor_test8}
... &{fortinet_fortigate_linkmonitor_test9}
... &{fortinet_fortigate_linkmonitor_test10}
... &{fortinet_fortigate_linkmonitor_test11}
... &{fortinet_fortigate_linkmonitor_test12}
... &{fortinet_fortigate_linkmonitor_test13}
... &{fortinet_fortigate_linkmonitor_test14}
# Test simple usage of the list-linkmonitors mode
&{fortinet_fortigate_listlinkmonitors_test1}
... filterstate=
... filtername=
... filtervdom=
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead]
# Test list-linkmonitors mode with filter-name option set to MonitorWAN1
&{fortinet_fortigate_listlinkmonitors_test2}
... filterstate=
... filtername='MonitorWAN1'
... filtervdom=
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]
# Test list-linkmonitors mode with filter-state option set to alive
&{fortinet_fortigate_listlinkmonitors_test3}
... filterstate='alive'
... filtername=
... filtervdom=
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]
# Test list-linkmonitors mode with filter-vdom option set to root
&{fortinet_fortigate_listlinkmonitors_test4}
... filterstate=
... filtername=
... filtervdom='root'
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead]
@{fortinet_fortigate_listlinkmonitors_tests}
... &{fortinet_fortigate_listlinkmonitors_test1}
... &{fortinet_fortigate_listlinkmonitors_test2}
... &{fortinet_fortigate_listlinkmonitors_test3}
... &{fortinet_fortigate_listlinkmonitors_test4}
*** Test Cases ***
Network Fortinet Fortigate SNMP link monitor
[Documentation] Network Fortinet Fortigate SNMP link-monitor
[Tags] network Fortinet Fortigate snmp
FOR ${fortinet_fortigate_linkmonitor_test} IN @{fortinet_fortigate_linkmonitor_tests}
${command} Catenate
... ${CMD}
... --mode=link-monitor
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=network-fortinet-fortigate-linkmonitor
${length} Get Length ${fortinet_fortigate_linkmonitor_test.filterid}
IF ${length} > 0
${command} Catenate ${command} --filter-id=${fortinet_fortigate_linkmonitor_test.filterid}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtername}
IF ${length} > 0
${command} Catenate ${command} --filter-name=${fortinet_fortigate_linkmonitor_test.filtername}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtervdom}
IF ${length} > 0
${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_linkmonitor_test.filtervdom}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.customperfdatainstances}
IF ${length} > 0
${command} Catenate ${command} --custom-perfdata-instances=${fortinet_fortigate_linkmonitor_test.customperfdatainstances}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.unknownstatus}
IF ${length} > 0
${command} Catenate ${command} --unknown-status=${fortinet_fortigate_linkmonitor_test.unknownstatus}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningstatus}
IF ${length} > 0
${command} Catenate ${command} --warning-status=${fortinet_fortigate_linkmonitor_test.warningstatus}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalstatus}
IF ${length} > 0
${command} Catenate ${command} --critical-status=${fortinet_fortigate_linkmonitor_test.criticalstatus}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warninglatency}
IF ${length} > 0
${command} Catenate ${command} --warning-latency=${fortinet_fortigate_linkmonitor_test.warninglatency}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticallatency}
IF ${length} > 0
${command} Catenate ${command} --critical-latency=${fortinet_fortigate_linkmonitor_test.criticallatency}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningjitter}
IF ${length} > 0
${command} Catenate ${command} --warning-jitter=${fortinet_fortigate_linkmonitor_test.warningjitter}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticaljitter}
IF ${length} > 0
${command} Catenate ${command} --critical-jitter=${fortinet_fortigate_linkmonitor_test.criticaljitter}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningpacketloss}
IF ${length} > 0
${command} Catenate ${command} --warning-packet-loss=${fortinet_fortigate_linkmonitor_test.warningpacketloss}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalpacketloss}
IF ${length} > 0
${command} Catenate ${command} --critical-packet-loss=${fortinet_fortigate_linkmonitor_test.criticalpacketloss}
END
${output} Run ${command}
Log To Console . no_newline=true
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${fortinet_fortigate_linkmonitor_test.result}
... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_linkmonitor_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n}
... values=False
END
Network Fortinet Fortigate SNMP list link monitor
[Documentation] Network Fortinet Fortigate SNMP list-linkmonitors
[Tags] network Fortinet Fortigate snmp
FOR ${fortinet_fortigate_listlinkmonitors_test} IN @{fortinet_fortigate_listlinkmonitors_tests}
${command} Catenate
... ${CMD}
... --mode=list-link-monitors
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=network-fortinet-fortigate-linkmonitor
${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filterstate}
IF ${length} > 0
${command} Catenate ${command} --filter-state=${fortinet_fortigate_listlinkmonitors_test.filterstate}
END
${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtername}
IF ${length} > 0
${command} Catenate ${command} --filter-name=${fortinet_fortigate_listlinkmonitors_test.filtername}
END
${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtervdom}
IF ${length} > 0
${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_listlinkmonitors_test.filtervdom}
END
${output} Run ${command}
Log To Console . no_newline=true
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${fortinet_fortigate_listlinkmonitors_test.result}
... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_listlinkmonitors_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n}
... values=False
END

View File

@ -1,98 +0,0 @@
*** Settings ***
Documentation Storage Synology SNMP
Library OperatingSystem
Library XML
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=storage::synology::snmp::plugin
&{check_components_test1}
... description=Checking disk components when all disks are ok
... snmpcommunity=synology_component_disk_ok
... expected_output=OK: All 8 components are ok [2/2 disk, 2/2 fan, 1/1 psu, 2/2 raid, 1/1 system]. | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
&{check_components_test2}
... description=Checking disk components when one disks is warning
... snmpcommunity=synology_component_disk_warning
... expected_output=WARNING: Disk 'Disk 2' health is warning | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
&{check_components_test3}
... description=Checking disk components when one disks is critical
... snmpcommunity=synology_component_disk_critical
... expected_output=CRITICAL: Disk 'Disk 2' health is critical | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
&{check_components_test4}
... description=Checking disk components when one disks is failing
... snmpcommunity=synology_component_disk_failing
... expected_output=CRITICAL: Disk 'Disk 2' health is failing | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
@{check_components_tests}
... &{check_components_test1}
... &{check_components_test2}
... &{check_components_test3}
... &{check_components_test4}
&{uptime_t1}
... description=Uptime check expected to be OK
... snmpcommunity=synology_component_disk_ok
... warning=
... critical=
... expected_output=OK: System uptime is: 46m 5s | 'uptime'=2765.00s;;;0;
&{uptime_t2}
... description=Uptime check expected to be warning
... snmpcommunity=synology_component_disk_ok
... warning=10
... critical=
... expected_output=WARNING: System uptime is: 46m 5s | 'uptime'=2765.00s;0:10;;0;
&{uptime_t3}
... description=Uptime check expected to be critical
... snmpcommunity=synology_component_disk_ok
... warning=
... critical=10
... expected_output=CRITICAL: System uptime is: 46m 5s | 'uptime'=2765.00s;;0:10;0;
@{uptime_tests}
... &{uptime_t1}
... &{uptime_t2}
... &{uptime_t3}
*** Test Cases ***
Components
[Tags] storage synology snmp
FOR ${check_components_test} IN @{check_components_tests}
${command} Catenate
... ${CMD}
... --mode=components
... --hostname=127.0.0.1
... --snmp-version=2
... --snmp-port=2024
... --snmp-community=${check_components_test.snmpcommunity}
${output} Run ${command}
Should Be Equal As Strings
... ${check_components_test.expected_output}
... ${output}
... ${check_components_test.description} failed. Wrong output for components mode: ${check_components_test}.{\n}Command output:{\n}${output}
END
Uptime
[Tags] storage synology snmp
FOR ${test_item} IN @{uptime_tests}
${command} Catenate
... ${CMD}
... --mode=uptime
... --hostname=127.0.0.1
... --snmp-version=2
... --snmp-port=2024
... --snmp-community=${test_item.snmpcommunity}
... --warning-uptime=${test_item.warning}
... --critical-uptime=${test_item.critical}
${output} Run ${command}
Should Be Equal As Strings
... ${test_item.expected_output}
... ${output}
... ${test_item.description} failed. Wrong output for components mode: ${test_item}.{\n}Command output:{\n}${output}
END

View File

@ -0,0 +1,7 @@
*** Settings ***
Documentation This is the documentation for the import resource file.
Library Examples
Library OperatingSystem
Library String
Library XML
Resource resources.resource

View File

@ -1,179 +0,0 @@
{
"uuid": "8cba072c-7794-4ff7-ab36-158ef1abed39",
"lastMigration": 32,
"name": "Storage datacore api",
"endpointPrefix": "",
"latency": 0,
"port": 3001,
"hostname": "",
"folders": [],
"routes": [
{
"uuid": "148371c5-aaa7-4bf0-a818-e81a21aa7f9a",
"type": "http",
"documentation": "",
"method": "get",
"endpoint": "RestService/rest.svc/1.0/pools",
"responses": [
{
"uuid": "003eae6e-f58f-44db-bd03-3b44ca578046",
"body": "[ {\n \"Caption\" : \"Disk pool 1\",\n \"ExtendedCaption\" : \"Disk pool 1 on StorageSvr001\",\n \"Id\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551:{d68b8a36-0ec4-11e5-80ba-00155d651622}\",\n \"Internal\" : false,\n \"SequenceNumber\" : 11963,\n \"Alias\" : \"Disk pool 1\",\n \"AutoTieringEnabled\" : true,\n \"ChunkSize\" : {\n \"Value\" : 134217728\n },\n \"Description\" : null,\n \"InSharedMode\" : false,\n \"IsAuthorized\" : true,\n \"MaxTierNumber\" : 3,\n \"PoolMode\" : 1,\n \"PoolStatus\" : 0,\n \"PresenceStatus\" : 1,\n \"SMPAApproved\" : false,\n \"ServerId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SharedPoolId\" : null,\n \"TierReservedPct\" : 0,\n \"Type\" : 0,\n \"IsBulk\" : false\n},\n{\n \"Caption\" : \"Shared pool 1\",\n \"ExtendedCaption\" : \"Shared pool 1 on StorageSvr002\",\n \"Id\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:{4dec1b5a-2577-11e5-80c3-00155d651622}\",\n \"Internal\" : false,\n \"SequenceNumber\" : 11967,\n \"Alias\" : \"Shared pool 1\",\n \"AutoTieringEnabled\" : true,\n \"ChunkSize\" : {\n \"Value\" : 134217728\n },\n \"Description\" : null,\n \"InSharedMode\" : true,\n \"IsAuthorized\" : true,\n \"MaxTierNumber\" : 3,\n \"PoolMode\" : 1,\n \"PoolStatus\" : 0,\n \"PresenceStatus\" : 1,\n \"SMPAApproved\" : true,\n \"ServerId\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D\",\n \"SharedPoolId\" : \"{4dec1b5a-2577-11e5-80c3-00155d651622}\",\n \"TierReservedPct\" : 0,\n \"Type\" : 0,\n \"IsBulk\" : false\n} ]",
"latency": 0,
"statusCode": 200,
"label": "",
"headers": [],
"bodyType": "INLINE",
"filePath": "",
"databucketID": "",
"sendFileAsBody": false,
"rules": [],
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"responseMode": null
},
{
"uuid": "0c038179-3723-4d67-9bed-fc226629c847",
"type": "http",
"documentation": "",
"method": "get",
"endpoint": "RestService/rest.svc/1.0/performances/B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:%7B4dec1b5a-2577-11e5-80c3-00155d651622%7D",
"responses": [
{
"uuid": "0eb0a2ca-2f12-40af-ba94-0feef989b6a1",
"body": "[\n {\n \"CollectionTime\": \"/Date(1486402608775)/\",\n \"NullCounterMap\": 0,\n \"BytesAllocated\": 6174015488,\n \"BytesAllocatedPercentage\": 12,\n \"BytesAvailable\": 47110422528,\n \"BytesAvailablePercentage\": 88,\n \"BytesInReclamation\": 0,\n \"BytesInReclamationPercentage\": 0,\n \"BytesOverSubscribed\": 0,\n \"BytesReserved\": 0,\n \"BytesReservedPercentage\": 0,\n \"BytesTotal\": 53284438016,\n \"EstimatedDepletionTime\": 2592000001,\n \"MaxPoolBytes\": 1108127332171776,\n \"MaxReadTime\" : 0,\n \"MaxReadWriteTime\" : 0,\n \"MaxWriteTime\" : 0,\n \"PercentAllocated\" : 12,\n \"PercentAvailable\" : 88,\n \"TotalBytesMigrated\" : 0,\n \"TotalBytesRead\" : 307200,\n \"TotalBytesTransferred\" : 2036756992,\n \"TotalBytesWritten\" : 2036470272,\n \"TotalOperations\" : 53002,\n \"TotalReadTime\" : 0,\n \"TotalReads\" : 18,\n \"TotalWriteTime\" : 74994,\n \"TotalWrites\" : 52998\n }\n]",
"latency": 0,
"statusCode": 200,
"label": "",
"headers": [],
"bodyType": "INLINE",
"filePath": "",
"databucketID": "",
"sendFileAsBody": false,
"rules": [],
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"responseMode": null
},
{
"uuid": "b9f7dd2b-e1e1-4902-95ba-c6b76a1de390",
"type": "http",
"documentation": "",
"method": "get",
"endpoint": "RestService/rest.svc/1.0/alerts",
"responses": [
{
"uuid": "a1dece29-074b-4100-a764-f7ddccdec8da",
"body": "[ {\n \"Caller\" : \"ServerMachineGroup.UpdateServers\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 34937\n },\n \"Level\" : 2,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : [ \"StorageSvr002\" ],\n \"MessageText\" : \"Connection to server {0} has been lost.\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437398005546)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}, {\n \"Caller\" : \"BasePerfMonitor`1.SetState\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 33985\n },\n \"Level\" : 3,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : null,\n \"MessageText\" : \"The Replication buffer free space of StorageSvr001 in Group1 is <= 10%\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Replication buffer free space of StorageSvr001 in Group1\",\n \"SourceId\" : \"FallingThresholdPerfMonitor`1<A3E78CFA-DBEC-44E1-A23C-E9E262EC4551>ReplicationBufferPercentFreeSpace\",\n \"SourceType\" : 3\n }, {\n \"SourceCaption\" : \"StorageSvr001 in Group1\",\n \"SourceId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SourceType\" : 12\n }, {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437397587894)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}]",
"latency": 0,
"statusCode": 200,
"label": "",
"headers": [],
"bodyType": "INLINE",
"filePath": "",
"databucketID": "",
"sendFileAsBody": false,
"rules": [],
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"responseMode": null
},
{
"uuid": "be0b350e-f8da-4998-a045-a3cf840745c0",
"type": "http",
"documentation": "",
"method": "get",
"endpoint": "RestService/rest.svc/1.0/monitors",
"responses": [
{
"uuid": "6f53cd5e-7417-4fdf-a310-e2a7af4b7c3a",
"body": "[\r\n {\r\n \"Caption\": \"State\",\r\n \"ExtendedCaption\": \"State of HostVM2\",\r\n \"Id\": \"ClientMachineStateMonitor<ed89ef91d72142dc958e02c5b7014fac>\",\r\n \"Internal\": false,\r\n \"SequenceNumber\": 9417,\r\n \"Description\": \"Monitors the state of hosts.\",\r\n \"MessageText\": \"Connected\",\r\n \"MonitoredObjectId\": \"ed89ef91d72142dc958e02c5b7014fac\",\r\n \"State\": 16,\r\n \"TemplateId\": \"T(DataCore.Executive.Controller.ClientMachineStateMonitor<DataCore.Executive.Controller.ClientMachine>)\",\r\n \"TimeStamp\": \"/Date(1486136115475-0500)/\"\r\n },\r\n {\r\n \"Caption\": \"I/O latency\",\r\n \"ExtendedCaption\": \"I/O latency of Mirror of Virtual disk 1 on StorageSvr005\",\r\n \"Id\": \"RisingThresholdPerfMonitor`1<V.{2f652562-e7e3-11e6-80d7-00155d651611}-00000001_N.22690030D9218568>TotalOperationsTime\",\r\n \"Internal\": false,\r\n \"SequenceNumber\": 10036,\r\n \"Description\": \"Monitors the physical disks latency.\",\r\n \"MessageText\": \"Disabled\",\r\n \"MonitoredObjectId\": \"V.{2f652562-e7e3-11e6-80d7-00155d651611}-00000001_N.22690030D9218568\",\r\n \"State\": 1,\r\n \"TemplateId\": \"T(DataCore.Executive.Controller.RisingThresholdPerfMonitor`1[T]<V.{2f652562-e7e3-11e6-80d7-00155d651611}-00000001_N.22690030D9218568>TotalOperationsTime)\",\r\n \"TimeStamp\": \"/Date(1486148705910-0500)/\"\r\n }\r\n]",
"latency": 0,
"statusCode": 200,
"label": "",
"headers": [],
"bodyType": "INLINE",
"filePath": "",
"databucketID": "",
"sendFileAsBody": false,
"rules": [],
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"responseMode": null
}
],
"rootChildren": [
{
"type": "route",
"uuid": "148371c5-aaa7-4bf0-a818-e81a21aa7f9a"
},
{
"type": "route",
"uuid": "0c038179-3723-4d67-9bed-fc226629c847"
},
{
"type": "route",
"uuid": "b9f7dd2b-e1e1-4902-95ba-c6b76a1de390"
},
{
"type": "route",
"uuid": "be0b350e-f8da-4998-a045-a3cf840745c0"
}
],
"proxyMode": false,
"proxyHost": "",
"proxyRemovePrefix": false,
"tlsOptions": {
"enabled": false,
"type": "CERT",
"pfxPath": "",
"certPath": "",
"keyPath": "",
"caPath": "",
"passphrase": ""
},
"cors": true,
"headers": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"proxyReqHeaders": [
{
"key": "",
"value": ""
}
],
"proxyResHeaders": [
{
"key": "",
"value": ""
}
],
"data": [],
"callbacks": []
}

View File

@ -0,0 +1,23 @@
*** Settings ***
Documentation Centreon Plugins for Robot Framework
Library Process
*** Variables ***
${CENTREON_PLUGINS} perl ${CURDIR}${/}..${/}..${/}src${/}centreon_plugins.pl
# one we use package, we need to remove the "perl" part to be sure the plugin is executable and is correctly formated
# with a shebang at the top.
${PERCENT} %
*** Keywords ***
Start Mockoon
[Arguments] ${MOCKOON_JSON}
${process} Start Process
... mockoon-cli
... start
... --data
... ${MOCKOON_JSON}
... --port
... 3000
Sleep 5s
Stop Mockoon
Terminate All Processes

View File

@ -1,10 +0,0 @@
.1.3.6.1.4.1.4555.1.1.7.1.3.2.0 = INTEGER: 500
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.1.1 = INTEGER: 1
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.1.2 = INTEGER: 2
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.1.3 = INTEGER: 3
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2.1 = INTEGER: 2330
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2.2 = INTEGER: 2360
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2.3 = INTEGER: 2360
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3.1 = INTEGER: 35
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3.2 = INTEGER: 36
.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3.3 = INTEGER: 36

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,840 @@
.1.3.6.1.4.1.77.1.2.3.1.1.5.80.68.70.50.52 = STRING: "PDF24"
.1.3.6.1.4.1.77.1.2.3.1.1.5.80.111.119.101.114 = STRING: "Power"
.1.3.6.1.4.1.77.1.2.3.1.1.6.80.97.110.71.80.83 = STRING: "PanGPS"
.1.3.6.1.4.1.77.1.2.3.1.1.6.83.101.114.118.101.114 = STRING: "Server"
.1.3.6.1.4.1.77.1.2.3.1.1.6.84.104.101.109.101.115 = STRING: "Themes"
.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain"
.1.3.6.1.4.1.77.1.2.3.1.1.9.65.112.115.73.110.115.83.118.99 = STRING: "ApsInsSvc"
.1.3.6.1.4.1.77.1.2.3.1.1.9.73.80.32.72.101.108.112.101.114 = STRING: "IP Helper"
.1.3.6.1.4.1.77.1.2.3.1.1.9.84.101.108.101.112.104.111.110.121 = STRING: "Telephony"
.1.3.6.1.4.1.77.1.2.3.1.1.9.87.101.98.67.108.105.101.110.116 = STRING: "WebClient"
.1.3.6.1.4.1.77.1.2.3.1.1.10.68.78.83.32.67.108.105.101.110.116 = STRING: "DNS Client"
.1.3.6.1.4.1.77.1.2.3.1.1.10.68.97.116.97.32.85.115.97.103.101 = STRING: "Data Usage"
.1.3.6.1.4.1.77.1.2.3.1.1.10.83.109.97.114.116.32.67.97.114.100 = STRING: "Smart Card"
.1.3.6.1.4.1.77.1.2.3.1.1.11.68.72.67.80.32.67.108.105.101.110.116 = STRING: "DHCP Client"
.1.3.6.1.4.1.77.1.2.3.1.1.11.83.121.85.73.85.69.120.116.83.118.99 = STRING: "SyUIUExtSvc"
.1.3.6.1.4.1.77.1.2.3.1.1.11.84.105.109.101.32.66.114.111.107.101.114 = STRING: "Time Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.11.87.111.114.107.115.116.97.116.105.111.110 = STRING: "Workstation"
.1.3.6.1.4.1.77.1.2.3.1.1.12.69.108.97.110.32.83.101.114.118.105.99.101 = STRING: "Elan Service"
.1.3.6.1.4.1.77.1.2.3.1.1.12.83.78.77.80.32.83.101.114.118.105.99.101 = STRING: "SNMP Service"
.1.3.6.1.4.1.77.1.2.3.1.1.12.85.115.101.114.32.77.97.110.97.103.101.114 = STRING: "User Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = STRING: "AVCTP service"
.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging"
.1.3.6.1.4.1.77.1.2.3.1.1.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = STRING: "Logi Options+"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = STRING: "Phone Service"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = STRING: "Plug and Play"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = STRING: "Print Spooler"
.1.3.6.1.4.1.77.1.2.3.1.1.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = STRING: "Windows Audio"
.1.3.6.1.4.1.77.1.2.3.1.1.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = STRING: "SSDP Discovery"
.1.3.6.1.4.1.77.1.2.3.1.1.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = STRING: "Task Scheduler"
.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = STRING: "Windows Backup"
.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = STRING: "Windows Search"
.1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = STRING: "Security Center"
.1.3.6.1.4.1.77.1.2.3.1.1.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = STRING: "Storage Service"
.1.3.6.1.4.1.77.1.2.3.1.1.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WLAN AutoConfig"
.1.3.6.1.4.1.77.1.2.3.1.1.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WWAN AutoConfig"
.1.3.6.1.4.1.77.1.2.3.1.1.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = STRING: "Sync Host_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = STRING: "CNG Key Isolation"
.1.3.6.1.4.1.77.1.2.3.1.1.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = STRING: "COM+ Event System"
.1.3.6.1.4.1.77.1.2.3.1.1.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = STRING: "Lenovo PM Service"
.1.3.6.1.4.1.77.1.2.3.1.1.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Windows Event Log"
.1.3.6.1.4.1.77.1.2.3.1.1.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = STRING: "Credential Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = STRING: "IPsec Policy Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = STRING: "Microsoft Passport"
.1.3.6.1.4.1.77.1.2.3.1.1.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = STRING: "VMware NAT Service"
.1.3.6.1.4.1.77.1.2.3.1.1.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = STRING: "Contact Data_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Geolocation Service"
.1.3.6.1.4.1.77.1.2.3.1.1.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = STRING: "RPC Endpoint Mapper"
.1.3.6.1.4.1.77.1.2.3.1.1.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = STRING: "VMware DHCP Service"
.1.3.6.1.4.1.77.1.2.3.1.1.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = STRING: "Web Account Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = STRING: "Application Identity"
.1.3.6.1.4.1.77.1.2.3.1.1.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Data Sharing Service"
.1.3.6.1.4.1.77.1.2.3.1.1.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = STRING: "Host Network Service"
.1.3.6.1.4.1.77.1.2.3.1.1.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = STRING: "LenovoVantageService"
.1.3.6.1.4.1.77.1.2.3.1.1.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = STRING: "Network List Service"
.1.3.6.1.4.1.77.1.2.3.1.1.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = STRING: "PrintWorkflow_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = STRING: "System Events Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = STRING: "User Profile Service"
.1.3.6.1.4.1.77.1.2.3.1.1.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = STRING: "Base Filtering Engine"
.1.3.6.1.4.1.77.1.2.3.1.1.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = STRING: "Epson Scanner Service"
.1.3.6.1.4.1.77.1.2.3.1.1.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = STRING: "FirmwareUpdateService"
.1.3.6.1.4.1.77.1.2.3.1.1.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = STRING: "FusionInventory Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Local Session Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = STRING: "Realtek Audio Service"
.1.3.6.1.4.1.77.1.2.3.1.1.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = STRING: "SQL Server VSS Writer"
.1.3.6.1.4.1.77.1.2.3.1.1.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = STRING: "TCP/IP NetBIOS Helper"
.1.3.6.1.4.1.77.1.2.3.1.1.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = STRING: "Cryptographic Services"
.1.3.6.1.4.1.77.1.2.3.1.1.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Display Policy Service"
.1.3.6.1.4.1.77.1.2.3.1.1.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = STRING: "Dolby DAX2 API Service"
.1.3.6.1.4.1.77.1.2.3.1.1.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = STRING: "Application Information"
.1.3.6.1.4.1.77.1.2.3.1.1.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = STRING: "Certificate Propagation"
.1.3.6.1.4.1.77.1.2.3.1.1.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = STRING: "Cherry Device Interface"
.1.3.6.1.4.1.77.1.2.3.1.1.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = STRING: "Diagnostic Service Host"
.1.3.6.1.4.1.77.1.2.3.1.1.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = STRING: "Remote Desktop Services"
.1.3.6.1.4.1.77.1.2.3.1.1.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = STRING: "Thunderbolt(TM) Service"
.1.3.6.1.4.1.77.1.2.3.1.1.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = STRING: "User Data Access_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Radio Management Service"
.1.3.6.1.4.1.77.1.2.3.1.1.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = STRING: "Shell Hardware Detection"
.1.3.6.1.4.1.77.1.2.3.1.1.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = STRING: "State Repository Service"
.1.3.6.1.4.1.77.1.2.3.1.1.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = STRING: "User Data Storage_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = STRING: "Windows Security Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Diagnostic Policy Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = STRING: "Lenovo EasyResume Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = STRING: "Network Connection Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = STRING: "Security Accounts Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = STRING: "WatchGuard SSLVPN Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = STRING: "Windows Biometric Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = STRING: "Windows Defender Firewall"
.1.3.6.1.4.1.77.1.2.3.1.1.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Device Association Service"
.1.3.6.1.4.1.77.1.2.3.1.1.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = STRING: "Network Location Awareness"
.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Windows Connection Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = STRING: "Windows Font Cache Service"
.1.3.6.1.4.1.77.1.2.3.1.1.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Display Enhancement Service"
.1.3.6.1.4.1.77.1.2.3.1.1.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = STRING: "Lenovo Hotkey Client Loader"
.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = STRING: "OpenVPN Interactive Service"
.1.3.6.1.4.1.77.1.2.3.1.1.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = STRING: "Payments and NFC/SE Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = STRING: "Remote Procedure Call (RPC)"
.1.3.6.1.4.1.77.1.2.3.1.1.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = STRING: "Update Orchestrator Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = STRING: "Adobe Acrobat Update Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = STRING: "DCOM Server Process Launcher"
.1.3.6.1.4.1.77.1.2.3.1.1.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = STRING: "Encrypting File System (EFS)"
.1.3.6.1.4.1.77.1.2.3.1.1.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = STRING: "HP Print Scan Doctor Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = STRING: "Microsoft IIS Administration"
.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = STRING: "Microsoft Passport Container"
.1.3.6.1.4.1.77.1.2.3.1.1.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = STRING: "Remote Desktop Configuration"
.1.3.6.1.4.1.77.1.2.3.1.1.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "VMware Authorization Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = Hex-STRING: 74 65 73 74 73 65 72 76 69 63 65 20 C3 BC C3 A4 C3 B6 C3 A1 C3 A0 20 28 31 32 33 29
.1.3.6.1.4.1.77.1.2.3.1.1.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Clipboard User Service_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = STRING: "FortiClient Service Scheduler"
.1.3.6.1.4.1.77.1.2.3.1.1.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = STRING: "SonicWall NetExtender Service"
.1.3.6.1.4.1.77.1.2.3.1.1.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = STRING: "Human Interface Device Service"
.1.3.6.1.4.1.77.1.2.3.1.1.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Network Virtualization Service"
.1.3.6.1.4.1.77.1.2.3.1.1.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = STRING: "Windows Audio Endpoint Builder"
.1.3.6.1.4.1.77.1.2.3.1.1.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = STRING: "Application Host Helper Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = STRING: "Microsoft Store Install Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = STRING: "Microsoft Update Health Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Network Store Interface Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = STRING: "OpenVPN Agent agent_ovpnconnect"
.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = STRING: "Windows Image Acquisition (WIA)"
.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Windows License Manager Service"
.1.3.6.1.4.1.77.1.2.3.1.1.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = STRING: "Client License Service (ClipSVC)"
.1.3.6.1.4.1.77.1.2.3.1.1.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = STRING: "Distributed Link Tracking Client"
.1.3.6.1.4.1.77.1.2.3.1.1.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = STRING: "Function Discovery Provider Host"
.1.3.6.1.4.1.77.1.2.3.1.1.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Remote Access Connection Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = STRING: "AppX Deployment Service (AppXSVC)"
.1.3.6.1.4.1.77.1.2.3.1.1.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Capability Access Manager Service"
.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = STRING: "Internet Connection Sharing (ICS)"
.1.3.6.1.4.1.77.1.2.3.1.1.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Event Notification Service"
.1.3.6.1.4.1.77.1.2.3.1.1.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "BitLocker Drive Encryption Service"
.1.3.6.1.4.1.77.1.2.3.1.1.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = STRING: "Connected Devices Platform Service"
.1.3.6.1.4.1.77.1.2.3.1.1.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Intel(R) PROSet/Wireless Event Log"
.1.3.6.1.4.1.77.1.2.3.1.1.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = STRING: "Windows Management Instrumentation"
.1.3.6.1.4.1.77.1.2.3.1.1.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = STRING: "IKE and AuthIP IPsec Keying Modules"
.1.3.6.1.4.1.77.1.2.3.1.1.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = STRING: "Remote Procedure Call (RPC) Locator"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "SonicWall Client Protection Service"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = STRING: "System Guard Runtime Monitor Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Interface Foundation Service"
.1.3.6.1.4.1.77.1.2.3.1.1.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = STRING: "DevQuery Background Discovery Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Service"
.1.3.6.1.4.1.77.1.2.3.1.1.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access AlwaysOn Service"
.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = STRING: "Microsoft Intune Management Extension"
.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Office Click-to-Run Service"
.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = STRING: "Microsoft Windows SMS Router Service."
.1.3.6.1.4.1.77.1.2.3.1.1.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = STRING: "Background Tasks Infrastructure Service"
.1.3.6.1.4.1.77.1.2.3.1.1.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = STRING: "Function Discovery Resource Publication"
.1.3.6.1.4.1.77.1.2.3.1.1.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = STRING: "Program Compatibility Assistant Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = STRING: "Connected User Experiences and Telemetry"
.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HDCP Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HECI Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Graphics Command Center Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = STRING: "Secure Socket Tunneling Protocol Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = STRING: "WinHTTP Web Proxy Auto-Discovery Service"
.1.3.6.1.4.1.77.1.2.3.1.1.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = STRING: "Windows Push Notifications System Service"
.1.3.6.1.4.1.77.1.2.3.1.1.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Intel(R) HD Graphics Control Panel Service"
.1.3.6.1.4.1.77.1.2.3.1.1.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Lenovo Intelligent Thermal Solution Service"
.1.3.6.1.4.1.77.1.2.3.1.1.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Touch Keyboard and Handwriting Panel Service"
.1.3.6.1.4.1.77.1.2.3.1.1.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Connected Devices Platform User Service_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Windows Push Notifications User Service_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = STRING: "Remote Desktop Services UserMode Port Redirector"
.1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = STRING: "Windows Presentation Foundation Font Cache 3.0.0.0"
.1.3.6.1.4.1.77.1.2.3.1.1.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Windows Defender Advanced Threat Protection Service"
.1.3.6.1.4.1.77.1.2.3.1.1.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = STRING: "Intel(R) Management Engine WMI Provider Registration"
.1.3.6.1.4.1.77.1.2.3.1.1.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Platform and Thermal Framework service"
.1.3.6.1.4.1.77.1.2.3.1.1.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Network Inspection Service"
.1.3.6.1.4.1.77.1.2.3.1.1.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Application Loader Host Interface Service"
.1.3.6.1.4.1.77.1.2.3.1.1.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Management and Security Application Local Management Service"
.1.3.6.1.4.1.77.1.2.3.1.1.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Device Management Wireless Application Protocol (WAP) Push message Routing Service"
.1.3.6.1.4.1.77.1.2.3.1.2.5.80.68.70.50.52 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.5.80.111.119.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.6.80.97.110.71.80.83 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.6.83.101.114.118.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.6.84.104.101.109.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.65.112.115.73.110.115.83.118.99 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.73.80.32.72.101.108.112.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.84.101.108.101.112.104.111.110.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.87.101.98.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.3.5.80.68.70.50.52 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.5.80.111.119.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.6.80.97.110.71.80.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.6.83.101.114.118.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.6.84.104.101.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.84.101.108.101.112.104.111.110.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.5.80.68.70.50.52 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.5.80.111.119.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.6.80.97.110.71.80.83 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.6.83.101.114.118.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.6.84.104.101.109.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.65.112.115.73.110.115.83.118.99 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.73.80.32.72.101.108.112.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.87.101.98.67.108.105.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.5.80.68.70.50.52 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.5.80.111.119.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.80.97.110.71.80.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.84.104.101.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1

View File

@ -0,0 +1,400 @@
.1.3.6.1.4.1.77.1.2.3.1.1.7.83.101.114.118.101.117.114 = STRING: "Serveur"
.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain"
.1.3.6.1.4.1.77.1.2.3.1.1.7.84.104.195.168.109.101.115 = Hex-STRING: 54 68 C3 A8 6D 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.10.67.108.105.101.110.116.32.68.78.83 = STRING: "Client DNS"
.1.3.6.1.4.1.77.1.2.3.1.1.11.67.108.105.101.110.116.32.68.72.67.80 = STRING: "Client DHCP"
.1.3.6.1.4.1.77.1.2.3.1.1.12.65.108.105.109.101.110.116.97.116.105.111.110 = STRING: "Alimentation"
.1.3.6.1.4.1.77.1.2.3.1.1.12.83.101.114.118.105.99.101.32.83.78.77.80 = STRING: "Service SNMP"
.1.3.6.1.4.1.77.1.2.3.1.1.12.86.77.119.97.114.101.32.84.111.111.108.115 = STRING: "VMware Tools"
.1.3.6.1.4.1.77.1.2.3.1.1.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = STRING: "Assistance IP"
.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = STRING: "Plug-and-Play"
.1.3.6.1.4.1.77.1.2.3.1.1.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = STRING: "Temps Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = STRING: "Windows Update"
.1.3.6.1.4.1.77.1.2.3.1.1.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = STRING: "Station de travail"
.1.3.6.1.4.1.77.1.2.3.1.1.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = STRING: "Service de stockage"
.1.3.6.1.4.1.77.1.2.3.1.1.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 52 65 67 69 73 74 72 65 20 C3 A0 20 64 69 73 74 61 6E 63 65
.1.3.6.1.4.1.77.1.2.3.1.1.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = Hex-STRING: 49 73 6F 6C 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 20 43 4E 47
.1.3.6.1.4.1.77.1.2.3.1.1.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = STRING: "Services de chiffrement"
.1.3.6.1.4.1.77.1.2.3.1.1.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = Hex-STRING: 53 70 6F 75 6C 65 75 72 20 64 E2 80 99 69 6D 70 72 65 73 73 69 6F 6E
.1.3.6.1.4.1.77.1.2.3.1.1.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = Hex-STRING: 50 6C 61 6E 69 66 69 63 61 74 65 75 72 20 64 65 20 74 C3 A2 63 68 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = Hex-STRING: 41 70 70 6C 69 63 61 74 69 6F 6E 20 73 79 73 74 C3 A8 6D 65 20 43 4F 4D 2B
.1.3.6.1.4.1.77.1.2.3.1.1.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = STRING: "Optimisation de livraison"
.1.3.6.1.4.1.77.1.2.3.1.1.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = STRING: "Pare-feu Windows Defender"
.1.3.6.1.4.1.77.1.2.3.1.1.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = Hex-STRING: 44 C3 A9 74 65 63 74 69 6F 6E 20 6D 61 74 C3 A9 72 69 65 6C 20 6E 6F 79 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = STRING: "Moteur de filtrage de base"
.1.3.6.1.4.1.77.1.2.3.1.1.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = Hex-STRING: 53 65 72 76 69 63 65 20 4C 69 73 74 65 20 64 65 73 20 72 C3 A9 73 65 61 75 78
.1.3.6.1.4.1.77.1.2.3.1.1.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = STRING: "Gestionnaire de comptes web"
.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = STRING: "Assistance NetBIOS sur TCP/IP"
.1.3.6.1.4.1.77.1.2.3.1.1.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = STRING: "Gestionnaire des utilisateurs"
.1.3.6.1.4.1.77.1.2.3.1.1.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = STRING: "Service de profil utilisateur"
.1.3.6.1.4.1.77.1.2.3.1.1.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = Hex-STRING: 53 79 73 74 C3 A8 6D 65 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 20 43 4F 4D 2B
.1.3.6.1.4.1.77.1.2.3.1.1.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 67 72 6F 75 70 65
.1.3.6.1.4.1.77.1.2.3.1.1.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = STRING: "Gestionnaire de session locale"
.1.3.6.1.4.1.77.1.2.3.1.1.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = Hex-STRING: 4A 6F 75 72 6E 61 6C 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 57 69 6E 64 6F 77 73
.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = STRING: "Infrastructure de gestion Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = STRING: "Lanceur de processus serveur DCOM"
.1.3.6.1.4.1.77.1.2.3.1.1.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 27 61 66 66 69 63 68 61 67 65
.1.3.6.1.4.1.77.1.2.3.1.1.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = Hex-STRING: 41 70 70 65 6C 20 64 65 20 70 72 6F 63 C3 A9 64 75 72 65 20 64 69 73 74 61 6E 74 65 20 28 52 50 43 29
.1.3.6.1.4.1.77.1.2.3.1.1.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 75 69 76 69 20 64 65 20 6C 69 65 6E 20 64 69 73 74 72 69 62 75 C3 A9
.1.3.6.1.4.1.77.1.2.3.1.1.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = STRING: "Service de cache de police Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = STRING: "Gestionnaire des connexions Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = STRING: "Mappeur de point de terminaison RPC"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 64 69 61 67 6E 6F 73 74 69 63
.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 49 6E 74 65 72 66 61 63 65 20 64 75 20 6D 61 67 61 73 69 6E 20 72 C3 A9 73 65 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = STRING: "Service antivirus Microsoft Defender"
.1.3.6.1.4.1.77.1.2.3.1.1.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = Hex-STRING: 43 6F 6E 6E 61 69 73 73 61 6E 63 65 20 64 65 73 20 65 6D 70 6C 61 63 65 6D 65 6E 74 73 20 72 C3 A9 73 65 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 20 63 6F 6D 70 74 65 73 20 64 65 20 73 C3 A9 63 75 72 69 74 C3 A9
.1.3.6.1.4.1.77.1.2.3.1.1.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = Hex-STRING: 4D 65 74 74 72 65 20 C3 A0 20 6A 6F 75 72 20 6C 65 20 73 65 72 76 69 63 65 20 4F 72 63 68 65 73 74 72 61 74 6F 72
.1.3.6.1.4.1.77.1.2.3.1.1.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 70 6C 6F 69 65 6D 65 6E 74 20 41 70 70 58 20 28 41 70 70 58 53 56 43 29
.1.3.6.1.4.1.77.1.2.3.1.1.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = STRING: "VMware Alias Manager and Ticket Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = STRING: "Serveur Gestionnaire de licences Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 64 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65
.1.3.6.1.4.1.77.1.2.3.1.1.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = Hex-STRING: 43 6F 6F 72 64 69 6E 61 74 65 75 72 20 64 65 20 74 72 61 6E 73 61 63 74 69 6F 6E 73 20 64 69 73 74 72 69 62 75 C3 A9 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 72 C3 A9 73 65 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = STRING: "Service State Repository (StateRepository)"
.1.3.6.1.4.1.77.1.2.3.1.1.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = STRING: "Service utilisateur du Presse-papiers_76c3f"
.1.3.6.1.4.1.77.1.2.3.1.1.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = STRING: "Assistant Connexion avec un compte Microsoft"
.1.3.6.1.4.1.77.1.2.3.1.1.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = Hex-STRING: 47 65 73 74 69 6F 6E 20 C3 A0 20 64 69 73 74 61 6E 63 65 20 64 65 20 57 69 6E 64 6F 77 73 20 28 47 65 73 74 69 6F 6E 20 57 53 4D 29
.1.3.6.1.4.1.77.1.2.3.1.1.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 68 6F 72 61 69 72 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = Hex-STRING: 4D 6F 64 75 6C 65 73 20 64 65 20 67 C3 A9 6E C3 A9 72 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 73 20 49 4B 45 20 65 74 20 41 75 74 68 49 50
.1.3.6.1.4.1.77.1.2.3.1.1.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 65 73 20 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73
.1.3.6.1.4.1.77.1.2.3.1.1.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 69 6E 73 74 61 6C 6C 61 74 69 6F 6E 20 64 65 20 70 C3 A9 72 69 70 68 C3 A9 72 69 71 75 65
.1.3.6.1.4.1.77.1.2.3.1.1.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 48 C3 B4 74 65 20 64 75 20 66 6F 75 72 6E 69 73 73 65 75 72 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73
.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6A 6F 75 72 6E 61 6C 69 73 61 74 69 6F 6E 20 64 65 73 20 61 63 63 C3 A8 73 20 75 74 69 6C 69 73 61 74 65 75 72
.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = Hex-STRING: 53 65 72 76 69 63 65 C2 A0 53 53 54 50 20 28 53 65 63 75 72 65 20 53 6F 63 6B 65 74 20 54 75 6E 6E 65 6C 69 6E 67 20 50 72 6F 74 6F 63 6F 6C 29
.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65
.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 74 72 61 6E 73 66 65 72 74 20 69 6E 74 65 6C 6C 69 67 65 6E 74 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E
.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 73 79 73 74 C3 A8 6D 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 73 20 50 75 73 68 20 57 69 6E 64 6F 77 73
.1.3.6.1.4.1.77.1.2.3.1.1.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 64 E2 80 99 61 63 63 C3 A8 73 20 C3 A0 20 64 69 73 74 61 6E 63 65
.1.3.6.1.4.1.77.1.2.3.1.1.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 61 63 63 C3 A8 73 20 61 75 78 20 66 6F 6E 63 74 69 6F 6E 6E 61 6C 69 74 C3 A9 73
.1.3.6.1.4.1.77.1.2.3.1.1.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 50 75 62 6C 69 63 61 74 69 6F 6E 20 64 65 73 20 72 65 73 73 6F 75 72 63 65 73 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73
.1.3.6.1.4.1.77.1.2.3.1.1.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6C E2 80 99 41 73 73 69 73 74 61 6E 74 20 43 6F 6D 70 61 74 69 62 69 6C 69 74 C3 A9 20 64 65 73 20 70 72 6F 67 72 61 6D 6D 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 66 72 61 73 74 72 75 63 74 75 72 65 20 64 65 73 20 74 C3 A2 63 68 65 73 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E
.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = STRING: "Service utilisateur de notifications Push Windows_76c3f"
.1.3.6.1.4.1.77.1.2.3.1.1.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = Hex-STRING: 45 78 70 C3 A9 72 69 65 6E 63 65 73 20 64 65 73 20 75 74 69 6C 69 73 61 74 65 75 72 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 20 65 74 20 74 C3 A9 6C C3 A9 6D C3 A9 74 72 69 65
.1.3.6.1.4.1.77.1.2.3.1.1.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 63 6C 61 76 69 65 72 20 74 61 63 74 69 6C 65 20 65 74 20 64 75 20 76 6F 6C 65 74 20 64 E2 80 99 C3 A9 63 72 69 74 75 72 65 20 6D 61 6E 75 73 63 72 69 74 65
.1.3.6.1.4.1.77.1.2.3.1.1.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 73 70 65 63 74 69 6F 6E 20 72 C3 A9 73 65 61 75 20 64 65 20 6C E2 80 99 61 6E 74 69 76 69 72 75 73 20 4D 69 63 72 6F 73 6F 66 74 20 44 65 66 65 6E 64 65 72
.1.3.6.1.4.1.77.1.2.3.1.1.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = Hex-STRING: 53 65 72 76 69 63 65 20 70 6F 75 72 20 75 74 69 6C 69 73 61 74 65 75 72 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 E2 80 99 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 5F 37 36 63 33 66
.1.3.6.1.4.1.77.1.2.3.1.1.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 61 75 74 6F 6D 61 74 69 71 75 65 20 64 65 20 50 72 6F 78 79 20 57 65 62 20 70 6F 75 72 20 6C 65 73 20 73 65 72 76 69 63 65 73 20 48 54 54 50 20 57 69 6E 64 6F 77 73
.1.3.6.1.4.1.77.1.2.3.1.2.7.83.101.114.118.101.117.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.7.84.104.195.168.109.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.2.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.3.7.83.101.114.118.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.7.84.104.195.168.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.7.83.101.114.118.101.117.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.7.84.104.195.168.109.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.83.101.114.118.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.84.104.195.168.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1

View File

@ -0,0 +1,52 @@
--display-transform-dst
--display-transform-src
--exclude-fs
--filter-fs
--filter-vdom
--force-counters32
--force-counters64
--map-speed-dsl
--nagvis-perfdata
--oid-display
--oid-extra-display
--oid-filter
2c
ADSL
Centreon
Datacore
deltaps
df
eth
Fortigate
Fortinet
ifAlias
ifDesc
ifName
in-bcast
in-mcast
in-ucast
interface-dsl-name
IpAddr
license-instances-usage-prct
MBean
NagVis
OID
oneaccess-sys-mib
out-bcast
out-mcast
out-ucast
perfdata
powershell
proto
queue-messages-inflighted
Sansymphony
SNMP
space-usage-prct
SSH
SureBackup
topic-messages-inflighted
total-oper-down
total-oper-up
VDSL2
Veeam
WSMAN

View File

@ -1,46 +1,43 @@
*** Settings ***
Documentation Hardware UPS Sputnik SNMP plugin
Library OperatingSystem
Library String
Library Examples
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} ${CENTREON_PLUGINS} --plugin=apps::protocols::snmp::plugin
${CMD} perl ${CENTREON_PLUGINS} --plugin=apps::protocols::snmp::plugin
*** Test Cases ***
SNMP Collection - Sputnik Environment ${tc}/3
[Tags] SNMP Collection
[Tags] snmp collection
${command} Catenate
... ${CMD}
... --mode=collection
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=hardware-ups/hardware-ups-sputnik
... --config=${CURDIR}${/}..${/}..${/}..${/}src/contrib/collection/snmp/sputnik-environment.json
... --snmp-community=apps/protocols/snmp/collection-sputnik
... --config=${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}src/contrib/collection/snmp/sputnik-environment.json
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
... ${command}\nWrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
Examples: tc expected_result --
... 1 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100
... 2 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100
... 3 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100
*** Keywords ***
Append Option
[Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_'
[Arguments] ${option} ${value}
${value} Set Variable If '${value}' == '_empty_' '' ${value}
[return] ${option}=${value}
RETURN ${option}=${value}

View File

@ -1,6 +1,6 @@
{
"uuid": "e59ad81e-2050-480d-bbae-0e71c607c927",
"lastMigration": 27,
"lastMigration": 32,
"name": "Aws cloudtrail",
"endpointPrefix": "",
"latency": 0,
@ -35,10 +35,11 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
},
{
@ -50,7 +51,7 @@
"responses": [
{
"uuid": "7dd41177-8d63-458a-abcc-b3af3ea8c9cd",
"body": "{\r\n\t\"Events\": [\r\n\t\t{{#each (dataRaw 'Events')}}\r\n\t\t {{#if (gt @index 0)}}\r\n\t\t ,\r\n\t\t {{/if}}\r\n \t\t{\r\n \t\t\t\"AccessKeyId\": \"{{AccessKeyId}}\",\r\n \t\t\t\"CloudTrailEvent\": \"{\\\"awsRegion\\\": \\\"eu-west-1\\\", {{#if Error}}\\\"errorCode\\\": \\\"{{ErrorCode}}\\\", \\\"errorMessage\\\": \\\"{{ErrorMessage}}\\\",{{/if}} \\\"eventCategory\\\": \\\"Management\\\", \\\"eventID\\\": \\\"{{EventId}}\\\", \\\"eventName\\\": \\\"{{EventName}}\\\", \\\"eventSource\\\": \\\"{{EventSource}}\\\", \\\"eventTime\\\": \\\"{{EventTime}}\\\", \\\"eventType\\\": \\\"{{EventType}}\\\", \\\"eventVersion\\\": \\\"1.08\\\", \\\"managementEvent\\\": true, \\\"readOnly\\\": true, \\\"recipientAccountId\\\": \\\"{{AccountId}}\\\", \\\"requestID\\\": \\\"{{ faker 'datatype.uuid' }}\\\", \\\"requestParameters\\\": null, \\\"responseElements\\\": null, \\\"sourceIPAddress\\\": \\\"{{ faker 'internet.ip' }}\\\", \\\"tlsDetails\\\": {\\\"cipherSuite\\\": \\\"ECDHE-RSA-AES128-GCM-SHA256\\\", \\\"clientProvidedHostHeader\\\": \\\"cloudtrail.eu-west-1.amazonaws.com\\\", \\\"tlsVersion\\\": \\\"TLSv1.2\\\"}, \\\"userAgent\\\": \\\"aws-cli/2.11.0 Python/3.11.2 Darwin/22.2.0 source/x86_64 prompt/off command/cloudtrail.lookup-events\\\", \\\"userIdentity\\\": {\\\"accessKeyId\\\": \\\"{{AccessKeyId}}\\\", \\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:sts::{{AccountId}}:assumed-role/{{UserRole}}/{{UserName}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}:{{UserName}}\\\", \\\"sessionContext\\\": {\\\"attributes\\\": {\\\"creationDate\\\": \\\"{{ faker 'date.past' EventTime }}\\\", \\\"mfaAuthenticated\\\": \\\"false\\\"}, \\\"sessionIssuer\\\": {\\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:iam::{{AccountId}}:role/{{UserRole}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}\\\", \\\"type\\\": \\\"Role\\\", \\\"userName\\\": \\\"{{UserRole}}\\\"}, \\\"webIdFederationData\\\": {}}, \\\"type\\\": \\\"{{ faker 'name.jobArea' }}\\\"}}\",\r\n \t\t\t\"EventId\": \"{{EventId}}\",\r\n \t\t\t\"EventName\": \"{{EventName}}\",\r\n \t\t\t\"EventSource\": \"{{EventSource}}\",\r\n \t\t\t\"EventTime\": \"{{EventTime}}\",\r\n \t\t\t\"ReadOnly\": \"true\",\r\n \t\t\t\"Resources\": [\r\n \t\t\t],\r\n \t\t\t\"Username\": \"{{UserName}}\"\r\n \t\t}\r\n\t\t{{/each}}\r\n\t]\r\n\t{{#if (gte (indexOf (urlParam 'NextToken') 'true' 0) 0)}}\r\n\t {{#unless (includes (stringify (body)) 'NextToken')}}\r\n\t\t ,\"NextToken\": \"{{ faker 'random.alphaNumeric' 64 casing='upper' }}\"\r\n\t\t{{/unless}}\r\n\t{{/if}}\r\n}",
"body": "{\r\n\t\"Events\": [\r\n\t\t{{#each (dataRaw 'EventsData')}}\r\n\t\t {{#if (gt @index 0)}}\r\n\t\t ,\r\n\t\t {{/if}}\r\n \t\t{\r\n \t\t\t\"AccessKeyId\": \"{{AccessKeyId}}\",\r\n \t\t\t\"CloudTrailEvent\": \"{\\\"awsRegion\\\": \\\"eu-west-1\\\", {{#if Error}}\\\"errorCode\\\": \\\"{{ErrorCode}}\\\", \\\"errorMessage\\\": \\\"{{ErrorMessage}}\\\",{{/if}} \\\"eventCategory\\\": \\\"Management\\\", \\\"eventID\\\": \\\"{{EventId}}\\\", \\\"eventName\\\": \\\"{{EventName}}\\\", \\\"eventSource\\\": \\\"{{EventSource}}\\\", \\\"eventTime\\\": \\\"{{EventTime}}\\\", \\\"eventType\\\": \\\"{{EventType}}\\\", \\\"eventVersion\\\": \\\"1.08\\\", \\\"managementEvent\\\": true, \\\"readOnly\\\": true, \\\"recipientAccountId\\\": \\\"{{AccountId}}\\\", \\\"requestID\\\": \\\"{{ faker 'string.uuid' }}\\\", \\\"requestParameters\\\": null, \\\"responseElements\\\": null, \\\"sourceIPAddress\\\": \\\"{{ faker 'internet.ip' }}\\\", \\\"tlsDetails\\\": {\\\"cipherSuite\\\": \\\"ECDHE-RSA-AES128-GCM-SHA256\\\", \\\"clientProvidedHostHeader\\\": \\\"cloudtrail.eu-west-1.amazonaws.com\\\", \\\"tlsVersion\\\": \\\"TLSv1.2\\\"}, \\\"userAgent\\\": \\\"aws-cli/2.11.0 Python/3.11.2 Darwin/22.2.0 source/x86_64 prompt/off command/cloudtrail.lookup-events\\\", \\\"userIdentity\\\": {\\\"accessKeyId\\\": \\\"{{AccessKeyId}}\\\", \\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:sts::{{AccountId}}:assumed-role/{{UserRole}}/{{UserName}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}:{{UserName}}\\\", \\\"sessionContext\\\": {\\\"attributes\\\": {\\\"creationDate\\\": \\\"{{ faker 'date.past' EventTime }}\\\", \\\"mfaAuthenticated\\\": \\\"false\\\"}, \\\"sessionIssuer\\\": {\\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:iam::{{AccountId}}:role/{{UserRole}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}\\\", \\\"type\\\": \\\"Role\\\", \\\"userName\\\": \\\"{{UserRole}}\\\"}, \\\"webIdFederationData\\\": {}}, \\\"type\\\": \\\"{{ faker 'person.jobArea' }}\\\"}}\",\r\n \t\t\t\"EventId\": \"{{EventId}}\",\r\n \t\t\t\"EventName\": \"{{EventName}}\",\r\n \t\t\t\"EventSource\": \"{{EventSource}}\",\r\n \t\t\t\"EventTime\": \"{{EventTime}}\",\r\n \t\t\t\"ReadOnly\": \"true\",\r\n \t\t\t\"Resources\": [\r\n \t\t\t],\r\n \t\t\t\"Username\": \"{{UserName}}\"\r\n \t\t}\r\n\t\t{{/each}}\r\n\t]\r\n\t{{#if (gte (indexOf (urlParam 'NextToken') 'true' 0) 0)}}\r\n\t {{#unless (includes (stringify (body)) 'NextToken')}}\r\n\t\t ,\"NextToken\": \"{{ faker 'string.alphanumeric' 64 casing='upper' }}\"\r\n\t\t{{/unless}}\r\n\t{{/if}}\r\n}",
"latency": 0,
"statusCode": 200,
"label": "",
@ -63,10 +64,11 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
}
],
@ -112,19 +114,20 @@
}
],
"data": [
{
"uuid": "76dec2a5-ff63-4e81-9611-94b900ab16e1",
"id": "c5kh",
"name": "EventsData",
"documentation": "",
"value": "[\n {{#each (dataRaw 'EventsTypeData')}}\n {{#if (gte @isEvent 1)}}\n ,\n {{/if}}\n {{setVar 'isEvent' (add (urlParam name) @isEvent)}}\n {{#repeat (urlParam name comma=true)}}\n {\n \"AccessKeyId\": \"{{ faker 'random.alphaNumeric' 20 casing='upper' }}\",\n \"AccountId\": \"{{ faker 'random.numeric' 12 }}\",\n \"Error\": {{error}},\n {{#if error}}\n \"ErrorCode\": \"{{errorCode}}\",\n\t \"ErrorMessage\": \"{{errorMessage}}\",\n {{/if}}\n \"EventId\": \"{{ faker 'datatype.uuid' }}\",\n \"EventName\": \"{{oneOf (array 'LookupEvents' 'ListInstanceAssociations' 'AssumeRoleWithWebIdentity')}}\",\n \"EventSource\": \"{{oneOf (array 'cloudtrail.amazonaws.com' 'ssm.amazonaws.com' 'sts.amazonaws.com')}}\",\n \"EventTime\": \"{{ faker 'date.recent' }}\",\n \"EventType\": \"{{name}}\",\n \"PrincipalId\": \"{{ faker 'random.alphaNumeric' 20 casing='upper' }}\",\n \"UserName\": \"{{ faker 'internet.userName' }}\",\n \"UserRole\": \"{{ faker 'name.jobType' }}\"\n }\n {{/repeat}}\n {{/each}}\n]"
},
{
"uuid": "5dce6340-bade-4336-8041-50fd22570055",
"id": "nu28",
"name": "EventsTypeData",
"documentation": "",
"value": "[\n {\n \"name\": \"AwsApiCall\",\n \"error\": false\n },\n {\n \"name\": \"AwsServiceEvent\",\n \"error\": false\n },\n {\n \"name\": \"AwsConsoleAction\",\n \"error\": true,\n \t\"errorCode\": \"ThrottlingException\",\n \t\"errorMessage\": \"Rate exceeded error\"\n },\n {\n \"name\": \"AwsConsoleSignIn\",\n \"error\": true,\n \"errorCode\": \"LoginErrorException\",\n \"errorMessage\": \"Login error\"\n }\n]"
},
{
"uuid": "76dec2a5-ff63-4e81-9611-94b900ab16e1",
"id": "c5kh",
"name": "EventsData",
"documentation": "",
"value": "[\n {{#each (dataRaw 'EventsTypeData')}}\n {{#if (gte @isEvent 1)}}\n ,\n {{/if}}\n {{setVar 'isEvent' (add (urlParam name) @isEvent)}}\n {{#repeat (urlParam name comma=true)}}\n {\n \"AccessKeyId\": \"{{ faker 'string.alphanumeric' 20 casing='upper' }}\",\n \"AccountId\": \"{{ faker 'string.numeric' 12 }}\",\n \"Error\": {{error}},\n {{#if error}}\n \"ErrorCode\": \"{{errorCode}}\",\n\t \"ErrorMessage\": \"{{errorMessage}}\",\n {{/if}}\n \"EventId\": \"{{ faker 'string.uuid' }}\",\n \"EventName\": \"{{oneOf (array 'LookupEvents' 'ListInstanceAssociations' 'AssumeRoleWithWebIdentity')}}\",\n \"EventSource\": \"{{oneOf (array 'cloudtrail.amazonaws.com' 'ssm.amazonaws.com' 'sts.amazonaws.com')}}\",\n \"EventTime\": \"{{ faker 'date.recent' }}\",\n \"EventType\": \"{{name}}\",\n \"PrincipalId\": \"{{ faker 'string.alphanumeric' 20 casing='upper' }}\",\n \"UserName\": \"{{ faker 'internet.userName' }}\",\n \"UserRole\": \"{{ faker 'person.jobType' }}\"\n }\n {{/repeat}}\n {{/each}}\n]"
}
]
],
"callbacks": []
}

View File

@ -1,20 +1,17 @@
*** Settings ***
Documentation AWS CloudTrail plugin
Library OperatingSystem
Library Process
Library String
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Suite Setup Start Mockoon
Suite Setup Start Mockoon ${MOCKOON_JSON}
Suite Teardown Stop Mockoon
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}cloud-aws-cloudtrail.json
${MOCKOON_JSON} ${CURDIR}${/}cloud-aws-cloudtrail.json
${CMD} perl ${CENTREON_PLUGINS} --plugin=cloud::aws::cloudtrail::plugin --custommode=paws --region=eu-west --aws-secret-key=secret --aws-access-key=key
${CMD} ${CENTREON_PLUGINS} --plugin=cloud::aws::cloudtrail::plugin --custommode=paws --region=eu-west --aws-secret-key=secret --aws-access-key=key
&{checktrailstatus_value1}
... trailstatus=true
@ -195,18 +192,3 @@ AWS CloudTrail count events
... ${countevents_value.result}
... Wrong output result for count events of ${countevents_value}.{\n}Command output:{\n}${output}
END
*** Keywords ***
Start Mockoon
${process} Start Process
... mockoon-cli
... start
... --data
... ${MOCKOON_JSON}
... --port
... 3000
Sleep 5s
Stop Mockoon
Terminate All Processes

View File

@ -1,11 +1,11 @@
{
"uuid": "101906e9-f832-416c-8781-880c33a0a778",
"lastMigration": 25,
"lastMigration": 32,
"name": "Azure API",
"endpointPrefix": "",
"latency": 0,
"port": 3000,
"hostname": "0.0.0.0",
"hostname": "",
"folders": [],
"routes": [
{
@ -16,7 +16,7 @@
"responses": [
{
"uuid": "0c775d57-8661-4c4f-9f30-a3a134d6d09c",
"body": "{\n \"access_token\": \"token\",\n \"expires_on\": \"{{ faker 'random.numeric' 10 }}\"\n}",
"body": "{\n \"access_token\": \"token\",\n \"expires_on\": \"{{ faker 'string.numeric' 10 }}\"\n}",
"latency": 0,
"statusCode": 200,
"label": "",
@ -29,11 +29,13 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
"responseMode": null,
"type": "http"
},
{
"uuid": "3f190dd9-690a-413a-bafa-5c9d369b7d22",
@ -56,11 +58,13 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
"responseMode": null,
"type": "http"
},
{
"uuid": "31c8940d-4623-444c-92e1-f340fe74b5b3",
@ -83,11 +87,13 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
"responseMode": null,
"type": "http"
},
{
"uuid": "13bf6e0e-8843-4681-942e-404b01326f32",
@ -110,11 +116,13 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
"responseMode": null,
"type": "http"
},
{
"uuid": "1eb461f8-c128-432b-a7ca-7ddd71c28fa4",
@ -137,11 +145,13 @@
"rulesOperator": "OR",
"disableTemplating": false,
"fallbackTo404": false,
"default": true
"default": true,
"crudKey": "id",
"callbacks": []
}
],
"enabled": true,
"responseMode": null
"responseMode": null,
"type": "http"
}
],
"rootChildren": [
@ -197,5 +207,6 @@
"value": ""
}
],
"data": []
"data": [],
"callbacks": []
}

View File

@ -1,42 +1,39 @@
*** Settings ***
Documentation Azure PolicyInsights PolicyStates plugin
Library OperatingSystem
Library Process
Library String
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Suite Setup Start Mockoon
Suite Setup Start Mockoon ${MOCKOON_JSON}
Suite Teardown Stop Mockoon
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}cloud-azure-policyinsights-policystates.json
${MOCKOON_JSON} ${CURDIR}${/}cloud-azure-policyinsights-policystates.json
${LOGIN_ENDPOINT} http://localhost:3001/login
${CMD} perl ${CENTREON_PLUGINS} --plugin=cloud::azure::policyinsights::policystates::plugin --subscription=subscription --tenant=tenant --client-id=client_id --client-secret=secret --login-endpoint=${LOGIN_ENDPOINT}
${LOGIN_ENDPOINT} http://localhost:3000/login
${CMD} ${CENTREON_PLUGINS} --plugin=cloud::azure::policyinsights::policystates::plugin --subscription=subscription --tenant=tenant --client-id=client_id --client-secret=secret --login-endpoint=${LOGIN_ENDPOINT}
&{compliance_value1}
... endpoint=http://localhost:3001/ok
... endpoint=http://localhost:3000/ok
... policyname=
... resourcelocation=
... resourcetype=
... result=OK: Number of non compliant policies: 0 - All compliances states are ok | 'policies.non_compliant.count'=0;;;0;
&{compliance_value2}
... endpoint=http://localhost:3001/oknextlink
... endpoint=http://localhost:3000/oknextlink
... policyname=9daedab3-fb2d-461e-b861-71790eead4f6
... resourcelocation=
... resourcetype=
... result=OK: Number of non compliant policies: 0 - All compliances states are ok | 'policies.non_compliant.count'=0;;;0;
&{compliance_value3}
... endpoint=http://localhost:3001/nok1
... endpoint=http://localhost:3000/nok1
... policyname=9daedab3-fb2d-461e-b861-71790eead4f6
... resourcelocation=fr
... resourcetype=
... result=CRITICAL: Compliance state for policy '9daedab3-fb2d-461e-b861-71790eead4f6' on resource 'mypubip1' is 'NonCompliant' | 'policies.non_compliant.count'=1;;;0;
&{compliance_value4}
... endpoint=http://localhost:3001/nok2
... endpoint=http://localhost:3000/nok2
... policyname=9daedab3-fb2d-461e-b861-71790eead4f6
... resourcelocation=fr
... resourcetype=ip
@ -72,18 +69,3 @@ Azure PolicyInsights PolicyStates compliance
... ${compliance_value.result}
... Wrong output result for compliance of ${compliance_value}.{\n}Command output:{\n}${output}
END
*** Keywords ***
Start Mockoon
${process} Start Process
... mockoon-cli
... start
... --data
... ${MOCKOON_JSON}
... --port
... 3000
Sleep 5s
Stop Mockoon
Terminate All Processes

View File

@ -1,22 +1,18 @@
*** Settings ***
Documentation Database Mysql plugin
Library OperatingSystem
Library Process
Library String
Resource ${CURDIR}${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=database::mysql::plugin
${CMD} ${CENTREON_PLUGINS} --plugin=database::mysql::plugin
&{sql_string_test1}
... result=UNKNOWN: Need to specify data_source arguments.
... result=UNKNOWN: Need to specify data_source arguments.
@{sql_string_tests}
... &{sql_string_test1}
... &{sql_string_test1}
*** Test Cases ***

View File

@ -1,381 +1,381 @@
.1.3.6.1.4.1.2021.4.3.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.4.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.5.0 = INTEGER: 2017284
.1.3.6.1.4.1.2021.4.6.0 = INTEGER: 633088
.1.3.6.1.4.1.2021.4.11.0 = INTEGER: 633088
.1.3.6.1.4.1.2021.4.13.0 = INTEGER: 26716
.1.3.6.1.4.1.2021.4.14.0 = INTEGER: 2084
.1.3.6.1.4.1.2021.4.15.0 = INTEGER: 740908
.1.3.6.1.4.1.2021.10.1.3.1 = STRING: 0.04
.1.3.6.1.4.1.2021.10.1.3.2 = STRING: 0.10
.1.3.6.1.4.1.2021.10.1.3.3 = STRING: 0.15
.1.3.6.1.4.1.2021.11.50.0 = INTEGER: 135503
.1.3.6.1.4.1.2021.11.51.0 = INTEGER: 2274
.1.3.6.1.4.1.2021.11.52.0 = INTEGER: 40397
.1.3.6.1.4.1.2021.11.53.0 = INTEGER: 4196071
.1.3.6.1.4.1.2021.11.54.0 = INTEGER: 12504
.1.3.6.1.4.1.2021.11.55.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.56.0 = INTEGER: 20130
.1.3.6.1.4.1.2021.11.57.0 = INTEGER: 1907546
.1.3.6.1.4.1.2021.11.58.0 = INTEGER: 1097972
.1.3.6.1.4.1.2021.11.59.0 = INTEGER: 19954356
.1.3.6.1.4.1.2021.11.60.0 = INTEGER: 15304192
.1.3.6.1.4.1.2021.11.61.0 = INTEGER: 5002
.1.3.6.1.4.1.2021.11.62.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.63.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.64.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.65.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.66.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.67.0 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.1.1.0 = STRING: "hostname"
.1.3.6.1.4.1.10418.26.2.1.2.0 = STRING: "ACS8016 with dual power supply"
.1.3.6.1.4.1.10418.26.2.1.3.0 = STRING: "000-000"
.1.3.6.1.4.1.10418.26.2.1.4.0 = STRING: "0520307296"
.1.3.6.1.4.1.10418.26.2.1.5.0 = STRING: "notavailable"
.1.3.6.1.4.1.10418.26.2.1.6.0 = STRING: "1.18"
.1.3.6.1.4.1.10418.26.2.1.7.0 = STRING: "2.4.5.3944+845+37+11"
.1.3.6.1.4.1.10418.26.2.1.8.1.0 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.1.8.2.0 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.1.8.3.0 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.1.9.0 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.2.1.0 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.1.0 = INTEGER: 16
.1.3.6.1.4.1.10418.26.2.3.2.1.1.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.1.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.1.3 = INTEGER: 3
.1.3.6.1.4.1.10418.26.2.3.2.1.1.4 = INTEGER: 4
.1.3.6.1.4.1.10418.26.2.3.2.1.1.5 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.1.6 = INTEGER: 6
.1.3.6.1.4.1.10418.26.2.3.2.1.1.7 = INTEGER: 7
.1.3.6.1.4.1.10418.26.2.3.2.1.1.8 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.1.9 = INTEGER: 9
.1.3.6.1.4.1.10418.26.2.3.2.1.1.10 = INTEGER: 10
.1.3.6.1.4.1.10418.26.2.3.2.1.1.11 = INTEGER: 11
.1.3.6.1.4.1.10418.26.2.3.2.1.1.12 = INTEGER: 12
.1.3.6.1.4.1.10418.26.2.3.2.1.1.13 = INTEGER: 13
.1.3.6.1.4.1.10418.26.2.3.2.1.1.14 = INTEGER: 14
.1.3.6.1.4.1.10418.26.2.3.2.1.1.15 = INTEGER: 15
.1.3.6.1.4.1.10418.26.2.3.2.1.1.16 = INTEGER: 16
.1.3.6.1.4.1.10418.26.2.3.2.1.2.1 = STRING: "ttyS1"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.2 = STRING: "ttyS2"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.3 = STRING: "ttyS3"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.4 = STRING: "ttyS4"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.5 = STRING: "ttyS5"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.6 = STRING: "ttyS6"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.7 = STRING: "ttyS7"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.8 = STRING: "ttyS8"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.9 = STRING: "ttyS9"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.10 = STRING: "ttyS10"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.11 = STRING: "ttyS11"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.12 = STRING: "ttyS12"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.13 = STRING: "ttyS13"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.14 = STRING: "ttyS14"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.15 = STRING: "ttyS15"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.16 = STRING: "ttyS16"
.1.3.6.1.4.1.10418.26.2.3.2.1.3.1 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.8 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.12 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.16 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.4.1 = STRING: "2e-57-c4-p-1"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.2 = STRING: "2e-57-c4-p-2"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.3 = STRING: "2e-57-c4-p-3"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.4 = STRING: "2e-57-c4-p-4"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.5 = STRING: "2e-57-c4-p-5"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.6 = STRING: "2e-57-c4-p-6"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.7 = STRING: "2e-57-c4-p-7"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.8 = STRING: "2e-57-c4-p-8"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.9 = STRING: "2e-57-c4-p-9"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.10 = STRING: "2e-57-c4-p-10"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.11 = STRING: "2e-57-c4-p-11"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.12 = STRING: "2e-57-c4-p-12"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.13 = STRING: "2e-57-c4-p-13"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.14 = STRING: "2e-57-c4-p-14"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.15 = STRING: "2e-57-c4-p-15"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.16 = STRING: "2e-57-c4-p-16"
.1.3.6.1.4.1.10418.26.2.3.2.1.5.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.6.1 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.2 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.3 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.4 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.5 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.6 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.7 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.8 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.9 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.10 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.11 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.12 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.13 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.14 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.15 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.16 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.7.1 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.2 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.3 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.4 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.5 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.6 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.7 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.8 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.9 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.10 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.11 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.12 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.13 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.14 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.15 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.16 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.8.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.9.1 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.2 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.3 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.4 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.5 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.6 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.7 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.8 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.9 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.10 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.11 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.12 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.13 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.14 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.15 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.16 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.10.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.12.1 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.8 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.12 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.16 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.14.1 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.8 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.12 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.16 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.16.1 = INTEGER: 4
.1.3.6.1.4.1.10418.26.2.3.2.1.16.2 = INTEGER: 1870
.1.3.6.1.4.1.10418.26.2.3.2.1.16.3 = INTEGER: 455
.1.3.6.1.4.1.10418.26.2.3.2.1.16.4 = INTEGER: 3132
.1.3.6.1.4.1.10418.26.2.3.2.1.16.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.16.6 = INTEGER: 2867
.1.3.6.1.4.1.10418.26.2.3.2.1.16.7 = INTEGER: 386
.1.3.6.1.4.1.10418.26.2.3.2.1.16.8 = INTEGER: 147
.1.3.6.1.4.1.10418.26.2.3.2.1.16.9 = INTEGER: 355
.1.3.6.1.4.1.10418.26.2.3.2.1.16.10 = INTEGER: 709
.1.3.6.1.4.1.10418.26.2.3.2.1.16.11 = INTEGER: 1986
.1.3.6.1.4.1.10418.26.2.3.2.1.16.12 = INTEGER: 860
.1.3.6.1.4.1.10418.26.2.3.2.1.16.13 = INTEGER: 7
.1.3.6.1.4.1.10418.26.2.3.2.1.16.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.16.15 = INTEGER: 739
.1.3.6.1.4.1.10418.26.2.3.2.1.16.16 = INTEGER: 2062
.1.3.6.1.4.1.10418.26.2.3.2.1.17.1 = INTEGER: 30198
.1.3.6.1.4.1.10418.26.2.3.2.1.17.2 = INTEGER: 85760
.1.3.6.1.4.1.10418.26.2.3.2.1.17.3 = INTEGER: 9012
.1.3.6.1.4.1.10418.26.2.3.2.1.17.4 = INTEGER: 117562
.1.3.6.1.4.1.10418.26.2.3.2.1.17.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.17.6 = INTEGER: 285873
.1.3.6.1.4.1.10418.26.2.3.2.1.17.7 = INTEGER: 49921
.1.3.6.1.4.1.10418.26.2.3.2.1.17.8 = INTEGER: 562
.1.3.6.1.4.1.10418.26.2.3.2.1.17.9 = INTEGER: 27723
.1.3.6.1.4.1.10418.26.2.3.2.1.17.10 = INTEGER: 72153
.1.3.6.1.4.1.10418.26.2.3.2.1.17.11 = INTEGER: 141123
.1.3.6.1.4.1.10418.26.2.3.2.1.17.12 = INTEGER: 14608
.1.3.6.1.4.1.10418.26.2.3.2.1.17.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.17.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.17.15 = INTEGER: 17688
.1.3.6.1.4.1.10418.26.2.3.2.1.17.16 = INTEGER: 64970
.1.3.6.1.4.1.10418.26.2.3.2.1.18.1 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.1 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.1 = INTEGER: 3
.1.3.6.1.4.1.10418.26.2.3.2.1.20.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.1 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.5.1.0 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.5.4.0 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.5.6.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.3.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.4.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.5.0 = INTEGER: 2017284
.1.3.6.1.4.1.2021.4.6.0 = INTEGER: 633088
.1.3.6.1.4.1.2021.4.11.0 = INTEGER: 633088
.1.3.6.1.4.1.2021.4.13.0 = INTEGER: 26716
.1.3.6.1.4.1.2021.4.14.0 = INTEGER: 2084
.1.3.6.1.4.1.2021.4.15.0 = INTEGER: 740908
.1.3.6.1.4.1.2021.10.1.3.1 = STRING: 0.04
.1.3.6.1.4.1.2021.10.1.3.2 = STRING: 0.10
.1.3.6.1.4.1.2021.10.1.3.3 = STRING: 0.15
.1.3.6.1.4.1.2021.11.50.0 = INTEGER: 135503
.1.3.6.1.4.1.2021.11.51.0 = INTEGER: 2274
.1.3.6.1.4.1.2021.11.52.0 = INTEGER: 40397
.1.3.6.1.4.1.2021.11.53.0 = INTEGER: 4196071
.1.3.6.1.4.1.2021.11.54.0 = INTEGER: 12504
.1.3.6.1.4.1.2021.11.55.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.56.0 = INTEGER: 20130
.1.3.6.1.4.1.2021.11.57.0 = INTEGER: 1907546
.1.3.6.1.4.1.2021.11.58.0 = INTEGER: 1097972
.1.3.6.1.4.1.2021.11.59.0 = INTEGER: 19954356
.1.3.6.1.4.1.2021.11.60.0 = INTEGER: 15304192
.1.3.6.1.4.1.2021.11.61.0 = INTEGER: 5002
.1.3.6.1.4.1.2021.11.62.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.63.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.64.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.65.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.66.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.67.0 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.1.1.0 = STRING: "hostname"
.1.3.6.1.4.1.10418.26.2.1.2.0 = STRING: "ACS8016 with dual power supply"
.1.3.6.1.4.1.10418.26.2.1.3.0 = STRING: "000-000"
.1.3.6.1.4.1.10418.26.2.1.4.0 = STRING: "0520307296"
.1.3.6.1.4.1.10418.26.2.1.5.0 = STRING: "notavailable"
.1.3.6.1.4.1.10418.26.2.1.6.0 = STRING: "1.18"
.1.3.6.1.4.1.10418.26.2.1.7.0 = STRING: "2.4.5.3944+845+37+11"
.1.3.6.1.4.1.10418.26.2.1.8.1.0 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.1.8.2.0 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.1.8.3.0 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.1.9.0 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.2.1.0 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.1.0 = INTEGER: 16
.1.3.6.1.4.1.10418.26.2.3.2.1.1.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.1.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.1.3 = INTEGER: 3
.1.3.6.1.4.1.10418.26.2.3.2.1.1.4 = INTEGER: 4
.1.3.6.1.4.1.10418.26.2.3.2.1.1.5 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.1.6 = INTEGER: 6
.1.3.6.1.4.1.10418.26.2.3.2.1.1.7 = INTEGER: 7
.1.3.6.1.4.1.10418.26.2.3.2.1.1.8 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.1.9 = INTEGER: 9
.1.3.6.1.4.1.10418.26.2.3.2.1.1.10 = INTEGER: 10
.1.3.6.1.4.1.10418.26.2.3.2.1.1.11 = INTEGER: 11
.1.3.6.1.4.1.10418.26.2.3.2.1.1.12 = INTEGER: 12
.1.3.6.1.4.1.10418.26.2.3.2.1.1.13 = INTEGER: 13
.1.3.6.1.4.1.10418.26.2.3.2.1.1.14 = INTEGER: 14
.1.3.6.1.4.1.10418.26.2.3.2.1.1.15 = INTEGER: 15
.1.3.6.1.4.1.10418.26.2.3.2.1.1.16 = INTEGER: 16
.1.3.6.1.4.1.10418.26.2.3.2.1.2.1 = STRING: "ttyS1"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.2 = STRING: "ttyS2"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.3 = STRING: "ttyS3"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.4 = STRING: "ttyS4"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.5 = STRING: "ttyS5"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.6 = STRING: "ttyS6"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.7 = STRING: "ttyS7"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.8 = STRING: "ttyS8"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.9 = STRING: "ttyS9"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.10 = STRING: "ttyS10"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.11 = STRING: "ttyS11"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.12 = STRING: "ttyS12"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.13 = STRING: "ttyS13"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.14 = STRING: "ttyS14"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.15 = STRING: "ttyS15"
.1.3.6.1.4.1.10418.26.2.3.2.1.2.16 = STRING: "ttyS16"
.1.3.6.1.4.1.10418.26.2.3.2.1.3.1 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.8 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.12 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.3.16 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.4.1 = STRING: "2e-57-c4-p-1"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.2 = STRING: "2e-57-c4-p-2"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.3 = STRING: "2e-57-c4-p-3"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.4 = STRING: "2e-57-c4-p-4"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.5 = STRING: "2e-57-c4-p-5"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.6 = STRING: "2e-57-c4-p-6"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.7 = STRING: "2e-57-c4-p-7"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.8 = STRING: "2e-57-c4-p-8"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.9 = STRING: "2e-57-c4-p-9"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.10 = STRING: "2e-57-c4-p-10"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.11 = STRING: "2e-57-c4-p-11"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.12 = STRING: "2e-57-c4-p-12"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.13 = STRING: "2e-57-c4-p-13"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.14 = STRING: "2e-57-c4-p-14"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.15 = STRING: "2e-57-c4-p-15"
.1.3.6.1.4.1.10418.26.2.3.2.1.4.16 = STRING: "2e-57-c4-p-16"
.1.3.6.1.4.1.10418.26.2.3.2.1.5.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.5.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.6.1 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.2 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.3 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.4 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.5 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.6 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.7 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.8 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.9 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.10 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.11 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.12 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.13 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.14 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.15 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.6.16 = INTEGER: 5
.1.3.6.1.4.1.10418.26.2.3.2.1.7.1 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.2 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.3 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.4 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.5 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.6 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.7 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.8 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.9 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.10 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.11 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.12 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.13 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.14 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.15 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.7.16 = INTEGER: 9600
.1.3.6.1.4.1.10418.26.2.3.2.1.8.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.8.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.9.1 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.2 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.3 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.4 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.5 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.6 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.7 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.8 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.9 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.10 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.11 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.12 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.13 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.14 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.15 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.9.16 = INTEGER: 8
.1.3.6.1.4.1.10418.26.2.3.2.1.10.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.10.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.13 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.15 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.11.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.12.1 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.8 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.12 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.12.16 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.9 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.10 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.11 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.14 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.13.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.13.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.14.1 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.2 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.3 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.4 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.5 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.6 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.7 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.8 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.12 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.14.16 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.1 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.2 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.3 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.4 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.5 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.6 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.7 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.8 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.9 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.10 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.11 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.12 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.15.13 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.14 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.15 = INTEGER: 2
.1.3.6.1.4.1.10418.26.2.3.2.1.15.16 = INTEGER: 1
.1.3.6.1.4.1.10418.26.2.3.2.1.16.1 = INTEGER: 4
.1.3.6.1.4.1.10418.26.2.3.2.1.16.2 = INTEGER: 1870
.1.3.6.1.4.1.10418.26.2.3.2.1.16.3 = INTEGER: 455
.1.3.6.1.4.1.10418.26.2.3.2.1.16.4 = INTEGER: 3132
.1.3.6.1.4.1.10418.26.2.3.2.1.16.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.16.6 = INTEGER: 2867
.1.3.6.1.4.1.10418.26.2.3.2.1.16.7 = INTEGER: 386
.1.3.6.1.4.1.10418.26.2.3.2.1.16.8 = INTEGER: 147
.1.3.6.1.4.1.10418.26.2.3.2.1.16.9 = INTEGER: 355
.1.3.6.1.4.1.10418.26.2.3.2.1.16.10 = INTEGER: 709
.1.3.6.1.4.1.10418.26.2.3.2.1.16.11 = INTEGER: 1986
.1.3.6.1.4.1.10418.26.2.3.2.1.16.12 = INTEGER: 860
.1.3.6.1.4.1.10418.26.2.3.2.1.16.13 = INTEGER: 7
.1.3.6.1.4.1.10418.26.2.3.2.1.16.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.16.15 = INTEGER: 739
.1.3.6.1.4.1.10418.26.2.3.2.1.16.16 = INTEGER: 2062
.1.3.6.1.4.1.10418.26.2.3.2.1.17.1 = INTEGER: 30198
.1.3.6.1.4.1.10418.26.2.3.2.1.17.2 = INTEGER: 85760
.1.3.6.1.4.1.10418.26.2.3.2.1.17.3 = INTEGER: 9012
.1.3.6.1.4.1.10418.26.2.3.2.1.17.4 = INTEGER: 117562
.1.3.6.1.4.1.10418.26.2.3.2.1.17.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.17.6 = INTEGER: 285873
.1.3.6.1.4.1.10418.26.2.3.2.1.17.7 = INTEGER: 49921
.1.3.6.1.4.1.10418.26.2.3.2.1.17.8 = INTEGER: 562
.1.3.6.1.4.1.10418.26.2.3.2.1.17.9 = INTEGER: 27723
.1.3.6.1.4.1.10418.26.2.3.2.1.17.10 = INTEGER: 72153
.1.3.6.1.4.1.10418.26.2.3.2.1.17.11 = INTEGER: 141123
.1.3.6.1.4.1.10418.26.2.3.2.1.17.12 = INTEGER: 14608
.1.3.6.1.4.1.10418.26.2.3.2.1.17.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.17.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.17.15 = INTEGER: 17688
.1.3.6.1.4.1.10418.26.2.3.2.1.17.16 = INTEGER: 64970
.1.3.6.1.4.1.10418.26.2.3.2.1.18.1 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.18.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.1 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.19.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.1 = INTEGER: 3
.1.3.6.1.4.1.10418.26.2.3.2.1.20.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.20.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.1 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.2 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.3 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.4 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.5 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.6 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.7 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.8 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.9 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.10 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.11 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.12 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.13 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.14 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.15 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.3.2.1.21.16 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.5.1.0 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.5.4.0 = INTEGER: 0
.1.3.6.1.4.1.10418.26.2.5.6.0 = INTEGER: 0

View File

@ -1,8 +1,7 @@
*** Settings ***
Documentation hardware::kvm::avocent::acs::8000::snmp::plugin
Library OperatingSystem
Library String
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
@ -91,7 +90,7 @@ Serial Ports
Run Avocent 8000 Plugin
[Arguments] ${mode} ${extraoptions}
${command} Catenate
... perl ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
... ${CENTREON_PLUGINS}
... --plugin=hardware::kvm::avocent::acs::8000::snmp::plugin
... --mode=${mode}
... --hostname=${HOSTADDRESS}

View File

@ -1,37 +1,34 @@
*** Settings ***
Documentation Hardware Sensors APC SNMP plugin
Library OperatingSystem
Library String
Library Examples
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} ${CENTREON_PLUGINS} --plugin=hardware::sensors::apc::snmp::plugin --mode=sensors --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024
${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::sensors::apc::snmp::plugin --mode=sensors --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024
*** Test Cases ***
APC Sensors ${tc}/9
[Tags] hardware Sensors snmp
[Tags] hardware sensors snmp
${command} Catenate
... ${CMD}
... --snmp-community=hardware/sensors/apc/sensors
... --snmp-community=hardware/sensors/apc/snmp/sensors
# Append options to command
${command} Append Option To Command ${command} --warning ${warning}
${command} Append Option To Command ${command} --critical ${critical}
${command} Append Option To Command ${command} --component ${component}
${command} Append Option To Command ${command} --warning ${warning}
${command} Append Option To Command ${command} --critical ${critical}
${command} Append Option To Command ${command} --component ${component}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
#--component 'temperature' --warning='humidity,.,45:65' --critical='humidity,.,35:70'
# --component 'temperature' --warning='humidity,.,45:65' --critical='humidity,.,35:70'
Examples: tc component warning critical expected_result --
... 1 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;;
... 2 _empty_ humidity,.,45:65 _empty_ WARNING: Humidity 'Main Module:Sonde de temperature' is 35 % | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;45:65;;0;100 'hardware.temperature.count'=2;;;;
@ -43,11 +40,10 @@ APC Sensors ${tc}/9
... 8 _empty_ temperature,.,22:25 temperature,.,22:25 OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;22:25;22:25;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;;
... 9 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;;
*** Keywords ***
*** Keywords ***
Append Option To Command
[Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_'
[Arguments] ${cmd} ${option} ${value}
${value} Set Variable If '${value}' == '_empty_' '' ${value}
[return] ${cmd} ${option}=${value}
RETURN ${cmd} ${option}=${value}

View File

@ -1,39 +1,36 @@
*** Settings ***
Documentation Hardware UPS Sputnik SNMP plugin
Library OperatingSystem
Library String
Library Examples
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} ${CENTREON_PLUGINS} --plugin=hardware::ups::inmatics::sputnik::snmp::plugin
${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::inmatics::sputnik::snmp::plugin
*** Test Cases ***
Sputnik UPS - Environment ${tc}/9
[Tags] hardware UPS snmp
[Tags] hardware ups snmp
${command} Catenate
... ${CMD}
... --mode=environment
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=hardware-ups/hardware-ups-sputnik
... --snmp-community=hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik
# Append options to command
${opt} Append Option --warning-temperature ${w_temperature}
${opt} Append Option --warning-temperature ${w_temperature}
${command} Catenate ${command} ${opt}
${opt} Append Option --critical-temperature ${c_temperature}
${opt} Append Option --critical-temperature ${c_temperature}
${command} Catenate ${command} ${opt}
${opt} Append Option --warning-humidity ${w_humidity}
${opt} Append Option --warning-humidity ${w_humidity}
${command} Catenate ${command} ${opt}
${opt} Append Option --critical-humidity ${c_humidity}
${opt} Append Option --critical-humidity ${c_humidity}
${command} Catenate ${command} ${opt}
${opt} Append Option --filter-id ${filter_id}
${opt} Append Option --filter-id ${filter_id}
${command} Catenate ${command} ${opt}
${output} Run ${command}
@ -54,10 +51,10 @@ Sputnik UPS - Environment ${tc}/9
... 8 2 30 50 50 70 UNKNOWN: No sensors found.
... 9 1 _empty_ _empty_ _empty_ _empty_ OK: 'Sensor 1': temperature 20.06 C, humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;;;; 'Sensor 1#environment.humidity.percentage'=33%;;;0;100
*** Keywords ***
Append Option
[Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_'
[Arguments] ${option} ${value}
${value} Set Variable If '${value}' == '_empty_' '' ${value}
[return] ${option}=${value}
RETURN ${option}=${value}

View File

@ -0,0 +1,61 @@
.1.3.6.1.4.1.54661.1.1.1.1.1.1.1.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.2.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.3.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.4.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.5.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.6.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.7.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.8.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.9.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.10.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.11.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.12.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.13.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.14.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.15.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.16.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.17.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.18.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.19.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.20.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.1.1.21.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.22.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.23.0 = INTEGER: 2
.1.3.6.1.4.1.54661.1.1.1.1.1.1.24.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.1.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.2.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.3.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.4.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.5.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.6.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.7.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.8.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.9.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.10.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.11.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.12.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.13.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.14.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.15.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.16.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.17.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.18.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.19.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.20.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.21.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.22.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.23.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.2.1.24.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.6.1.1.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.6.1.2.0 = INTEGER: 3
.1.3.6.1.4.1.54661.1.1.1.1.6.2.1.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.6.2.2.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.6.2.3.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.1.6.2.4.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.2.1.0 = INTEGER: 1
.1.3.6.1.4.1.54661.1.1.1.2.2.1.2.1 = INTEGER: 2006
.1.3.6.1.4.1.54661.1.1.1.2.2.1.3.1 = INTEGER: 33
.1.3.6.1.4.1.54661.1.1.1.2.3.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.2.4.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.2.5.0 = INTEGER: 0
.1.3.6.1.4.1.54661.1.1.1.3.1.0 = INTEGER: 0

View File

@ -1,41 +1,38 @@
*** Settings ***
Documentation Hardware UPS Socomec Netvision SNMP plugin
Library OperatingSystem
Library String
Library Examples
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} ${CENTREON_PLUGINS} --plugin=hardware::ups::socomec::netvision::snmp::plugin
${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::socomec::netvision::snmp::plugin
*** Test Cases ***
Battery ${tc}/4
[Tags] hardware UPS snmp
[Tags] hardware ups snmp
${command} Catenate
... ${CMD}
... --mode=battery
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=hardware/ups/socomec/netvision/snmp/mode/battery
... --snmp-community=hardware/ups/socomec/netvision/snmp/battery
# Append options to command
${opt} Append Option --warning-temperature ${w_temperature}
${command} Catenate ${command} ${opt}
${opt} Append Option --critical-temperature ${c_temperature}
${command} Catenate ${command} ${opt}
${opt} Append Option --warning-temperature ${w_temperature}
${command} Catenate ${command} ${opt}
${opt} Append Option --critical-temperature ${c_temperature}
${command} Catenate ${command} ${opt}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
... ${command} \nWrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
Examples: tc w_temperature c_temperature expected_result --
... 1 30 50 OK: battery status is normal - charge remaining: 100% (0 minutes remaining) | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:30;0:50;;
@ -43,10 +40,10 @@ Battery ${tc}/4
... 3 10 20 CRITICAL: temperature: 22 C | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:10;0:20;;
... 4 _empty_ _empty_ OK: battery status is normal - charge remaining: 100% (0 minutes remaining) | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;;;;
*** Keywords ***
Append Option
[Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_'
[Arguments] ${option} ${value}
${value} Set Variable If '${value}' == '_empty_' '' ${value}
[return] ${option}=${value}
RETURN ${option}=${value}

View File

@ -0,0 +1,98 @@
*** Settings ***
Documentation Hardware UPS standard SNMP plugin
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS} --plugin=hardware::ups::standard::rfc1628::snmp::plugin
&{ups_standard_test_with_values}
... snmpcommunity=hardware/ups/standard/snmp/ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid=
... result=OK: All input lines are ok | '1#line.input.frequence.hertz'=49.9Hz;;;; '1#line.input.voltage.volt'=233V;;;; '1#line.input.current.ampere'=0A;;;; '1#line.input.power.watt'=0W;;;; '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;; '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;;
&{ups_standard_test_critical_with_null_values}
... snmpcommunity=hardware/ups/standard/snmp/ups-standard-null-val
... warningpower='215:'
... criticalcurrent='@0:214'
... warningvoltage='@0:214'
... warningfrequence='@0:214'
... excludeid=
... result=CRITICAL: Input Line '1' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '2' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '3' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W | '1#line.input.frequence.hertz'=0Hz;@0:214;;; '1#line.input.voltage.volt'=0V;@0:214;;; '1#line.input.current.ampere'=0A;;@0:214;; '1#line.input.power.watt'=0W;215:;;; '2#line.input.frequence.hertz'=0Hz;@0:214;;; '2#line.input.voltage.volt'=0V;@0:214;;; '2#line.input.current.ampere'=0A;;@0:214;; '2#line.input.power.watt'=0W;215:;;; '3#line.input.frequence.hertz'=0Hz;@0:214;;; '3#line.input.voltage.volt'=0V;@0:214;;; '3#line.input.current.ampere'=0A;;@0:214;; '3#line.input.power.watt'=0W;215:;;;
&{ups_standard_test_with_exclude_option_1}
... snmpcommunity=hardware/ups/standard/snmp/ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid='1,2'
... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;;
&{ups_standard_test_with_exclude_option_2}
... snmpcommunity=hardware/ups/standard/snmp/ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid='1, 2'
... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;;
&{ups_standard_test_with_exclude_option_3}
... snmpcommunity=hardware/ups/standard/snmp/ups-standard
... warningpower=
... criticalcurrent=
... warningvoltage=
... warningfrequence=
... excludeid='1 ,3'
... result=OK: Input Line '2' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;;
@{ups_standard_tests}
... &{ups_standard_test_with_values}
... &{ups_standard_test_critical_with_null_values}
... &{ups_standard_test_with_exclude_option_1}
... &{ups_standard_test_with_exclude_option_2}
... &{ups_standard_test_with_exclude_option_3}
*** Test Cases ***
Hardware UPS Standard SNMP input lines
[Documentation] Hardware UPS standard SNMP input lines
[Tags] hardware ups snmp
FOR ${ups_standard_test} IN @{ups_standard_tests}
${command} Catenate
... ${CMD}
... --mode=input-lines
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=${ups_standard_test.snmpcommunity}
${length} Get Length ${ups_standard_test.warningpower}
IF ${length} > 0
${command} Catenate ${command} --warning-power=${ups_standard_test.warningpower}
END
${length} Get Length ${ups_standard_test.criticalcurrent}
IF ${length} > 0
${command} Catenate ${command} --critical-current=${ups_standard_test.criticalcurrent}
END
${length} Get Length ${ups_standard_test.warningvoltage}
IF ${length} > 0
${command} Catenate ${command} --warning-voltage=${ups_standard_test.warningvoltage}
END
${length} Get Length ${ups_standard_test.warningfrequence}
IF ${length} > 0
${command} Catenate ${command} --warning-frequence=${ups_standard_test.warningfrequence}
END
${length} Get Length ${ups_standard_test.excludeid}
IF ${length} > 0
${command} Catenate ${command} --exclude-id=${ups_standard_test.excludeid}
END
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${ups_standard_test.result}
... Wrong output result for compliance of ${ups_standard_test.result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
END

View File

@ -0,0 +1,75 @@
*** Settings ***
Documentation Network Aruba Instant SNMP plugin - AP Usage
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS} --plugin=network::aruba::instant::snmp::plugin --mode=ap-usage --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024
&{ap_usage_test_1}
... documentation=Test AP usage without filters
... snmpcommunity=network/aruba/instant/snmp/ap-usage
... filtercounters=
... filtername=
... warningclients=
... criticalclients=
... result=OK: total access points: 5 - All access points are ok | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100
&{ap_usage_test_2}
... documentation=Test AP usage with filter on clients
... snmpcommunity=network/aruba/instant/snmp/ap-usage
... filtercounters=clients
... filtername=
... warningclients=
... criticalclients=
... result=OK: All access points are ok | 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 4#clients.current.count'=11;;;0; 'AP Sotano#clients.current.count'=4;;;0;
&{ap_usage_test_3}
... documentation=Test AP usage with filter on clients and filter on name
... snmpcommunity=network/aruba/instant/snmp/ap-usage
... filtercounters=clients
... filtername=Piso 4
... warningclients=
... criticalclients=
... result=OK: Access Point 'AP Piso 4' Current Clients: 11 | 'AP Piso 4#clients.current.count'=11;;;0;
&{ap_usage_test_4}
... documentation=Test AP usage without filters with warning when less than 20 clients
... snmpcommunity=network/aruba/instant/snmp/ap-usage
... filtercounters=
... filtername=
... warningclients=20:
... criticalclients=
... result=WARNING: Access Point 'AP Piso 1' Current Clients: 4 - Access Point 'AP Piso 2' Current Clients: 17 - Access Point 'AP Piso 3' Current Clients: 14 - Access Point 'AP Piso 4' Current Clients: 11 - Access Point 'AP Sotano' Current Clients: 4 | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;20:;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;20:;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;20:;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;20:;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;20:;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100
@{ap_usage_tests}
... &{ap_usage_test_1}
... &{ap_usage_test_2}
... &{ap_usage_test_3}
... &{ap_usage_test_4}
*** Test Cases ***
Network Aruba Instant SNMP plugin
[Documentation] AP Usage
[Tags] network aruba snmp
FOR ${ap_usage_tc} IN @{ap_usage_tests}
${command} Catenate
... ${CMD}
... --filter-counters='${ap_usage_tc.filtercounters}'
... --filter-name='${ap_usage_tc.filtername}'
... --warning-clients='${ap_usage_tc.warningclients}'
... --critical-clients='${ap_usage_tc.criticalclients}'
... --snmp-community=${ap_usage_tc.snmpcommunity}
Log To Console ${command}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${ap_usage_tc.result}
... Wrong output result for compliance of ${ap_usage_tc.result}{\n}Command output:{\n}${output}{\n}{\n}{\n}
END

View File

@ -0,0 +1,18 @@
.1.3.6.1.4.1.12356.101.4.8.2.1.2.1 = STRING: "MonitorWAN1"
.1.3.6.1.4.1.12356.101.4.8.2.1.2.2 = STRING: "MonitorWAN2"
.1.3.6.1.4.1.12356.101.4.8.2.1.2.3 = STRING: "MonitorWAN3"
.1.3.6.1.4.1.12356.101.4.8.2.1.3.1 = STRING: "0"
.1.3.6.1.4.1.12356.101.4.8.2.1.3.2 = STRING: "0"
.1.3.6.1.4.1.12356.101.4.8.2.1.3.3 = STRING: "1"
.1.3.6.1.4.1.12356.101.4.8.2.1.4.1 = STRING: "39.739"
.1.3.6.1.4.1.12356.101.4.8.2.1.4.2 = STRING: "46.446"
.1.3.6.1.4.1.12356.101.4.8.2.1.4.3 = STRING: "0.000"
.1.3.6.1.4.1.12356.101.4.8.2.1.5.1 = STRING: "0.096"
.1.3.6.1.4.1.12356.101.4.8.2.1.5.2 = STRING: "1.868"
.1.3.6.1.4.1.12356.101.4.8.2.1.5.3 = STRING: "0.000"
.1.3.6.1.4.1.12356.101.4.8.2.1.8.1 = STRING: "0%"
.1.3.6.1.4.1.12356.101.4.8.2.1.8.2 = STRING: "1%"
.1.3.6.1.4.1.12356.101.4.8.2.1.8.3 = STRING: "100%"
.1.3.6.1.4.1.12356.101.4.8.2.1.9.1 = STRING: "root"
.1.3.6.1.4.1.12356.101.4.8.2.1.9.2 = STRING: "root"
.1.3.6.1.4.1.12356.101.4.8.2.1.9.3 = STRING: "root"

View File

@ -0,0 +1,432 @@
*** Settings ***
Documentation Network Fortinet Fortigate SNMP plugin
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin
# Test simple usage of the linkmonitor mode
&{fortinet_fortigate_linkmonitor_test1}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with filter-id option set to 3
&{fortinet_fortigate_linkmonitor_test2}
... filterid=3
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with filter-name option set to MonitorWAN1
&{fortinet_fortigate_linkmonitor_test3}
... filterid=
... filtername='MonitorWAN1'
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=OK: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive, latency: 39.739ms, jitter: 0.096ms, packet loss: 0.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0;
# Test linkmonitor mode with filter-vdom option set to 'root'
&{fortinet_fortigate_linkmonitor_test4}
... filterid=
... filtername=
... filtervdom='root'
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with custom-perf-data-instances option set to '%(name) %(id)'
&{fortinet_fortigate_linkmonitor_test5}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances='%(name) %(id)'
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~1#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~1#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~1#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~2#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~2#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~2#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~3#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with unknown-status option set to '%{state} eq "alive"'
&{fortinet_fortigate_linkmonitor_test6}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus='\%{state} eq "alive"'
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead UNKNOWN: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-status option set to '%{state} eq "alive"'
&{fortinet_fortigate_linkmonitor_test7}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus='\%{state} eq "alive"'
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with critical-status option set to '%{state} eq "alive"'
&{fortinet_fortigate_linkmonitor_test8}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus='\%{state} eq "alive"'
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-latency option set to 40
&{fortinet_fortigate_linkmonitor_test9}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=40
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;0:40;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;0:40;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;0:40;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with critical-latency option set to 40
&{fortinet_fortigate_linkmonitor_test10}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=40
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;0:40;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;0:40;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;0:40;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-jitter option set to 1
&{fortinet_fortigate_linkmonitor_test11}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=1
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;0:1;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;0:1;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;0:1;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with critical-jitter option set to 1
&{fortinet_fortigate_linkmonitor_test12}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=1
... warningpacketloss=
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;0:1;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;0:1;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;0:1;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0;
# Test linkmonitor mode with warning-packetloss option set to 0.5
&{fortinet_fortigate_linkmonitor_test13}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=0.5
... criticalpacketloss=
... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;0:0.5;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;0:0.5;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;0:0.5;;0;
# Test linkmonitor mode with critical-packetloss option set to 0.5
&{fortinet_fortigate_linkmonitor_test14}
... filterid=
... filtername=
... filtervdom=
... customperfdatainstances=
... unknownstatus=
... warningstatus=
... criticalstatus=
... warninglatency=
... criticallatency=
... warningjitter=
... criticaljitter=
... warningpacketloss=
... criticalpacketloss=0.5
... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;0:0.5;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;0:0.5;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;0:0.5;0;
@{fortinet_fortigate_linkmonitor_tests}
... &{fortinet_fortigate_linkmonitor_test1}
... &{fortinet_fortigate_linkmonitor_test2}
... &{fortinet_fortigate_linkmonitor_test3}
... &{fortinet_fortigate_linkmonitor_test4}
... &{fortinet_fortigate_linkmonitor_test5}
... &{fortinet_fortigate_linkmonitor_test6}
... &{fortinet_fortigate_linkmonitor_test7}
... &{fortinet_fortigate_linkmonitor_test8}
... &{fortinet_fortigate_linkmonitor_test9}
... &{fortinet_fortigate_linkmonitor_test10}
... &{fortinet_fortigate_linkmonitor_test11}
... &{fortinet_fortigate_linkmonitor_test12}
... &{fortinet_fortigate_linkmonitor_test13}
... &{fortinet_fortigate_linkmonitor_test14}
# Test simple usage of the list-linkmonitors mode
&{fortinet_fortigate_listlinkmonitors_test1}
... filterstate=
... filtername=
... filtervdom=
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead]
# Test list-linkmonitors mode with filter-name option set to MonitorWAN1
&{fortinet_fortigate_listlinkmonitors_test2}
... filterstate=
... filtername='MonitorWAN1'
... filtervdom=
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]
# Test list-linkmonitors mode with filter-state option set to alive
&{fortinet_fortigate_listlinkmonitors_test3}
... filterstate='alive'
... filtername=
... filtervdom=
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]
# Test list-linkmonitors mode with filter-vdom option set to root
&{fortinet_fortigate_listlinkmonitors_test4}
... filterstate=
... filtername=
... filtervdom='root'
... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead]
@{fortinet_fortigate_listlinkmonitors_tests}
... &{fortinet_fortigate_listlinkmonitors_test1}
... &{fortinet_fortigate_listlinkmonitors_test2}
... &{fortinet_fortigate_listlinkmonitors_test3}
... &{fortinet_fortigate_listlinkmonitors_test4}
*** Test Cases ***
Network Fortinet Fortigate SNMP link monitor
[Documentation] Network Fortinet Fortigate SNMP link-monitor
[Tags] network fortinet fortigate snmp
FOR ${fortinet_fortigate_linkmonitor_test} IN @{fortinet_fortigate_linkmonitor_tests}
${command} Catenate
... ${CMD}
... --mode=link-monitor
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=network/fortinet/fortigate/snmp/linkmonitor
${length} Get Length ${fortinet_fortigate_linkmonitor_test.filterid}
IF ${length} > 0
${command} Catenate ${command} --filter-id=${fortinet_fortigate_linkmonitor_test.filterid}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtername}
IF ${length} > 0
${command} Catenate ${command} --filter-name=${fortinet_fortigate_linkmonitor_test.filtername}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtervdom}
IF ${length} > 0
${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_linkmonitor_test.filtervdom}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.customperfdatainstances}
IF ${length} > 0
${command} Catenate
... ${command}
... --custom-perfdata-instances=${fortinet_fortigate_linkmonitor_test.customperfdatainstances}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.unknownstatus}
IF ${length} > 0
${command} Catenate
... ${command}
... --unknown-status=${fortinet_fortigate_linkmonitor_test.unknownstatus}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningstatus}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-status=${fortinet_fortigate_linkmonitor_test.warningstatus}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalstatus}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-status=${fortinet_fortigate_linkmonitor_test.criticalstatus}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warninglatency}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-latency=${fortinet_fortigate_linkmonitor_test.warninglatency}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticallatency}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-latency=${fortinet_fortigate_linkmonitor_test.criticallatency}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningjitter}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-jitter=${fortinet_fortigate_linkmonitor_test.warningjitter}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticaljitter}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-jitter=${fortinet_fortigate_linkmonitor_test.criticaljitter}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningpacketloss}
IF ${length} > 0
${command} Catenate
... ${command}
... --warning-packet-loss=${fortinet_fortigate_linkmonitor_test.warningpacketloss}
END
${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalpacketloss}
IF ${length} > 0
${command} Catenate
... ${command}
... --critical-packet-loss=${fortinet_fortigate_linkmonitor_test.criticalpacketloss}
END
${output} Run ${command}
Log To Console . no_newline=true
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${fortinet_fortigate_linkmonitor_test.result}
... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_linkmonitor_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n}
... values=False
END
Network Fortinet Fortigate SNMP list link monitor
[Documentation] Network Fortinet Fortigate SNMP list-linkmonitors
[Tags] network fortinet fortigate snmp
FOR ${fortinet_fortigate_listlinkmonitors_test} IN @{fortinet_fortigate_listlinkmonitors_tests}
${command} Catenate
... ${CMD}
... --mode=list-link-monitors
... --hostname=127.0.0.1
... --snmp-version=2c
... --snmp-port=2024
... --snmp-community=network/fortinet/fortigate/snmp/linkmonitor
${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filterstate}
IF ${length} > 0
${command} Catenate
... ${command}
... --filter-state=${fortinet_fortigate_listlinkmonitors_test.filterstate}
END
${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtername}
IF ${length} > 0
${command} Catenate
... ${command}
... --filter-name=${fortinet_fortigate_listlinkmonitors_test.filtername}
END
${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtervdom}
IF ${length} > 0
${command} Catenate
... ${command}
... --filter-vdom=${fortinet_fortigate_listlinkmonitors_test.filtervdom}
END
${output} Run ${command}
Log To Console . no_newline=true
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${fortinet_fortigate_listlinkmonitors_test.result}
... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_listlinkmonitors_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n}
... values=False
END

View File

@ -0,0 +1,59 @@
*** Settings ***
Documentation Linux Local list-systemdservices
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin
${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/'
*** Test Cases ***
List-Systemdservices v219 ${tc}/4
[Documentation] Systemd version < 248
[Tags] os linux local
${command} Catenate
... ${CMD}
... --mode=list-systemdservices
... --command-path=${CURDIR}${/}systemd-219
... --filter-name='${filtername}'
... --filter-description='${filterdescription}'
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n
Examples: tc filtername filterdescription expected_result --
... 1 toto ${EMPTY} List systemd services:
... 2 NetworkManager.service ${EMPTY} List systemd services: \n\'NetworkManager.service\' [desc = Network Manager] [load = loaded] [active = active] [sub = running]
... 3 ${EMPTY} toto List systemd services:
... 4 ${EMPTY} Permit User Sessions List systemd services: \n\'systemd-user-sessions.service\' [desc = Permit User Sessions] [load = loaded] [active = active] [sub = exited]
List-Systemdservices v252 ${tc}/4
[Documentation] Systemd version >= 248
[Tags] os linux local
${command} Catenate
... ${CMD}
... --mode=list-systemdservices
... --command-path=${CURDIR}${/}systemd-252
... --filter-name='${filtername}'
... --filter-description='${filterdescription}'
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n
Examples: tc filtername filterdescription expected_result --
... 1 toto ${EMPTY} List systemd services:
... 2 NetworkManager.service ${EMPTY} List systemd services: \n\'NetworkManager.service\' [desc = Network Manager] [load = loaded] [active = active] [sub = running]
... 3 ${EMPTY} toto List systemd services:
... 4 ${EMPTY} Permit User Sessions List systemd services: \n\'systemd-user-sessions.service\' [desc = Permit User Sessions] [load = loaded] [active = active] [sub = exited]

View File

@ -0,0 +1,97 @@
*** Settings ***
Documentation Linux Local Systemd-sc-status
# systemd changed the output format of the command starting from version 252, so we need to check for a systemd version and use the correct parameter.
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin
*** Test Cases ***
Systemd-sc-status v219 ${tc}/15
[Documentation] Systemd version < 248
[Tags] os linux local
${command} Catenate
... ${CMD}
... --mode=systemd-sc-status
... --command-path=${CURDIR}${/}systemd-219
... --filter-name='${filter}'
... --exclude-name='${exclude}'
... --warning-status='${w_stat}'
... --critical-status='${c_stat}'
... --warning-total-running='${w_running}'
... --critical-total-running='${c_running}'
... --warning-total-dead='${w_dead}'
... --critical-total-dead='${c_dead}'
... --warning-total-exited='${w_exited}'
... --critical-total-exited='${c_exited}'
... --warning-total-failed='${w_failed}'
... --critical-total-failed='${c_failed}'
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n
Examples: tc filter exclude w_stat c_stat w_running c_running w_dead c_dead w_exited c_exited w_failed c_failed expected_result --
... 1 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 34, Total Failed: 1, Total Dead: 97, Total Exited: 25 - All services are ok | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220
... 2 toto ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} UNKNOWN: No service found.
... 3 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2
... 4 ${EMPTY} Manager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 33, Total Failed: 1, Total Dead: 97, Total Exited: 24 - All services are ok | 'total_running'=33;;;0;218 'total_failed'=1;;;0;218 'total_dead'=97;;;0;218 'total_exited'=24;;;0;218
... 5 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2
... 8 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Running: 34 | 'total_running'=34;0:0;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220
... 9 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Running: 34 | 'total_running'=34;;0:0;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220
... 10 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Dead: 97 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;0:0;;0;220 'total_exited'=25;;;0;220
... 11 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Dead: 97 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;0:0;0;220 'total_exited'=25;;;0;220
... 12 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Exited: 25 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;0:0;;0;220
... 13 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} CRITICAL: Total Exited: 25 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;0:0;0;220
... 14 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} WARNING: Total Failed: 1 | 'total_running'=34;;;0;220 'total_failed'=1;0:0;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220
... 15 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 CRITICAL: Total Failed: 1 | 'total_running'=34;;;0;220 'total_failed'=1;;0:0;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220
Systemd-sc-status v252 ${tc}/15
[Documentation] Systemd version >= 248
[Tags] os linux local
${command} Catenate
... ${CMD}
... --mode=systemd-sc-status
... --command-path=${CURDIR}${/}systemd-252
... --filter-name='${filter}'
... --exclude-name='${exclude}'
... --warning-status='${w_stat}'
... --critical-status='${c_stat}'
... --warning-total-running='${w_running}'
... --critical-total-running='${c_running}'
... --warning-total-dead='${w_dead}'
... --critical-total-dead='${c_dead}'
... --warning-total-exited='${w_exited}'
... --critical-total-exited='${c_exited}'
... --warning-total-failed='${w_failed}'
... --critical-total-failed='${c_failed}'
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... Wrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n
Examples: tc filter exclude w_stat c_stat w_running c_running w_dead c_dead w_exited c_exited w_failed c_failed expected_result --
... 1 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 31, Total Failed: 4, Total Dead: 108, Total Exited: 19 - All services are ok | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258
... 2 toto ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} UNKNOWN: No service found.
... 3 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2
... 4 ${EMPTY} Manager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 30, Total Failed: 4, Total Dead: 108, Total Exited: 18 - All services are ok | 'total_running'=30;;;0;256 'total_failed'=4;;;0;256 'total_dead'=108;;;0;256 'total_exited'=18;;;0;256
... 5 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2
... 8 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Running: 31 | 'total_running'=31;0:2;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258
... 9 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Running: 31 | 'total_running'=31;;0:2;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258
... 10 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Dead: 108 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;0:2;;0;258 'total_exited'=19;;;0;258
... 11 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Dead: 108 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;0:2;0;258 'total_exited'=19;;;0;258
... 12 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Exited: 19 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;0:2;;0;258
... 13 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} CRITICAL: Total Exited: 19 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;0:2;0;258
... 14 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} WARNING: Total Failed: 4 | 'total_running'=31;;;0;258 'total_failed'=4;0:2;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258
... 15 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 CRITICAL: Total Failed: 4 | 'total_running'=31;;;0;258 'total_failed'=4;;0:2;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258

View File

@ -0,0 +1,237 @@
#!/bin/bash
case "$*" in
--version)
cat <<'EOF'
systemd 219
+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN
EOF
;;
'-a --no-pager --plain --no-legend')
cat <<'EOF'
proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System
dev-disk-by\x2did-scsi\x2d0QEMU_QEMU_HARDDISK_drive\x2dscsi0\x2d0\x2d0\x2d0.device loaded active plugged QEMU_HARDDISK
dev-disk-by\x2did-scsi\x2d0QEMU_QEMU_HARDDISK_drive\x2dscsi0\x2d0\x2d0\x2d0\x2dpart1.device loaded active plugged QEMU_HARDDISK 1
dev-disk-by\x2dpath-pci\x2d0000:00:04.0\x2dscsi\x2d0:0:0:0.device loaded active plugged QEMU_HARDDISK
dev-disk-by\x2dpath-pci\x2d0000:00:04.0\x2dscsi\x2d0:0:0:0\x2dpart1.device loaded active plugged QEMU_HARDDISK 1
dev-disk-by\x2duuid-85ea49f1\x2d50e9\x2d4dc2\x2d83e4\x2d76499dffa11b.device loaded active plugged QEMU_HARDDISK 1
dev-sda.device loaded active plugged QEMU_HARDDISK
dev-sda1.device loaded active plugged QEMU_HARDDISK 1
dev-ttyS0.device loaded active plugged /dev/ttyS0
dev-ttyS1.device loaded active plugged /dev/ttyS1
dev-ttyS2.device loaded active plugged /dev/ttyS2
dev-ttyS3.device loaded active plugged /dev/ttyS3
dev-virtio\x2dports-org.qemu.guest_agent.0.device loaded active plugged /dev/virtio-ports/org.qemu.guest_agent.0
dev-vport2p1.device loaded active plugged /dev/vport2p1
sys-devices-pci0000:00-0000:00:03.0-virtio0-net-eth0.device loaded active plugged Virtio network device
sys-devices-pci0000:00-0000:00:04.0-virtio1-host2-target2:0:0-2:0:0:0-block-sda-sda1.device loaded active plugged QEMU_HARDDISK 1
sys-devices-pci0000:00-0000:00:04.0-virtio1-host2-target2:0:0-2:0:0:0-block-sda.device loaded active plugged QEMU_HARDDISK
sys-devices-pci0000:00-0000:00:05.0-virtio2-virtio\x2dports-vport2p1.device loaded active plugged /sys/devices/pci0000:00/0000:00:05.0/virtio2/v
sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
sys-devices-pnp0-00:04-tty-ttyS0.device loaded active plugged /sys/devices/pnp0/00:04/tty/ttyS0
sys-module-configfs.device loaded active plugged /sys/module/configfs
sys-subsystem-net-devices-eth0.device loaded active plugged Virtio network device
-.mount loaded active mounted /
dev-hugepages.mount loaded active mounted Huge Pages File System
dev-mqueue.mount loaded active mounted POSIX Message Queue File System
proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File System
run-user-0.mount loaded active mounted /run/user/0
sys-fs-fuse-connections.mount loaded inactive dead FUSE Control File System
sys-kernel-config.mount loaded active mounted Configuration File System
sys-kernel-debug.mount loaded active mounted Debug File System
sysroot.mount not-found inactive dead sysroot.mount
tmp.mount loaded inactive dead Temporary Directory
var-run.mount not-found inactive dead var-run.mount
brandbot.path loaded active waiting Flexible branding
systemd-ask-password-console.path loaded inactive dead Dispatch Password Requests to Console Director
systemd-ask-password-plymouth.path loaded active waiting Forward Password Requests to Plymouth Director
systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Wa
session-187554.scope loaded active running Session 187554 of user root
atd.service loaded active running Job spooling tools
auditd.service loaded active running Security Auditing Service
brandbot.service loaded inactive dead Flexible Branding Service
cbd.service loaded active running Centreon Broker watchdog
centcore.service not-found inactive dead centcore.service
centengine.service loaded active running Centreon Engine
centreon-map.service loaded failed failed Centreon Studio map server
centreon-nrpe3.service loaded active running Nagios Remote Program Executor
centreon.service loaded active exited One Service to rule them all.
chronyd.service loaded active running NTP client/server
cloud-config.service loaded active exited Apply the settings specified in cloud-config
cloud-final.service loaded active exited Execute cloud user/final scripts
cloud-init-local.service loaded active exited Initial cloud-init job (pre-networking)
cloud-init.service loaded active exited Initial cloud-init job (metadata service crawl
cpupower.service loaded inactive dead Configure CPU power related settings
crond.service loaded active running Command Scheduler
dbus.service loaded active running D-Bus System Message Bus
display-manager.service not-found inactive dead display-manager.service
dm-event.service loaded inactive dead Device-mapper event daemon
dracut-cmdline.service loaded inactive dead dracut cmdline hook
dracut-initqueue.service loaded inactive dead dracut initqueue hook
dracut-mount.service loaded inactive dead dracut mount hook
dracut-pre-mount.service loaded inactive dead dracut pre-mount hook
dracut-pre-pivot.service loaded inactive dead dracut pre-pivot and cleanup hook
dracut-pre-trigger.service loaded inactive dead dracut pre-trigger hook
dracut-pre-udev.service loaded inactive dead dracut pre-udev hook
dracut-shutdown.service loaded inactive dead Restore /run/initramfs
ebtables.service loaded inactive dead Ethernet Bridge Filtering tables
emergency.service loaded inactive dead Emergency Shell
exim.service not-found inactive dead exim.service
firewalld.service loaded active running firewalld - dynamic firewall daemon
getty@tty1.service loaded active running Getty on tty1
gorgoned.service loaded active running Centreon Gorgone
haproxy.service loaded active running HAProxy Load Balancer
httpd24-httpd.service loaded active running The Apache HTTP Server
initrd-cleanup.service loaded inactive dead Cleaning Up and Shutting Down Daemons
initrd-parse-etc.service loaded inactive dead Reload Configuration from the Real Root
initrd-switch-root.service loaded inactive dead Switch Root
initrd-udevadm-cleanup-db.service loaded inactive dead Cleanup udevd DB
ip6tables.service not-found inactive dead ip6tables.service
ipset.service not-found inactive dead ipset.service
iptables.service not-found inactive dead iptables.service
irqbalance.service loaded inactive dead irqbalance daemon
kdump.service loaded active exited Crash recovery kernel arming
kmod-static-nodes.service loaded active exited Create list of required static device nodes fo
lvm2-activation.service not-found inactive dead lvm2-activation.service
lvm2-lvmetad.service loaded active running LVM2 metadata daemon
lvm2-lvmpolld.service loaded inactive dead LVM2 poll daemon
lvm2-monitor.service loaded active exited Monitoring of LVM2 mirrors, snapshots etc. usi
mariadb.service loaded active running MariaDB 10.5.17 database server
microcode.service loaded inactive dead Load CPU microcode update
network.service loaded active exited LSB: Bring up/down networking
NetworkManager-wait-online.service loaded active exited Network Manager Wait Online
NetworkManager.service loaded active running Network Manager
ntpd.service not-found inactive dead ntpd.service
ntpdate.service not-found inactive dead ntpdate.service
php-fpm.service loaded active running The PHP FastCGI Process Manager
plymouth-quit-wait.service loaded inactive dead Wait for Plymouth Boot Screen to Quit
plymouth-quit.service loaded inactive dead Terminate Plymouth Boot Screen
plymouth-read-write.service loaded inactive dead Tell Plymouth To Write Out Runtime Data
plymouth-start.service loaded inactive dead Show Plymouth Boot Screen
plymouth-switch-root.service loaded inactive dead Plymouth switch root service
polkit.service loaded active running Authorization Manager
postfix.service loaded active running Postfix Mail Transport Agent
rc-local.service loaded inactive dead /etc/rc.d/rc.local Compatibility
rescue.service loaded inactive dead Rescue Shell
rhel-autorelabel-mark.service loaded inactive dead Mark the need to relabel after reboot
rhel-autorelabel.service loaded inactive dead Relabel all filesystems, if necessary
rhel-configure.service loaded inactive dead Reconfigure the system on administrator reques
rhel-dmesg.service loaded active exited Dump dmesg to /var/log/dmesg
rhel-domainname.service loaded active exited Read and set NIS domainname from /etc/sysconfi
rhel-import-state.service loaded active exited Import network configuration from initramfs
rhel-loadmodules.service loaded inactive dead Load legacy module configuration
rhel-readonly.service loaded active exited Configure read-only root support
rpcbind.service loaded active running RPC bind service
rsyslog.service loaded active running System Logging Service
selinux-policy-migrate-local-changes@targeted.service loaded inactive dead Migrate local SELinux policy changes from the
sendmail.service not-found inactive dead sendmail.service
snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daem
sntp.service not-found inactive dead sntp.service
sshd-keygen.service loaded inactive dead OpenSSH Server Key Generation
sshd.service loaded active running OpenSSH server daemon
syslog.service not-found inactive dead syslog.service
systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console
systemd-ask-password-plymouth.service loaded inactive dead Forward Password Requests to Plymouth
systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall
systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats
systemd-firstboot.service loaded inactive dead First Boot Wizard
systemd-fsck-root.service loaded active exited File System Check on Root Device
systemd-hwdb-update.service loaded inactive dead Rebuild Hardware Database
systemd-initctl.service loaded inactive dead /dev/initctl Compatibility Daemon
systemd-journal-catalog-update.service loaded inactive dead Rebuild Journal Catalog
systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage
systemd-journald.service loaded active running Journal Service
systemd-logind.service loaded active running Login Service
systemd-machine-id-commit.service loaded inactive dead Commit a transient machine-id on disk
systemd-modules-load.service loaded inactive dead Load Kernel Modules
systemd-random-seed.service loaded active exited Load/Save Random Seed
systemd-readahead-collect.service loaded inactive dead Collect Read-Ahead Data
systemd-readahead-done.service loaded inactive dead Stop Read-Ahead Data Collection
systemd-readahead-replay.service loaded inactive dead Replay Read-Ahead Data
systemd-reboot.service loaded inactive dead Reboot
systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
systemd-shutdownd.service loaded inactive dead Delayed Shutdown Service
systemd-sysctl.service loaded active exited Apply Kernel Variables
systemd-sysusers.service not-found inactive dead systemd-sysusers.service
systemd-timesyncd.service not-found inactive dead systemd-timesyncd.service
systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories
systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev
systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories
systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
systemd-udevd.service loaded active running udev Kernel Device Manager
systemd-update-done.service loaded inactive dead Update is Completed
systemd-update-utmp-runlevel.service loaded inactive dead Update UTMP about System Runlevel Changes
systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown
systemd-user-sessions.service loaded active exited Permit User Sessions
systemd-vconsole-setup.service loaded active exited Setup Virtual Console
tuned.service loaded active running Dynamic System Tuning Daemon
xdm.service not-found inactive dead xdm.service
ypbind.service not-found inactive dead ypbind.service
yppasswdd.service not-found inactive dead yppasswdd.service
ypserv.service not-found inactive dead ypserv.service
ypxfrd.service not-found inactive dead ypxfrd.service
-.slice loaded active active Root Slice
system-getty.slice loaded active active system-getty.slice
system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice loaded active active system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x
system.slice loaded active active System Slice
user-0.slice loaded active active User Slice of root
user.slice loaded active active User and Session Slice
dbus.socket loaded active running D-Bus System Message Bus Socket
dm-event.socket loaded active listening Device-mapper event daemon FIFOs
lvm2-lvmetad.socket loaded active running LVM2 metadata daemon socket
lvm2-lvmpolld.socket loaded active listening LVM2 poll daemon socket
nrpe.socket not-found inactive dead nrpe.socket
rpcbind.socket loaded active running RPCbind Server Activation Socket
sshd.socket loaded inactive dead OpenSSH Server Socket
syslog.socket loaded inactive dead Syslog Socket
systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
systemd-journald.socket loaded active running Journal Socket
systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
systemd-udevd-control.socket loaded active running udev Control Socket
systemd-udevd-kernel.socket loaded active running udev Kernel Socket
basic.target loaded active active Basic System
cloud-config.target loaded active active Cloud-config availability
cloud-init.target loaded active active Cloud-init target
cryptsetup.target loaded active active Local Encrypted Volumes
emergency.target loaded inactive dead Emergency Mode
final.target loaded inactive dead Final Step
firewalld.target not-found inactive dead firewalld.target
getty-pre.target loaded inactive dead Login Prompts (Pre)
getty.target loaded active active Login Prompts
graphical.target loaded inactive dead Graphical Interface
initrd-fs.target loaded inactive dead Initrd File Systems
initrd-root-fs.target loaded inactive dead Initrd Root File System
initrd-switch-root.target loaded inactive dead Switch Root
initrd.target loaded inactive dead Initrd Default Target
local-fs-pre.target loaded active active Local File Systems (Pre)
local-fs.target loaded active active Local File Systems
multi-user.target loaded active active Multi-User System
network-online.target loaded active active Network is Online
network-pre.target loaded active active Network (Pre)
network.target loaded active active Network
nss-lookup.target loaded inactive dead Host and Network Name Lookups
nss-user-lookup.target loaded inactive dead User and Group Name Lookups
paths.target loaded active active Paths
remote-fs-pre.target loaded inactive dead Remote File Systems (Pre)
remote-fs.target loaded active active Remote File Systems
rescue.target loaded inactive dead Rescue Mode
rpcbind.target loaded active active RPC Port Mapper
shutdown.target loaded inactive dead Shutdown
slices.target loaded active active Slices
sockets.target loaded active active Sockets
swap.target loaded active active Swap
sysinit.target loaded active active System Initialization
syslog.target not-found inactive dead syslog.target
time-sync.target loaded inactive dead System Time Synchronized
timers.target loaded active active Timers
umount.target loaded inactive dead Unmount All Filesystems
systemd-readahead-done.timer loaded inactive dead Stop Read-Ahead Data Collection 10s After Comp
systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
EOF
;;
*)
echo "Unknown option"
;;
esac

View File

@ -0,0 +1,275 @@
#!/bin/bash
case "$*" in
--version)
cat <<'EOF'
systemd 252 (252-18.el9)
+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified
EOF
;;
'-a --no-pager --plain --legend=false')
cat <<'EOF'
boot.automount not-found inactive dead boot.automount
proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File Syst…
dev-disk-by\x2ddiskseq-1.device loaded active plugged VBOX_HARDDISK
dev-disk-by\x2did-ata\x2dVBOX_HARDDISK_VBd2… loaded active plugged VBOX_HARDDISK
dev-disk-by\x2did-ata\x2dVBOX_HARDDISK_VBd2… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2did-ata\x2dVBOX_HARDDISK_VBd2… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2did-scsi\x2d0ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK
dev-disk-by\x2did-scsi\x2d0ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2did-scsi\x2d0ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2did-scsi\x2d1ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK
dev-disk-by\x2did-scsi\x2d1ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2did-scsi\x2d1ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2did-scsi\x2dSATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK
dev-disk-by\x2did-scsi\x2dSATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2did-scsi\x2dSATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2dpartuuid-44ac7039\x2d2ef4\x2… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2dpartuuid-4d2e7c69\x2d19ea\x2… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK
dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK
dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 1
dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 2
dev-disk-by\x2duuid-04468d69\x2ddd58\x2d4fc… loaded active plugged VBOX_HARDDISK 2
dev-rfkill.device loaded active plugged /dev/rfkill
dev-sda.device loaded active plugged VBOX_HARDDISK
dev-sda1.device loaded active plugged VBOX_HARDDISK 1
dev-sda2.device loaded active plugged VBOX_HARDDISK 2
dev-ttyS0.device loaded active plugged /dev/ttyS0
dev-ttyS1.device loaded active plugged /dev/ttyS1
dev-ttyS2.device loaded active plugged /dev/ttyS2
dev-ttyS3.device loaded active plugged /dev/ttyS3
sys-devices-pci0000:00-0000:00:03.0-net-enp… loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10…
sys-devices-pci0000:00-0000:00:08.0-net-enp… loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10…
sys-devices-pci0000:00-0000:00:0d.0-ata3-ho… loaded active plugged VBOX_HARDDISK 1
sys-devices-pci0000:00-0000:00:0d.0-ata3-ho… loaded active plugged VBOX_HARDDISK 2
sys-devices-pci0000:00-0000:00:0d.0-ata3-ho… loaded active plugged VBOX_HARDDISK
sys-devices-platform-serial8250-tty-ttyS0.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0
sys-devices-platform-serial8250-tty-ttyS1.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
sys-devices-platform-serial8250-tty-ttyS2.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
sys-devices-platform-serial8250-tty-ttyS3.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
sys-devices-virtual-misc-rfkill.device loaded active plugged /sys/devices/virtual/misc/rfkill
sys-module-configfs.device loaded active plugged /sys/module/configfs
sys-module-fuse.device loaded active plugged /sys/module/fuse
sys-subsystem-net-devices-enp0s3.device loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10…
sys-subsystem-net-devices-enp0s8.device loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10…
-.mount loaded active mounted Root Mount
boot.mount not-found inactive dead boot.mount
dev-hugepages.mount loaded active mounted Huge Pages File System
dev-mqueue.mount loaded active mounted POSIX Message Queue File System
home.mount not-found inactive dead home.mount
proc-fs-nfsd.mount loaded inactive dead NFSD configuration filesystem
proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File Syst…
run-credentials-systemd\x2dsysctl.service.m… loaded active mounted /run/credentials/systemd-sysctl.service
run-credentials-systemd\x2dtmpfiles\x2dsetu… loaded active mounted /run/credentials/systemd-tmpfiles-setup.ser…
run-credentials-systemd\x2dtmpfiles\x2dsetu… loaded active mounted /run/credentials/systemd-tmpfiles-setup-dev…
run-user-0.mount loaded active mounted /run/user/0
sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System
sys-kernel-config.mount loaded active mounted Kernel Configuration File System
sys-kernel-debug.mount loaded active mounted Kernel Debug File System
sys-kernel-tracing.mount loaded active mounted Kernel Trace File System
sysroot.mount not-found inactive dead sysroot.mount
tmp.mount loaded inactive dead Temporary Directory /tmp
vagrant.mount loaded failed failed /vagrant
var-lib-nfs-rpc_pipefs.mount loaded active mounted RPC Pipe File System
systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Direc…
systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory…
init.scope loaded active running System and Service Manager
session-3.scope loaded active running Session 3 of User root
auditd.service loaded active running Security Auditing Service
auth-rpcgss-module.service loaded inactive dead Kernel Module supporting RPCSEC_GSS
autofs.service not-found inactive dead autofs.service
cbd.service loaded active running Centreon Broker watchdog
centengine.service loaded inactive dead Centreon Engine
centreon.service loaded active exited One Service to rule them all.
centreontrapd.service loaded active running Centreon Trapd Daemon is a Centreon program…
chronyd.service loaded active running NTP client/server
crond.service loaded active running Command Scheduler
dbus-broker.service loaded active running D-Bus System Message Bus
display-manager.service not-found inactive dead display-manager.service
dnf-makecache.service loaded inactive dead dnf makecache
dracut-cmdline.service loaded inactive dead dracut cmdline hook
dracut-initqueue.service loaded inactive dead dracut initqueue hook
dracut-mount.service loaded inactive dead dracut mount hook
dracut-pre-mount.service loaded inactive dead dracut pre-mount hook
dracut-pre-pivot.service loaded inactive dead dracut pre-pivot and cleanup hook
dracut-pre-trigger.service loaded inactive dead dracut pre-trigger hook
dracut-pre-udev.service loaded inactive dead dracut pre-udev hook
dracut-shutdown-onfailure.service loaded inactive dead Service executing upon dracut-shutdown fail…
dracut-shutdown.service loaded active exited Restore /run/initramfs on shutdown
emergency.service loaded inactive dead Emergency Shell
getty@tty1.service loaded active running Getty on tty1
gorgoned.service loaded active running Centreon Gorgone
gssproxy.service loaded active running GSSAPI Proxy Daemon
httpd-init.service not-found inactive dead httpd-init.service
httpd.service loaded active running The Apache HTTP Server
import-state.service loaded active exited Import network configuration from initramfs
initrd-cleanup.service loaded inactive dead Cleaning Up and Shutting Down Daemons
initrd-parse-etc.service loaded inactive dead Mountpoints Configured in the Real Root
initrd-switch-root.service loaded inactive dead Switch Root
initrd-udevadm-cleanup-db.service loaded inactive dead Cleanup udev Database
irqbalance.service loaded active running irqbalance daemon
kdump.service loaded active exited Crash recovery kernel arming
kmod-static-nodes.service loaded active exited Create List of Static Device Nodes
ldconfig.service loaded inactive dead Rebuild Dynamic Linker Cache
loadmodules.service loaded inactive dead Load legacy module configuration
logrotate.service loaded failed failed Rotate log files
mariadb.service loaded active running MariaDB 10.5.24 database server
microcode.service loaded inactive dead Load CPU microcode update
modprobe@configfs.service loaded inactive dead Load Kernel Module configfs
modprobe@drm.service loaded inactive dead Load Kernel Module drm
modprobe@fuse.service loaded inactive dead Load Kernel Module fuse
network.service not-found inactive dead network.service
NetworkManager-wait-online.service loaded active exited Network Manager Wait Online
NetworkManager.service loaded active running Network Manager
nfs-idmapd.service loaded inactive dead NFSv4 ID-name mapping service
nfs-mountd.service loaded inactive dead NFS Mount Daemon
nfs-server.service loaded inactive dead NFS server and services
nfs-utils.service loaded inactive dead NFS server and client services
nfsdcld.service loaded inactive dead NFSv4 Client Tracking Daemon
nis-domainname.service loaded active exited Read and set NIS domainname from /etc/sysco…
ntpd.service not-found inactive dead ntpd.service
ntpdate.service not-found inactive dead ntpdate.service
php-fpm.service loaded active running The PHP FastCGI Process Manager
plymouth-quit-wait.service not-found inactive dead plymouth-quit-wait.service
plymouth-start.service not-found inactive dead plymouth-start.service
rc-local.service loaded inactive dead /etc/rc.d/rc.local Compatibility
rescue.service loaded inactive dead Rescue Shell
rpc-gssd.service loaded inactive dead RPC security service for NFS client and ser…
rpc-statd-notify.service loaded active exited Notify NFS peers of a restart
rpc-statd.service loaded inactive dead NFS status monitor for NFSv2/3 locking.
rpc-svcgssd.service not-found inactive dead rpc-svcgssd.service
rpcbind.service loaded active running RPC Bind
rsyslog.service loaded active running System Logging Service
selinux-autorelabel-mark.service loaded inactive dead Mark the need to relabel after reboot
snmpd.service loaded active running Simple Network Management Protocol (SNMP) D…
snmptrapd.service loaded active running Simple Network Management Protocol (SNMP) T…
sntp.service not-found inactive dead sntp.service
sshd-keygen@ecdsa.service loaded inactive dead OpenSSH ecdsa Server Key Generation
sshd-keygen@ed25519.service loaded inactive dead OpenSSH ed25519 Server Key Generation
sshd-keygen@rsa.service loaded inactive dead OpenSSH rsa Server Key Generation
sshd.service loaded active running OpenSSH server daemon
sssd-kcm.service loaded inactive dead SSSD Kerberos Cache Manager
sssd.service loaded inactive dead System Security Services Daemon
syslog.service not-found inactive dead syslog.service
systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console
systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall
systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats
systemd-boot-system-token.service loaded inactive dead Store a System Token in an EFI Variable
systemd-firstboot.service loaded inactive dead First Boot Wizard
systemd-fsck-root.service loaded inactive dead File System Check on Root Device
systemd-hwdb-update.service loaded inactive dead Rebuild Hardware Database
systemd-initctl.service loaded inactive dead initctl Compatibility Daemon
systemd-journal-catalog-update.service loaded inactive dead Rebuild Journal Catalog
systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage
systemd-journald.service loaded active running Journal Service
systemd-logind.service loaded active running User Login Management
systemd-machine-id-commit.service loaded inactive dead Commit a transient machine-id on disk
systemd-modules-load.service loaded inactive dead Load Kernel Modules
systemd-network-generator.service loaded active exited Generate network units from Kernel command …
systemd-pcrphase-initrd.service loaded inactive dead TPM2 PCR Barrier (initrd)
systemd-pcrphase-sysinit.service loaded inactive dead TPM2 PCR Barrier (Initialization)
systemd-pcrphase.service loaded inactive dead TPM2 PCR Barrier (User)
systemd-random-seed.service loaded active exited Load/Save Random Seed
systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
systemd-repart.service loaded inactive dead Repartition Root Disk
systemd-rfkill.service loaded inactive dead Load/Save RF Kill Switch Status
systemd-sysctl.service loaded active exited Apply Kernel Variables
systemd-sysext.service loaded inactive dead Merge System Extension Images into /usr/ an…
systemd-sysusers.service loaded inactive dead Create System Users
systemd-timesyncd.service not-found inactive dead systemd-timesyncd.service
systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories
systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev
systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories
systemd-tmpfiles.service not-found inactive dead systemd-tmpfiles.service
systemd-udev-settle.service loaded inactive dead Wait for udev To Complete Device Initializa…
systemd-udev-trigger.service loaded active exited Coldplug All udev Devices
systemd-udevd.service loaded active running Rule-based Manager for Device Events and Fi…
systemd-update-done.service loaded inactive dead Update is Completed
systemd-update-utmp-runlevel.service loaded inactive dead Record Runlevel Change in UTMP
systemd-update-utmp.service loaded active exited Record System Boot/Shutdown in UTMP
systemd-user-sessions.service loaded active exited Permit User Sessions
systemd-vconsole-setup.service loaded inactive dead Setup Virtual Console
user-runtime-dir@0.service loaded active exited User Runtime Directory /run/user/0
user@0.service loaded active running User Manager for UID 0
vboxadd-service.service loaded failed failed vboxadd-service.service
vboxadd.service loaded failed failed vboxadd.service
ypbind.service not-found inactive dead ypbind.service
yppasswdd.service not-found inactive dead yppasswdd.service
ypserv.service not-found inactive dead ypserv.service
ypxfrd.service not-found inactive dead ypxfrd.service
-.slice loaded active active Root Slice
system-getty.slice loaded active active Slice /system/getty
system-modprobe.slice loaded active active Slice /system/modprobe
system-sshd\x2dkeygen.slice loaded active active Slice /system/sshd-keygen
system.slice loaded active active System Slice
user-0.slice loaded active active User Slice of UID 0
user.slice loaded active active User and Session Slice
dbus.socket loaded active running D-Bus System Message Bus Socket
rpcbind.socket loaded active running RPCbind Server Activation Socket
sssd-kcm.socket loaded active listening SSSD Kerberos Cache Manager responder socket
syslog.socket loaded inactive dead Syslog Socket
systemd-coredump.socket loaded active listening Process Core Dump Socket
systemd-initctl.socket loaded active listening initctl Compatibility Named Pipe
systemd-journald-dev-log.socket loaded active running Journal Socket (/dev/log)
systemd-journald.socket loaded active running Journal Socket
systemd-rfkill.socket loaded active listening Load/Save RF Kill Switch Status /dev/rfkill…
systemd-udevd-control.socket loaded active running udev Control Socket
systemd-udevd-kernel.socket loaded active running udev Kernel Socket
basic.target loaded active active Basic System
blockdev@dev-disk-by\x2duuid-04468d69\x2ddd… loaded inactive dead Block Device Preparation for /dev/disk/by-u…
cryptsetup-pre.target loaded inactive dead Local Encrypted Volumes (Pre)
cryptsetup.target loaded active active Local Encrypted Volumes
emergency.target loaded inactive dead Emergency Mode
first-boot-complete.target loaded inactive dead First Boot Complete
getty-pre.target loaded inactive dead Preparation for Logins
getty.target loaded active active Login Prompts
graphical.target loaded inactive dead Graphical Interface
initrd-fs.target loaded inactive dead Initrd File Systems
initrd-root-device.target loaded inactive dead Initrd Root Device
initrd-root-fs.target loaded inactive dead Initrd Root File System
initrd-switch-root.target loaded inactive dead Switch Root
initrd-usr-fs.target loaded inactive dead Initrd /usr File System
initrd.target loaded inactive dead Initrd Default Target
integritysetup.target loaded active active Local Integrity Protected Volumes
local-fs-pre.target loaded active active Preparation for Local File Systems
local-fs.target loaded active active Local File Systems
multi-user.target loaded active active Multi-User System
network-online.target loaded active active Network is Online
network-pre.target loaded active active Preparation for Network
network.target loaded active active Network
nfs-client.target loaded active active NFS client services
nss-lookup.target loaded inactive dead Host and Network Name Lookups
nss-user-lookup.target loaded active active User and Group Name Lookups
paths.target loaded active active Path Units
remote-cryptsetup.target loaded inactive dead Remote Encrypted Volumes
remote-fs-pre.target loaded active active Preparation for Remote File Systems
remote-fs.target loaded inactive dead Remote File Systems
remote-veritysetup.target loaded inactive dead Remote Verity Protected Volumes
rescue.target loaded inactive dead Rescue Mode
rpc_pipefs.target loaded active active rpc_pipefs.target
rpcbind.target loaded active active RPC Port Mapper
shutdown.target loaded inactive dead System Shutdown
slices.target loaded active active Slice Units
sockets.target loaded active active Socket Units
sshd-keygen.target loaded active active sshd-keygen.target
swap.target loaded active active Swaps
sysinit.target loaded active active System Initialization
syslog.target not-found inactive dead syslog.target
time-set.target loaded inactive dead System Time Set
time-sync.target loaded inactive dead System Time Synchronized
timers.target loaded active active Timer Units
umount.target loaded inactive dead Unmount All Filesystems
veritysetup-pre.target loaded inactive dead Local Verity Protected Volumes (Pre)
veritysetup.target loaded active active Local Verity Protected Volumes
dnf-makecache.timer loaded active waiting dnf makecache --timer
logrotate.timer loaded active waiting Daily rotation of log files
systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
EOF
;;
*)
echo "Unknown option"
;;
esac

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,66 @@
*** Settings ***
Documentation Network Interfaces
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS}
... --plugin=os::linux::snmp::plugin
... --mode=interfaces
... --hostname=127.0.0.1
... --snmp-port=2024
... --snmp-community=os/linux/snmp/network-interfaces
... --statefile-dir=/tmp/
${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/'
*** Test Cases ***
Interfaces by id ${tc}/5
[Tags] os linux network interfaces
${command} Catenate
... ${CMD}
... --interface='${filter}'
... ${extra_options}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n
Examples: tc filter extra_options expected_result --
... 1 1 ${EMPTY} OK: Interface 'lo' Status : up (admin: up)
... 2 1,3 --add-traffic OK: All interfaces are ok
... 3 1,3 --add-traffic OK: All interfaces are ok | 'traffic_in_lo'=0.00b/s;;;0;10000000 'traffic_out_lo'=0.00b/s;;;0;10000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000
... 4 2,3,4 --add-traffic OK: All interfaces are ok
... 5 2,3,4 --add-traffic OK: All interfaces are ok | 'traffic_in_eth0'=0.00b/s;;;0;1000000000 'traffic_out_eth0'=0.00b/s;;;0;1000000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 'traffic_in_eth2'=0.00b/s;;;0;1000000000 'traffic_out_eth2'=0.00b/s;;;0;1000000000
# theese test are linked together. The test 2 create the cache file in /tmp/, and the test 3 use this cache file
# to calculate traffic throughput by second.
Interfaces by id regexp ${tc}/6
[Tags] os linux network interfaces
${command} Catenate
... ${CMD}
... --interface='${filter}'
... --regex-id
... ${extra_options}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n
Examples: tc filter extra_options expected_result --
... 1 ^1$ ${EMPTY} OK: Interface 'lo' Status : up (admin: up)
... 2 1 ${EMPTY} OK: Interface 'lo' Status : up (admin: up)
... 3 [13] --add-traffic OK: All interfaces are ok
... 4 [13] --add-traffic OK: All interfaces are ok | 'traffic_in_lo'=0.00b/s;;;0;10000000 'traffic_out_lo'=0.00b/s;;;0;10000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000
... 5 [234] --add-traffic OK: All interfaces are ok
... 6 [234] --add-traffic OK: All interfaces are ok | 'traffic_in_eth0'=0.00b/s;;;0;1000000000 'traffic_out_eth0'=0.00b/s;;;0;1000000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 'traffic_in_eth2'=0.00b/s;;;0;1000000000 'traffic_out_eth2'=0.00b/s;;;0;1000000000

File diff suppressed because it is too large Load Diff

View File

@ -1,26 +1,23 @@
*** Settings ***
Documentation OS Linux SNMP plugin
Library OperatingSystem
Library XML
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::snmp::plugin
${CMD} ${CENTREON_PLUGINS} --plugin=os::linux::snmp::plugin
&{list_diskio_test1}
... snmpcommunity=os_linux_snmp_plugin
... nbresults=10
... snmpcommunity=os/linux/snmp/list-diskio
... nbresults=10
&{list_diskio_test2}
... snmpcommunity=os_linux_snmp_plugin_2
... nbresults=4
... snmpcommunity=os/linux/snmp/list-diskio-2
... nbresults=4
@{list_diskio_tests}
... &{list_diskio_test1}
... &{list_diskio_test2}
... &{list_diskio_test1}
... &{list_diskio_test2}
*** Test Cases ***

View File

@ -0,0 +1,840 @@
.1.3.6.1.4.1.77.1.2.3.1.1.5.80.68.70.50.52 = STRING: "PDF24"
.1.3.6.1.4.1.77.1.2.3.1.1.5.80.111.119.101.114 = STRING: "Power"
.1.3.6.1.4.1.77.1.2.3.1.1.6.80.97.110.71.80.83 = STRING: "PanGPS"
.1.3.6.1.4.1.77.1.2.3.1.1.6.83.101.114.118.101.114 = STRING: "Server"
.1.3.6.1.4.1.77.1.2.3.1.1.6.84.104.101.109.101.115 = STRING: "Themes"
.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain"
.1.3.6.1.4.1.77.1.2.3.1.1.9.65.112.115.73.110.115.83.118.99 = STRING: "ApsInsSvc"
.1.3.6.1.4.1.77.1.2.3.1.1.9.73.80.32.72.101.108.112.101.114 = STRING: "IP Helper"
.1.3.6.1.4.1.77.1.2.3.1.1.9.84.101.108.101.112.104.111.110.121 = STRING: "Telephony"
.1.3.6.1.4.1.77.1.2.3.1.1.9.87.101.98.67.108.105.101.110.116 = STRING: "WebClient"
.1.3.6.1.4.1.77.1.2.3.1.1.10.68.78.83.32.67.108.105.101.110.116 = STRING: "DNS Client"
.1.3.6.1.4.1.77.1.2.3.1.1.10.68.97.116.97.32.85.115.97.103.101 = STRING: "Data Usage"
.1.3.6.1.4.1.77.1.2.3.1.1.10.83.109.97.114.116.32.67.97.114.100 = STRING: "Smart Card"
.1.3.6.1.4.1.77.1.2.3.1.1.11.68.72.67.80.32.67.108.105.101.110.116 = STRING: "DHCP Client"
.1.3.6.1.4.1.77.1.2.3.1.1.11.83.121.85.73.85.69.120.116.83.118.99 = STRING: "SyUIUExtSvc"
.1.3.6.1.4.1.77.1.2.3.1.1.11.84.105.109.101.32.66.114.111.107.101.114 = STRING: "Time Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.11.87.111.114.107.115.116.97.116.105.111.110 = STRING: "Workstation"
.1.3.6.1.4.1.77.1.2.3.1.1.12.69.108.97.110.32.83.101.114.118.105.99.101 = STRING: "Elan Service"
.1.3.6.1.4.1.77.1.2.3.1.1.12.83.78.77.80.32.83.101.114.118.105.99.101 = STRING: "SNMP Service"
.1.3.6.1.4.1.77.1.2.3.1.1.12.85.115.101.114.32.77.97.110.97.103.101.114 = STRING: "User Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = STRING: "AVCTP service"
.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging"
.1.3.6.1.4.1.77.1.2.3.1.1.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = STRING: "Logi Options+"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = STRING: "Phone Service"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = STRING: "Plug and Play"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = STRING: "Print Spooler"
.1.3.6.1.4.1.77.1.2.3.1.1.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = STRING: "Windows Audio"
.1.3.6.1.4.1.77.1.2.3.1.1.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = STRING: "SSDP Discovery"
.1.3.6.1.4.1.77.1.2.3.1.1.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = STRING: "Task Scheduler"
.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = STRING: "Windows Backup"
.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = STRING: "Windows Search"
.1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = STRING: "Security Center"
.1.3.6.1.4.1.77.1.2.3.1.1.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = STRING: "Storage Service"
.1.3.6.1.4.1.77.1.2.3.1.1.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WLAN AutoConfig"
.1.3.6.1.4.1.77.1.2.3.1.1.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WWAN AutoConfig"
.1.3.6.1.4.1.77.1.2.3.1.1.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = STRING: "Sync Host_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = STRING: "CNG Key Isolation"
.1.3.6.1.4.1.77.1.2.3.1.1.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = STRING: "COM+ Event System"
.1.3.6.1.4.1.77.1.2.3.1.1.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = STRING: "Lenovo PM Service"
.1.3.6.1.4.1.77.1.2.3.1.1.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Windows Event Log"
.1.3.6.1.4.1.77.1.2.3.1.1.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = STRING: "Credential Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = STRING: "IPsec Policy Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = STRING: "Microsoft Passport"
.1.3.6.1.4.1.77.1.2.3.1.1.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = STRING: "VMware NAT Service"
.1.3.6.1.4.1.77.1.2.3.1.1.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = STRING: "Contact Data_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Geolocation Service"
.1.3.6.1.4.1.77.1.2.3.1.1.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = STRING: "RPC Endpoint Mapper"
.1.3.6.1.4.1.77.1.2.3.1.1.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = STRING: "VMware DHCP Service"
.1.3.6.1.4.1.77.1.2.3.1.1.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = STRING: "Web Account Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = STRING: "Application Identity"
.1.3.6.1.4.1.77.1.2.3.1.1.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Data Sharing Service"
.1.3.6.1.4.1.77.1.2.3.1.1.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = STRING: "Host Network Service"
.1.3.6.1.4.1.77.1.2.3.1.1.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = STRING: "LenovoVantageService"
.1.3.6.1.4.1.77.1.2.3.1.1.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = STRING: "Network List Service"
.1.3.6.1.4.1.77.1.2.3.1.1.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = STRING: "PrintWorkflow_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = STRING: "System Events Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = STRING: "User Profile Service"
.1.3.6.1.4.1.77.1.2.3.1.1.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = STRING: "Base Filtering Engine"
.1.3.6.1.4.1.77.1.2.3.1.1.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = STRING: "Epson Scanner Service"
.1.3.6.1.4.1.77.1.2.3.1.1.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = STRING: "FirmwareUpdateService"
.1.3.6.1.4.1.77.1.2.3.1.1.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = STRING: "FusionInventory Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Local Session Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = STRING: "Realtek Audio Service"
.1.3.6.1.4.1.77.1.2.3.1.1.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = STRING: "SQL Server VSS Writer"
.1.3.6.1.4.1.77.1.2.3.1.1.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = STRING: "TCP/IP NetBIOS Helper"
.1.3.6.1.4.1.77.1.2.3.1.1.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = STRING: "Cryptographic Services"
.1.3.6.1.4.1.77.1.2.3.1.1.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Display Policy Service"
.1.3.6.1.4.1.77.1.2.3.1.1.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = STRING: "Dolby DAX2 API Service"
.1.3.6.1.4.1.77.1.2.3.1.1.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = STRING: "Application Information"
.1.3.6.1.4.1.77.1.2.3.1.1.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = STRING: "Certificate Propagation"
.1.3.6.1.4.1.77.1.2.3.1.1.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = STRING: "Cherry Device Interface"
.1.3.6.1.4.1.77.1.2.3.1.1.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = STRING: "Diagnostic Service Host"
.1.3.6.1.4.1.77.1.2.3.1.1.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = STRING: "Remote Desktop Services"
.1.3.6.1.4.1.77.1.2.3.1.1.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = STRING: "Thunderbolt(TM) Service"
.1.3.6.1.4.1.77.1.2.3.1.1.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = STRING: "User Data Access_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Radio Management Service"
.1.3.6.1.4.1.77.1.2.3.1.1.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = STRING: "Shell Hardware Detection"
.1.3.6.1.4.1.77.1.2.3.1.1.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = STRING: "State Repository Service"
.1.3.6.1.4.1.77.1.2.3.1.1.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = STRING: "User Data Storage_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = STRING: "Windows Security Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Diagnostic Policy Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = STRING: "Lenovo EasyResume Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = STRING: "Network Connection Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = STRING: "Security Accounts Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = STRING: "WatchGuard SSLVPN Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = STRING: "Windows Biometric Service"
.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = STRING: "Windows Defender Firewall"
.1.3.6.1.4.1.77.1.2.3.1.1.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Device Association Service"
.1.3.6.1.4.1.77.1.2.3.1.1.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = STRING: "Network Location Awareness"
.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Windows Connection Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = STRING: "Windows Font Cache Service"
.1.3.6.1.4.1.77.1.2.3.1.1.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Display Enhancement Service"
.1.3.6.1.4.1.77.1.2.3.1.1.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = STRING: "Lenovo Hotkey Client Loader"
.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = STRING: "OpenVPN Interactive Service"
.1.3.6.1.4.1.77.1.2.3.1.1.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = STRING: "Payments and NFC/SE Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = STRING: "Remote Procedure Call (RPC)"
.1.3.6.1.4.1.77.1.2.3.1.1.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = STRING: "Update Orchestrator Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = STRING: "Adobe Acrobat Update Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = STRING: "DCOM Server Process Launcher"
.1.3.6.1.4.1.77.1.2.3.1.1.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = STRING: "Encrypting File System (EFS)"
.1.3.6.1.4.1.77.1.2.3.1.1.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = STRING: "HP Print Scan Doctor Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = STRING: "Microsoft IIS Administration"
.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = STRING: "Microsoft Passport Container"
.1.3.6.1.4.1.77.1.2.3.1.1.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = STRING: "Remote Desktop Configuration"
.1.3.6.1.4.1.77.1.2.3.1.1.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "VMware Authorization Service"
.1.3.6.1.4.1.77.1.2.3.1.1.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = Hex-STRING: 74 65 73 74 73 65 72 76 69 63 65 20 C3 BC C3 A4 C3 B6 C3 A1 C3 A0 20 28 31 32 33 29
.1.3.6.1.4.1.77.1.2.3.1.1.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Clipboard User Service_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = STRING: "FortiClient Service Scheduler"
.1.3.6.1.4.1.77.1.2.3.1.1.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = STRING: "SonicWall NetExtender Service"
.1.3.6.1.4.1.77.1.2.3.1.1.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = STRING: "Human Interface Device Service"
.1.3.6.1.4.1.77.1.2.3.1.1.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Network Virtualization Service"
.1.3.6.1.4.1.77.1.2.3.1.1.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = STRING: "Windows Audio Endpoint Builder"
.1.3.6.1.4.1.77.1.2.3.1.1.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = STRING: "Application Host Helper Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = STRING: "Microsoft Store Install Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = STRING: "Microsoft Update Health Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Network Store Interface Service"
.1.3.6.1.4.1.77.1.2.3.1.1.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = STRING: "OpenVPN Agent agent_ovpnconnect"
.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = STRING: "Windows Image Acquisition (WIA)"
.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Windows License Manager Service"
.1.3.6.1.4.1.77.1.2.3.1.1.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = STRING: "Client License Service (ClipSVC)"
.1.3.6.1.4.1.77.1.2.3.1.1.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = STRING: "Distributed Link Tracking Client"
.1.3.6.1.4.1.77.1.2.3.1.1.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = STRING: "Function Discovery Provider Host"
.1.3.6.1.4.1.77.1.2.3.1.1.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Remote Access Connection Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = STRING: "AppX Deployment Service (AppXSVC)"
.1.3.6.1.4.1.77.1.2.3.1.1.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Capability Access Manager Service"
.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = STRING: "Internet Connection Sharing (ICS)"
.1.3.6.1.4.1.77.1.2.3.1.1.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Event Notification Service"
.1.3.6.1.4.1.77.1.2.3.1.1.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "BitLocker Drive Encryption Service"
.1.3.6.1.4.1.77.1.2.3.1.1.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = STRING: "Connected Devices Platform Service"
.1.3.6.1.4.1.77.1.2.3.1.1.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Intel(R) PROSet/Wireless Event Log"
.1.3.6.1.4.1.77.1.2.3.1.1.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = STRING: "Windows Management Instrumentation"
.1.3.6.1.4.1.77.1.2.3.1.1.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = STRING: "IKE and AuthIP IPsec Keying Modules"
.1.3.6.1.4.1.77.1.2.3.1.1.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = STRING: "Remote Procedure Call (RPC) Locator"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "SonicWall Client Protection Service"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = STRING: "System Guard Runtime Monitor Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Interface Foundation Service"
.1.3.6.1.4.1.77.1.2.3.1.1.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = STRING: "DevQuery Background Discovery Broker"
.1.3.6.1.4.1.77.1.2.3.1.1.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Service"
.1.3.6.1.4.1.77.1.2.3.1.1.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access AlwaysOn Service"
.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = STRING: "Microsoft Intune Management Extension"
.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Office Click-to-Run Service"
.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = STRING: "Microsoft Windows SMS Router Service."
.1.3.6.1.4.1.77.1.2.3.1.1.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = STRING: "Background Tasks Infrastructure Service"
.1.3.6.1.4.1.77.1.2.3.1.1.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = STRING: "Function Discovery Resource Publication"
.1.3.6.1.4.1.77.1.2.3.1.1.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = STRING: "Program Compatibility Assistant Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = STRING: "Connected User Experiences and Telemetry"
.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HDCP Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HECI Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Graphics Command Center Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = STRING: "Secure Socket Tunneling Protocol Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = STRING: "WinHTTP Web Proxy Auto-Discovery Service"
.1.3.6.1.4.1.77.1.2.3.1.1.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = STRING: "Windows Push Notifications System Service"
.1.3.6.1.4.1.77.1.2.3.1.1.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Intel(R) HD Graphics Control Panel Service"
.1.3.6.1.4.1.77.1.2.3.1.1.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Lenovo Intelligent Thermal Solution Service"
.1.3.6.1.4.1.77.1.2.3.1.1.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Touch Keyboard and Handwriting Panel Service"
.1.3.6.1.4.1.77.1.2.3.1.1.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Connected Devices Platform User Service_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Windows Push Notifications User Service_17ac85"
.1.3.6.1.4.1.77.1.2.3.1.1.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = STRING: "Remote Desktop Services UserMode Port Redirector"
.1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = STRING: "Windows Presentation Foundation Font Cache 3.0.0.0"
.1.3.6.1.4.1.77.1.2.3.1.1.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Windows Defender Advanced Threat Protection Service"
.1.3.6.1.4.1.77.1.2.3.1.1.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = STRING: "Intel(R) Management Engine WMI Provider Registration"
.1.3.6.1.4.1.77.1.2.3.1.1.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Platform and Thermal Framework service"
.1.3.6.1.4.1.77.1.2.3.1.1.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Network Inspection Service"
.1.3.6.1.4.1.77.1.2.3.1.1.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Application Loader Host Interface Service"
.1.3.6.1.4.1.77.1.2.3.1.1.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Management and Security Application Local Management Service"
.1.3.6.1.4.1.77.1.2.3.1.1.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Device Management Wireless Application Protocol (WAP) Push message Routing Service"
.1.3.6.1.4.1.77.1.2.3.1.2.5.80.68.70.50.52 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.5.80.111.119.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.6.80.97.110.71.80.83 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.6.83.101.114.118.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.6.84.104.101.109.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.65.112.115.73.110.115.83.118.99 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.73.80.32.72.101.108.112.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.84.101.108.101.112.104.111.110.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.9.87.101.98.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.3.5.80.68.70.50.52 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.5.80.111.119.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.6.80.97.110.71.80.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.6.83.101.114.118.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.6.84.104.101.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.84.101.108.101.112.104.111.110.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.5.80.68.70.50.52 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.5.80.111.119.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.6.80.97.110.71.80.83 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.6.83.101.114.118.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.6.84.104.101.109.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.65.112.115.73.110.115.83.118.99 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.73.80.32.72.101.108.112.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.9.87.101.98.67.108.105.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.5.80.68.70.50.52 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.5.80.111.119.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.80.97.110.71.80.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.84.104.101.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1

View File

@ -0,0 +1,400 @@
.1.3.6.1.4.1.77.1.2.3.1.1.7.83.101.114.118.101.117.114 = STRING: "Serveur"
.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain"
.1.3.6.1.4.1.77.1.2.3.1.1.7.84.104.195.168.109.101.115 = Hex-STRING: 54 68 C3 A8 6D 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.10.67.108.105.101.110.116.32.68.78.83 = STRING: "Client DNS"
.1.3.6.1.4.1.77.1.2.3.1.1.11.67.108.105.101.110.116.32.68.72.67.80 = STRING: "Client DHCP"
.1.3.6.1.4.1.77.1.2.3.1.1.12.65.108.105.109.101.110.116.97.116.105.111.110 = STRING: "Alimentation"
.1.3.6.1.4.1.77.1.2.3.1.1.12.83.101.114.118.105.99.101.32.83.78.77.80 = STRING: "Service SNMP"
.1.3.6.1.4.1.77.1.2.3.1.1.12.86.77.119.97.114.101.32.84.111.111.108.115 = STRING: "VMware Tools"
.1.3.6.1.4.1.77.1.2.3.1.1.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = STRING: "Assistance IP"
.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging"
.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = STRING: "Plug-and-Play"
.1.3.6.1.4.1.77.1.2.3.1.1.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = STRING: "Temps Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = STRING: "Windows Update"
.1.3.6.1.4.1.77.1.2.3.1.1.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = STRING: "Station de travail"
.1.3.6.1.4.1.77.1.2.3.1.1.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = STRING: "Service de stockage"
.1.3.6.1.4.1.77.1.2.3.1.1.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 52 65 67 69 73 74 72 65 20 C3 A0 20 64 69 73 74 61 6E 63 65
.1.3.6.1.4.1.77.1.2.3.1.1.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = Hex-STRING: 49 73 6F 6C 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 20 43 4E 47
.1.3.6.1.4.1.77.1.2.3.1.1.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = STRING: "Services de chiffrement"
.1.3.6.1.4.1.77.1.2.3.1.1.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = Hex-STRING: 53 70 6F 75 6C 65 75 72 20 64 E2 80 99 69 6D 70 72 65 73 73 69 6F 6E
.1.3.6.1.4.1.77.1.2.3.1.1.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = Hex-STRING: 50 6C 61 6E 69 66 69 63 61 74 65 75 72 20 64 65 20 74 C3 A2 63 68 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = Hex-STRING: 41 70 70 6C 69 63 61 74 69 6F 6E 20 73 79 73 74 C3 A8 6D 65 20 43 4F 4D 2B
.1.3.6.1.4.1.77.1.2.3.1.1.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = STRING: "Optimisation de livraison"
.1.3.6.1.4.1.77.1.2.3.1.1.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = STRING: "Pare-feu Windows Defender"
.1.3.6.1.4.1.77.1.2.3.1.1.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = Hex-STRING: 44 C3 A9 74 65 63 74 69 6F 6E 20 6D 61 74 C3 A9 72 69 65 6C 20 6E 6F 79 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = STRING: "Moteur de filtrage de base"
.1.3.6.1.4.1.77.1.2.3.1.1.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = Hex-STRING: 53 65 72 76 69 63 65 20 4C 69 73 74 65 20 64 65 73 20 72 C3 A9 73 65 61 75 78
.1.3.6.1.4.1.77.1.2.3.1.1.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = STRING: "Gestionnaire de comptes web"
.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent"
.1.3.6.1.4.1.77.1.2.3.1.1.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = STRING: "Assistance NetBIOS sur TCP/IP"
.1.3.6.1.4.1.77.1.2.3.1.1.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = STRING: "Gestionnaire des utilisateurs"
.1.3.6.1.4.1.77.1.2.3.1.1.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = STRING: "Service de profil utilisateur"
.1.3.6.1.4.1.77.1.2.3.1.1.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = Hex-STRING: 53 79 73 74 C3 A8 6D 65 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 20 43 4F 4D 2B
.1.3.6.1.4.1.77.1.2.3.1.1.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 67 72 6F 75 70 65
.1.3.6.1.4.1.77.1.2.3.1.1.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = STRING: "Gestionnaire de session locale"
.1.3.6.1.4.1.77.1.2.3.1.1.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = Hex-STRING: 4A 6F 75 72 6E 61 6C 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 57 69 6E 64 6F 77 73
.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = STRING: "Infrastructure de gestion Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = STRING: "Lanceur de processus serveur DCOM"
.1.3.6.1.4.1.77.1.2.3.1.1.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 27 61 66 66 69 63 68 61 67 65
.1.3.6.1.4.1.77.1.2.3.1.1.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = Hex-STRING: 41 70 70 65 6C 20 64 65 20 70 72 6F 63 C3 A9 64 75 72 65 20 64 69 73 74 61 6E 74 65 20 28 52 50 43 29
.1.3.6.1.4.1.77.1.2.3.1.1.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 75 69 76 69 20 64 65 20 6C 69 65 6E 20 64 69 73 74 72 69 62 75 C3 A9
.1.3.6.1.4.1.77.1.2.3.1.1.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = STRING: "Service de cache de police Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = STRING: "Gestionnaire des connexions Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = STRING: "Mappeur de point de terminaison RPC"
.1.3.6.1.4.1.77.1.2.3.1.1.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 64 69 61 67 6E 6F 73 74 69 63
.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 49 6E 74 65 72 66 61 63 65 20 64 75 20 6D 61 67 61 73 69 6E 20 72 C3 A9 73 65 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = STRING: "Service antivirus Microsoft Defender"
.1.3.6.1.4.1.77.1.2.3.1.1.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = Hex-STRING: 43 6F 6E 6E 61 69 73 73 61 6E 63 65 20 64 65 73 20 65 6D 70 6C 61 63 65 6D 65 6E 74 73 20 72 C3 A9 73 65 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 20 63 6F 6D 70 74 65 73 20 64 65 20 73 C3 A9 63 75 72 69 74 C3 A9
.1.3.6.1.4.1.77.1.2.3.1.1.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = Hex-STRING: 4D 65 74 74 72 65 20 C3 A0 20 6A 6F 75 72 20 6C 65 20 73 65 72 76 69 63 65 20 4F 72 63 68 65 73 74 72 61 74 6F 72
.1.3.6.1.4.1.77.1.2.3.1.1.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 70 6C 6F 69 65 6D 65 6E 74 20 41 70 70 58 20 28 41 70 70 58 53 56 43 29
.1.3.6.1.4.1.77.1.2.3.1.1.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = STRING: "VMware Alias Manager and Ticket Service"
.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = STRING: "Serveur Gestionnaire de licences Windows"
.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 64 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65
.1.3.6.1.4.1.77.1.2.3.1.1.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = Hex-STRING: 43 6F 6F 72 64 69 6E 61 74 65 75 72 20 64 65 20 74 72 61 6E 73 61 63 74 69 6F 6E 73 20 64 69 73 74 72 69 62 75 C3 A9 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 72 C3 A9 73 65 61 75
.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = STRING: "Service State Repository (StateRepository)"
.1.3.6.1.4.1.77.1.2.3.1.1.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = STRING: "Service utilisateur du Presse-papiers_76c3f"
.1.3.6.1.4.1.77.1.2.3.1.1.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = STRING: "Assistant Connexion avec un compte Microsoft"
.1.3.6.1.4.1.77.1.2.3.1.1.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = Hex-STRING: 47 65 73 74 69 6F 6E 20 C3 A0 20 64 69 73 74 61 6E 63 65 20 64 65 20 57 69 6E 64 6F 77 73 20 28 47 65 73 74 69 6F 6E 20 57 53 4D 29
.1.3.6.1.4.1.77.1.2.3.1.1.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 68 6F 72 61 69 72 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = Hex-STRING: 4D 6F 64 75 6C 65 73 20 64 65 20 67 C3 A9 6E C3 A9 72 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 73 20 49 4B 45 20 65 74 20 41 75 74 68 49 50
.1.3.6.1.4.1.77.1.2.3.1.1.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 65 73 20 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73
.1.3.6.1.4.1.77.1.2.3.1.1.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 69 6E 73 74 61 6C 6C 61 74 69 6F 6E 20 64 65 20 70 C3 A9 72 69 70 68 C3 A9 72 69 71 75 65
.1.3.6.1.4.1.77.1.2.3.1.1.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 48 C3 B4 74 65 20 64 75 20 66 6F 75 72 6E 69 73 73 65 75 72 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73
.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6A 6F 75 72 6E 61 6C 69 73 61 74 69 6F 6E 20 64 65 73 20 61 63 63 C3 A8 73 20 75 74 69 6C 69 73 61 74 65 75 72
.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = Hex-STRING: 53 65 72 76 69 63 65 C2 A0 53 53 54 50 20 28 53 65 63 75 72 65 20 53 6F 63 6B 65 74 20 54 75 6E 6E 65 6C 69 6E 67 20 50 72 6F 74 6F 63 6F 6C 29
.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65
.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 74 72 61 6E 73 66 65 72 74 20 69 6E 74 65 6C 6C 69 67 65 6E 74 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E
.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 73 79 73 74 C3 A8 6D 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 73 20 50 75 73 68 20 57 69 6E 64 6F 77 73
.1.3.6.1.4.1.77.1.2.3.1.1.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 64 E2 80 99 61 63 63 C3 A8 73 20 C3 A0 20 64 69 73 74 61 6E 63 65
.1.3.6.1.4.1.77.1.2.3.1.1.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 61 63 63 C3 A8 73 20 61 75 78 20 66 6F 6E 63 74 69 6F 6E 6E 61 6C 69 74 C3 A9 73
.1.3.6.1.4.1.77.1.2.3.1.1.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 50 75 62 6C 69 63 61 74 69 6F 6E 20 64 65 73 20 72 65 73 73 6F 75 72 63 65 73 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73
.1.3.6.1.4.1.77.1.2.3.1.1.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6C E2 80 99 41 73 73 69 73 74 61 6E 74 20 43 6F 6D 70 61 74 69 62 69 6C 69 74 C3 A9 20 64 65 73 20 70 72 6F 67 72 61 6D 6D 65 73
.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 66 72 61 73 74 72 75 63 74 75 72 65 20 64 65 73 20 74 C3 A2 63 68 65 73 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E
.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = STRING: "Service utilisateur de notifications Push Windows_76c3f"
.1.3.6.1.4.1.77.1.2.3.1.1.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = Hex-STRING: 45 78 70 C3 A9 72 69 65 6E 63 65 73 20 64 65 73 20 75 74 69 6C 69 73 61 74 65 75 72 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 20 65 74 20 74 C3 A9 6C C3 A9 6D C3 A9 74 72 69 65
.1.3.6.1.4.1.77.1.2.3.1.1.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 63 6C 61 76 69 65 72 20 74 61 63 74 69 6C 65 20 65 74 20 64 75 20 76 6F 6C 65 74 20 64 E2 80 99 C3 A9 63 72 69 74 75 72 65 20 6D 61 6E 75 73 63 72 69 74 65
.1.3.6.1.4.1.77.1.2.3.1.1.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 73 70 65 63 74 69 6F 6E 20 72 C3 A9 73 65 61 75 20 64 65 20 6C E2 80 99 61 6E 74 69 76 69 72 75 73 20 4D 69 63 72 6F 73 6F 66 74 20 44 65 66 65 6E 64 65 72
.1.3.6.1.4.1.77.1.2.3.1.1.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = Hex-STRING: 53 65 72 76 69 63 65 20 70 6F 75 72 20 75 74 69 6C 69 73 61 74 65 75 72 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 E2 80 99 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 5F 37 36 63 33 66
.1.3.6.1.4.1.77.1.2.3.1.1.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 61 75 74 6F 6D 61 74 69 71 75 65 20 64 65 20 50 72 6F 78 79 20 57 65 62 20 70 6F 75 72 20 6C 65 73 20 73 65 72 76 69 63 65 73 20 48 54 54 50 20 57 69 6E 64 6F 77 73
.1.3.6.1.4.1.77.1.2.3.1.2.7.83.101.114.118.101.117.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.7.84.104.195.168.109.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.2.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.3.7.83.101.114.118.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.7.84.104.195.168.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.7.83.101.114.118.101.117.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.7.84.104.195.168.109.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.83.101.114.118.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.7.84.104.195.168.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1

View File

@ -0,0 +1,65 @@
*** Settings ***
Documentation Linux Local Systemd-sc-status
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS}
... --plugin=os::windows::snmp::plugin
... --mode=service
... --hostname=127.0.0.1
... --snmp-port=2024
*** Test Cases ***
Windows Services EN ${tc}/x
[Documentation] Full ASCII
[Tags] os linux local
${command} Catenate
... ${CMD}
... --snmp-community=os/windows/snmp/services-en
... --filter-name='${filter}'
... ${extra_option}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n
Examples: tc filter extra_option expected_result --
... 1 ${EMPTY} ${EMPTY} OK: All services are ok | 'services.total.count'=168;;;0; 'services.active.count'=168;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 2 toto ${EMPTY} OK: ${SPACE}| 'services.total.count'=0;;;0; 'services.active.count'=0;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 3 toto --critical-active=1: CRITICAL: Number of services active: 0 | 'services.total.count'=0;;;0; 'services.active.count'=0;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 4 ${EMPTY} --critical-active=1: OK: All services are ok | 'services.total.count'=168;;;0; 'services.active.count'=168;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 5 ${EMPTY} --critical-active=1:1 CRITICAL: Number of services active: 168 | 'services.total.count'=168;;;0; 'services.active.count'=168;;1:1;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
Windows Services FR ${tc}/x
[Documentation] Systemd version < 248
[Tags] os linux local
${command} Catenate
... ${CMD}
... --snmp-community=os/windows/snmp/services-fr
... --filter-name='${filter}'
... ${extra_option}
${output} Run ${command}
${output} Strip String ${output}
Should Be Equal As Strings
... ${output}
... ${expected_result}
... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n
Examples: tc filter extra_option expected_result --
... 1 ${EMPTY} ${EMPTY} OK: All services are ok | 'services.total.count'=80;;;0; 'services.active.count'=80;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 2 toto ${EMPTY} OK: ${SPACE}| 'services.total.count'=0;;;0; 'services.active.count'=0;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 3 toto --critical-active=1: CRITICAL: Number of services active: 0 | 'services.total.count'=0;;;0; 'services.active.count'=0;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 4 ${EMPTY} --critical-active=1: OK: All services are ok | 'services.total.count'=80;;;0; 'services.active.count'=80;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 5 ${EMPTY} --critical-active=1:1 CRITICAL: Number of services active: 80 | 'services.total.count'=80;;;0; 'services.active.count'=80;;1:1;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 6 .v.nement --critical-active=1: OK: All services are ok | 'services.total.count'=5;;;0; 'services.active.count'=5;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 7 \xe9v\xe9nement ${EMPTY} OK: All services are ok | 'services.total.count'=5;;;0; 'services.active.count'=5;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;
... 8 SNMP ${EMPTY} OK: Service 'Service SNMP' state is 'active' [installed state: 'installed'] | 'services.total.count'=1;;;0; 'services.active.count'=1;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0;

View File

@ -1,20 +1,17 @@
*** Settings ***
Documentation datacore rest api plugin
Library Examples
Library OperatingSystem
Library Process
Library String
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Suite Setup Start Mockoon
Suite Setup Start Mockoon ${MOCKOON_JSON}
Suite Teardown Stop Mockoon
Test Timeout 120s
*** Variables ***
${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl
${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}storage-datacore-restapi.json
${CMD} perl ${CENTREON_PLUGINS} --plugin=storage::datacore::restapi::plugin --password=pass --username=user --port=3000 --hostname=127.0.0.1 --proto=http
*** Variables ***
${MOCKOON_JSON} ${CURDIR}${/}storage-datacore-api.json
${CMD} ${CENTREON_PLUGINS} --plugin=storage::datacore::restapi::plugin --password=pass --username=user --port=3000 --hostname=127.0.0.1 --proto=http
*** Test Cases ***
@ -61,17 +58,3 @@ Datacore check status monitor
Examples: result --
... CRITICAL: 'State of HostVM2' status : 'Critical', message is 'Connected'
*** Keywords ***
Start Mockoon
${process} Start Process
... mockoon-cli
... start
... --data
... ${MOCKOON_JSON}
... --port
... 3000
Sleep 5s
Stop Mockoon
Terminate All Processes

View File

@ -0,0 +1,96 @@
*** Settings ***
Documentation Storage Synology SNMP
Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource
Test Timeout 120s
*** Variables ***
${CMD} ${CENTREON_PLUGINS} --plugin=storage::synology::snmp::plugin
&{check_components_test1}
... description=Checking disk components when all disks are ok
... snmpcommunity=storage/synology/snmp/synology-disk-ok
... expected_output=OK: All 8 components are ok [2/2 disk, 2/2 fan, 1/1 psu, 2/2 raid, 1/1 system]. | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
&{check_components_test2}
... description=Checking disk components when one disks is warning
... snmpcommunity=storage/synology/snmp/synology-disk-warning
... expected_output=WARNING: Disk 'Disk 2' health is warning | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
&{check_components_test3}
... description=Checking disk components when one disks is critical
... snmpcommunity=storage/synology/snmp/synology-disk-critical
... expected_output=CRITICAL: Disk 'Disk 2' health is critical | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
&{check_components_test4}
... description=Checking disk components when one disks is failing
... snmpcommunity=storage/synology/snmp/synology-disk-failing
... expected_output=CRITICAL: Disk 'Disk 2' health is failing | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;;
@{check_components_tests}
... &{check_components_test1}
... &{check_components_test2}
... &{check_components_test3}
... &{check_components_test4}
&{uptime_t1}
... description=Uptime check expected to be OK
... snmpcommunity=storage/synology/snmp/synology-disk-ok
... warning=
... critical=
... expected_output=OK: System uptime is: 46m 5s | 'uptime'=2765.00s;;;0;
&{uptime_t2}
... description=Uptime check expected to be warning
... snmpcommunity=storage/synology/snmp/synology-disk-ok
... warning=10
... critical=
... expected_output=WARNING: System uptime is: 46m 5s | 'uptime'=2765.00s;0:10;;0;
&{uptime_t3}
... description=Uptime check expected to be critical
... snmpcommunity=storage/synology/snmp/synology-disk-ok
... warning=
... critical=10
... expected_output=CRITICAL: System uptime is: 46m 5s | 'uptime'=2765.00s;;0:10;0;
@{uptime_tests}
... &{uptime_t1}
... &{uptime_t2}
... &{uptime_t3}
*** Test Cases ***
Components
[Tags] storage synology snmp
FOR ${check_components_test} IN @{check_components_tests}
${command} Catenate
... ${CMD}
... --mode=components
... --hostname=127.0.0.1
... --snmp-version=2
... --snmp-port=2024
... --snmp-community=${check_components_test.snmpcommunity}
${output} Run ${command}
Should Be Equal As Strings
... ${check_components_test.expected_output}
... ${output}
... ${check_components_test.description} failed. Wrong output for components mode: ${check_components_test}.{\n}Command output:{\n}${output}
END
Uptime
[Tags] storage synology snmp
FOR ${test_item} IN @{uptime_tests}
${command} Catenate
... ${CMD}
... --mode=uptime
... --hostname=127.0.0.1
... --snmp-version=2
... --snmp-port=2024
... --snmp-community=${test_item.snmpcommunity}
... --warning-uptime=${test_item.warning}
... --critical-uptime=${test_item.critical}
${output} Run ${command}
Should Be Equal As Strings
... ${test_item.expected_output}
... ${output}
... ${test_item.description} failed. Wrong output for components mode: ${test_item}.{\n}Command output:{\n}${output}
END