snmpsim-0.4.5/ 0000775 0063214 0063214 00000000000 13412164240 013405 5 ustar ietingof ietingof snmpsim-0.4.5/docs/ 0000775 0063214 0063214 00000000000 13412164240 014335 5 ustar ietingof ietingof snmpsim-0.4.5/docs/source/ 0000775 0063214 0063214 00000000000 13412164240 015635 5 ustar ietingof ietingof snmpsim-0.4.5/docs/source/.static/ 0000775 0063214 0063214 00000000000 13412164240 017202 5 ustar ietingof ietingof snmpsim-0.4.5/docs/source/.static/logo.svg 0000664 0063214 0063214 00000032763 13175435562 020714 0 ustar ietingof ietingof
snmpsim-0.4.5/docs/source/managing-simulation-data.rst 0000664 0063214 0063214 00000011731 13217212752 023251 0 ustar ietingof ietingof
.. _managing-simulation-data:
Simulation data
===============
SNMP agent simulation revolves around the contents of *.snmprec* files.
.. _snmprec:
File format
-----------
The *.snmprec* file format is optimised to be compact, human-readable and
inexpensive to parse. It's also important to store full and exact
response information in a most intact form. Here's an example data
file content:
.. code-block:: bash
1.3.6.1.2.1.1.1.0|4|Linux 2.6.25.5-smp SMP Tue Jun 19 14:58:11 CDT 2007 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|233425120
1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940
1.3.6.1.2.1.4.22.1.3.2.192.21.54.7|64x|c3dafe61
There is a pipe-separated triplet of *OID|tag|value* items where:
* OID is a dot-separated set of numbers
* Tag is a BER-encoded ASN.1 tag. A modifier can be appended to the
tag number. The following modifiers are known:
- *x* when the value is hexified (e.g. '0102')
- *e* when the value is a Python string literal (e.g. '\x01\x02hello')
- Colon-separated reference to a variation module
* The value is either a printable string or a hexified string or a raw
Python string. Unless it's a number.
Valid tag values and their corresponding ASN.1/SNMP types are:
* 2 - Integer32
* 4 - OCTET STRING
* 5 - NULL
* 6 - OBJECT IDENTIFIER
* 64 - IpAddress
* 65 - Counter32
* 66 - Gauge32
* 67 - TimeTicks
* 68 - Opaque
* 70 - Counter64
.. _datafile.py:
Managing data files
-------------------
The *datafile.py* tool is designed to perform a few handy operations
on the data files.
If you possess *.snmpwalk* or *.sapwalk* snapshots and wish to convert them
into Simulator's native *.snmprec* data file format (what can be required
for using variation modules), run the *datafile.py* tool like this:
.. code-block:: bash
$ datafile.py --input-file=linux.snmpwalk --source-record-type=snmpwalk
1.3.6.1.2.1.1.1.0|4|Linux cray 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|121722922
1.3.6.1.2.1.1.4.0|4|Root (configure /etc/snmp/snmp.local.conf)
1.3.6.1.2.1.1.5.0|4|new system name
1.3.6.1.2.1.1.6.0|4|KK12 (edit /etc/snmp/snmpd.conf)
1.3.6.1.2.1.1.8.0|67|0
1.3.6.1.2.1.1.9.1.2.1|6|1.3.6.1.6.3.11.2.3.1.1
1.3.6.1.2.1.1.9.1.2.2|6|1.3.6.1.6.3.15.2.1.1
1.3.6.1.2.1.1.9.1.2.3|6|1.3.6.1.6.3.10.3.1.1
...
# Records: written 3711, filtered out 0, deduplicated 0, broken 0, variated 0
SNMP Simulator requires data files to be sorted (by OID) and containing no
duplicate OIDs. In case your data file does not comply with these requirements
for some reason, you could pass it through the *datafile.py* tool to
fix data file:
.. code-block:: bash
$ datafile.py --input-file=tcp-mib.snmprec --sort-records
--ignore-broken-records --deduplicate-records
1.3.6.1.2.1.6.1.0|2|1
1.3.6.1.2.1.6.2.0|2|4
1.3.6.1.2.1.6.3.0|2|2
1.3.6.1.2.1.6.4.0|2|4
...
1.3.6.1.2.1.6.20.1.2.2.0.432|4|
1.3.6.1.2.1.6.20.1.3.2.0.432|66|80
1.3.6.1.2.1.6.20.1.4.2.0.432|66|1524968792
# Records: written 33, filtered out 0, deduplicated 0, broken 0, variated 0
If you have a huge data file and wish to use just a part of it for
simulation purposes, datafile.py tool could cut a slice form a data file
and store records in a new one:
.. code-block:: bash
$ datafile.py --input-file=tcp-mib.snmprec --start-oid=1.3.6.1.2.1.6.13
--stop-oid=1.3.6.1.2.1.6.14
1.3.6.1.2.1.6.13.1.1.72.192.51.208.2.234.233.215.7.3|2|1
1.3.6.1.2.1.6.13.1.2.72.192.51.208.2.234.233.215.7.3|64x|8b896863
1.3.6.1.2.1.6.13.1.3.72.192.51.208.2.234.233.215.7.3|2|3
1.3.6.1.2.1.6.13.1.4.72.192.51.208.2.234.233.215.7.3|64x|4f1182fe
1.3.6.1.2.1.6.13.1.5.72.192.51.208.2.234.233.215.7.3|2|3
# Records: written 5, filtered out 28, deduplicated 0, broken 0, variated 0
Merge of multiple data files into a single data file is also supported:
.. code-block:: bash
$ datafile.py --input-file=tcp-mib.snmprec --input-file=udp-mib.snmprec
--sort-records --deduplicate-records
1.3.6.1.2.1.6.1.0|2|1
1.3.6.1.2.1.6.2.0|2|4
1.3.6.1.2.1.6.3.0|2|2
1.3.6.1.2.1.6.4.0|2|4
...
1.3.6.1.2.1.7.8.0|70|3896031866066683889
1.3.6.1.2.1.7.9.0|70|3518073560493506800
# Records: written 49, filtered out 0, deduplicated 0, broken 0, variated 0
Having string values more human-readable may be more convenient in the
course of adjusting simulation data, debugging etc. By default, strings in
simulation data are hexified. By passing such *.snmprec* file through
the *datafile.py --escaped-strings* call, you can convert your *.snmprec*
data into Python string literal representation:
.. code-block:: bash
$ head data/sample.snmprec
1.3.6.1.2.1.55.1.5.1.8.2|4x|00127962f940
$
$ datafile.py --source-record-type=snmprec --input-file=data/sample.snmprec
--escaped-strings
1.3.6.1.2.1.55.1.5.1.8.2|4e|\x00\x12yb\xf9@
# Records: written 1, filtered out 0, deduplicated 0, broken 0, variated 0
snmpsim-0.4.5/docs/source/simulating-agents.rst 0000664 0063214 0063214 00000035446 13217212752 022043 0 ustar ietingof ietingof
.. _simulating-agents:
Simulating SNMP Agents
======================
The *snmpsimd.py* program performs actual SNMP agent simulation based on the simulation
data provided.
.. _simulation-data-location:
Simulation data
---------------
SNMP agents simulation data ends up in :ref:`.snmprec ` files. Once SNMP
request comes in, SNMP Simulator
:ref:`constructs .snmprec file path ` and tries to locate
it by searching through the following directories:
* ~/.snmpsim/data
* /usr/local/share/snmpsim/data
* {python-package-root}/data
On Windows search paths are:
* \Document and Settings\{user}\Application Data\SNMP Simulator\Data
* \Program Files\SNMP Simulator\Data
* {python-package-root}/data
These directories are searched in the specified order till the first match.
For example, a set up collection of *.snmprec* files would look like:
.. code-block:: bash
$ cd /usr/local/share
$ find snmpsim/data
snmpsim/data
snmpsim/data/public.snmprec
snmpsim/data/mib2dev
snmpsim/data/mib2dev/ip-mib.snmprec
snmpsim/data/mib2dev/host-resources-mib.snmprec
snmpsim/data/mib2dev/tcp-mib.snmprec
snmpsim/data/foreignformats
snmpsim/data/foreignformats/linux.snmpwalk
snmpsim/data/foreignformats/winxp.sapwalk
snmpsim/data/variation
snmpsim/data/variation/subprocess.snmprec
snmpsim/data/variation/virtualtable.snmprec
snmpsim/data/recorded
snmpsim/data/recorded/linksys-system.snmprec
snmpsim/data/recorded/udp-endpoint-table-walk.snmprec
...
.. note::
There're also a bunch of .dbm files created and maintained automatically
in a temporary directory. These .dbm files are used by the Simulator
for fast OID lookup in a data file.
.. _snmpsimd.py:
SNMP Simulator daemon
---------------------
The *snmpsimd.py* tool hosts multiple independent SNMP Command Responders.
It can run multiple SNMP engines exchanging data over multiple network interfaces.
Each SNMP engine instance can serve many independent sets of SNMP management
objects (MIBs) sourced from :ref:`local .snmprec files `
or :ref:`variation modules `.
.. _multiple-listen-interfaces:
Multiple network interfaces
+++++++++++++++++++++++++++
SNMP Simulator daemon can listen at multiple local IP interfaces and/or UDP ports.
Just pass multiple *--agent-udpv4-endpoint* / *--agent-udpv6-endpoint* command
line parameters carrying addresses to listen on. Whenever you wish
Simulator to listen on thousands of local interfaces and/or ports,
use the *--agent-udpv4-endpoints-list* / *--agent-udpv6-endpoints-list*
options. These options expect to refer to a plain text file containing
newline-separated list of transport endpoints for Simulator to listen on.
.. code-block:: bash
$ snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:1024 \
--agent-udpv6-endpoint='[::1]:1161'
Scanning "/home/user/.snmpsim/variation" directory for variation modules...
no directory
Scanning "/usr/local/share/snmpsim/variation" directory for variation modules...
8 more modules found
Initializing variation modules:
notification... OK
sql... FAILED: database type not specified
numeric... OK
subprocess... OK
delay... OK
multiplex... OK
error... OK
writecache... OK
Scanning "/home/user/.snmpsim/data" directory for *.snmpwalk, *.MVC,
*.sapwalk, *.snmprec, *.dump data files... no directory
Scanning "/usr/local/share/snmpsim/data" directory for *.snmpwalk,
*.MVC, *.sapwalk, *.snmprec, *.dump data files...
==================================================================
Index /tmp/snmpsim/usr_local_share_snmpsim_data_public.dbm does not exist
for data file data/public.snmprec
Building index /tmp/snmpsim/usr_local_share_snmpsim_data_public.dbm for data
file /usr/local/share/snmpsim/data/public.snmprec (open flags "n")......
133 entries indexed
Data file /usr/local/share/snmpsim/data/public.snmprec, dbhash-indexed, closed
SNMPv1/2c community name: public
SNMPv3 context name: 4c9184f37cff01bcdc32dc486ec36961
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Index /tmp/snmpsim/usr_local_share_snmpsim_data_recorded_linksys-system.dbm
does not exist for data file /usr/local/share/snmpsim/data/recorded/
linksys-system.snmprec
Building index /tmp/snmpsim/usr_local_share_snmpsim_data_recorded_linksys-
system.dbm for data file /usr/local/share/snmpsim/data/recorded/linksys-
system.snmprec (open flags "n")......6 entries indexed
Data file /usr/local/share/snmpsim/data/recorded/linksys-system.snmprec,
dbhash-indexed, closed
SNMPv1/2c community name: recorded/linksys-system
SNMPv3 context name: 1a764f7fd0e7b0bf98bada8fe723e488
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
...
...
...
SNMPv3 credentials:
Username: simulator
Authentication key: auctoritas
Authentication protocol: MD5
Encryption (privacy) key: privatus
Encryption protocol: DES
Listening at:
UDP/IPv4 endpoint 127.0.0.1:1024, transport ID 1.3.6.1.6.1.1.0
UDP/IPv6 endpoint ::1:1161, transport ID 1.3.6.1.2.1.100.1.2.0
.. note::
An unprivileged port *1024* has been chosen in this example to avoid
running *snmpsimd.py* process as root.
By this point you can run you favorite SNMP Manager to talk to either
of the two simulated devices through whatever transport you prefer.
For instance, to talk to simulated Linux box over SNMP v2 through
UDP over IPv4 run:
.. code-block:: bash
$ snmpwalk -On -v2c -c recorded/linksys-system localhost:1161 1.3.6
.1.3.6.1.2.1.1.1.0 = STRING: BEFSX41
.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.3955.1.1
.1.3.6.1.2.1.1.3.0 = Timeticks: (638239) 1:46:22.39
.1.3.6.1.2.1.1.4.0 = STRING: Linksys
.1.3.6.1.2.1.1.5.0 = STRING: isp-gw
.1.3.6.1.2.1.1.6.0 = STRING: 4, Petersburger strasse, Berlin, Germany
.1.3.6.1.2.1.1.8.0 = Timeticks: (4) 0:00:00.04
.1.3.6.1.2.1.1.8.0 = No more variables left in this MIB View
...
To walk simulated 3com switch over SNMPv3 we'd run:
.. code-block:: bash
$ snmpwalk -On -v3 -n recorded/linksys-system \
-l authPriv -u simulator -A auctoritas -X privatus \
localhost:1161 1.3.6
.1.3.6.1.2.1.1.1.0 = STRING: BEFSX41
.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.3955.1.1
.1.3.6.1.2.1.1.3.0 = Timeticks: (638239) 1:46:22.39
.1.3.6.1.2.1.1.4.0 = STRING: Linksys
.1.3.6.1.2.1.1.5.0 = STRING: isp-gw
.1.3.6.1.2.1.1.6.0 = STRING: 4, Petersburger strasse, Berlin, Germany
.1.3.6.1.2.1.1.8.0 = Timeticks: (4) 0:00:00.04
.1.3.6.1.2.1.1.8.0 = No more variables left in this MIB View
...
.. note::
The *-n * parameter passed to the *snmpwalk* tool addresses
specific simulated device at SNMP Simulator daemon.
.. _multiple-usm-users:
Multiple USM users
++++++++++++++++++
It is also possible to configure many SNMPv3 (USM) users to Simulator. Each
set of *--v3-user*, *--v3-auth-key*, *--v3-priv-key* parameters adds one SNMPv3
user to Simulator.
There is no correlation between SNMPv3 users and simulated resources, all users
have the same view of the Simulator and the same access permissions. But
you can use SNMPv3 contextNames and/or transport endpoints for addressing
different data files e.g. simulated SNMP agents.
.. code-block:: bash
$ snmpsimd.py --agent-udpv4-endpoint=127.0.0.1 \
--v3-user=wallace --v3-auth-key=testkey123 --v3-priv-key=testkey839 \
--v3-user=gromit --v3-auth-key=testkey564 --v3-priv-key=testkey6534
Scanning "/home/user/.snmpsim/variation" directory for variation modules...
...
SNMPv3 EngineID 0x80004fb8056372617927fb76cc
------------------------------------------------------------------
SNMPv3 USM SecurityName: wallace
SNMPv3 USM authentication key: testkey123, authentication protocol: MD5
SNMPv3 USM encryption (privacy) key: testkey839, encryption protocol: DES
------------------------------------------------------------------
SNMPv3 USM SecurityName: gromit
SNMPv3 USM authentication key: testkey564, authentication protocol: MD5
SNMPv3 USM encryption (privacy) key: testkey6534, encryption protocol: DES
Listening at UDP/IPv4 endpoint 127.0.0.1:161, transport ID 1.3.6.1.6.1.1.0
...
SNMP simulator supports many SNMPv3 authentication and encryption algorithms. For
each user you can configure any authentication and any encryption (privacy)
algorithm.
.. _auth-algos:
The following authentication algorithms are currently supported (via
*--v3-auth-proto=* option):
+--------+----------------+-------------+
| *ID* | *Algorithm* | *Reference* |
+--------+----------------+-------------+
| NONE | - | RFC3414 |
+--------+----------------+-------------+
| MD5 | HMAC MD5 | RFC3414 |
+--------+----------------+-------------+
| SHA | HMAC SHA-1 128 | RFC3414 |
+--------+----------------+-------------+
| SHA224 | HMAC SHA-2 224 | RFC7860 |
+--------+----------------+-------------+
| SHA256 | HMAC SHA-2 256 | RFC7860 |
+--------+----------------+-------------+
| SHA384 | HMAC SHA-2 384 | RFC7860 |
+--------+----------------+-------------+
| SHA512 | HMAC SHA-2 512 | RFC7860 |
+--------+----------------+-------------+
.. _priv-algos:
The following privacy (encryption) algorithms are currently supported (via
*--v3-priv-proto=* option):
+------------+------------------------+----------------------+
| *ID* | *Algorithm* | *Reference* |
+------------+------------------------+----------------------+
| NONE | - | RFC3414 |
+------------+------------------------+----------------------+
| DES | DES | RFC3414 |
+------------+------------------------+----------------------+
| AES | AES CFB 128 | RFC3826 |
+------------+------------------------+----------------------+
| AES192 | AES CFB 192 | RFC Draft |
+------------+------------------------+----------------------+
| AES256 | AES CFB 256 | RFC Draft |
+------------+------------------------+----------------------+
| AES192BLMT | AES CFB 192 Blumenthal | RFC Draft |
+------------+------------------------+----------------------+
| AES256BLMT | AES CFB 256 Blumenthal | RFC Draft |
+------------+------------------------+----------------------+
| 3DES | Triple DES EDE | RFC Draft |
+------------+------------------------+----------------------+
.. note::
The AES192, AES256 and 3DES are implemented based on
`Blumenthal `_ and
`Reeder `_
draft RFCs.
Another configurable parameter is SNMPv3 snmpEngineId value. It's normally
automatically generated but can also be configured through
command line.
.. code-block:: bash
$ snmpsimd.py --agent-udpv4-endpoint=127.0.0.1 --v3-engine-id=010203040505060809
Scanning "/home/user/.snmpsim/variation" directory for variation modules...
...
SNMPv3 EngineID 0x010203040505060809
------------------------------------------------------------------
SNMPv3 USM SecurityName: simulator
SNMPv3 USM authentication key: auctoritas, authentication protocol: MD5
SNMPv3 USM encryption (privacy) key: privatus, encryption protocol: DES
Listening at UDP/IPv4 endpoint 127.0.0.1:161, transport ID 1.3.6.1.6.1.1.0
.. note::
The *SnmpEngineId* value has to follow
`certain format `_.
.. _multiple-snmp-engine-ids:
Multiple SNMP engines
+++++++++++++++++++++
SNMP Simulator could run many independent SNMP engines all within
a single daemon process. SNMP managers could address particular
SNMP Engine instance by querying it at a transport endpoint to which
SNMP Engine is bound.
Each SNMP Engine will have its own set of USM users and could serve
its own *--data-dir* (or they can share a single directory).
The logic of configuring specific parameters to different SNMP engines
is to "scope" SNMP Engine parameters (like users, transports, data directory)
within its *--v3-engine-id* fragment of Simulator command-line sequence of
options. For example:
.. code-block:: bash
$ snmpsimd.py \
--v3-engine-id=010203040505060809 \
--v3-user=wallace --v3-auth-key=testkey123 \
--agent-udpv4-endpoint=127.0.0.1:1161 \
--v3-engine-id=090807060504030201 \
--v3-user=gromit --v3-auth-key=testkey564 \
--agent-udpv4-endpoint=127.0.0.1:1162
Scanning "/home/user/.snmpsim/variation" directory for variation modules...
...
SNMPv3 EngineID: 0x010203040505060809
------------------------------------------------------------------
SNMPv3 USM SecurityName: wallace
SNMPv3 USM authentication key: testkey123, authentication protocol: MD5
Listening at UDP/IPv4 endpoint 127.0.0.1:1161, transport ID 1.3.6.1.6.1.1.0
...
SNMPv3 EngineID: 0x090807060504030201
------------------------------------------------------------------
SNMPv3 USM SecurityName: gromit
SNMPv3 USM authentication key: testkey564, authentication protocol: MD5
Listening at UDP/IPv4 endpoint 127.0.0.1:1162, transport ID 1.3.6.1.6.1.1.1
Likewise, to make particular SNMP Engine working with specific data directory,
another, more specific, *--data-dir* option could be passed after the
*--v3-engine-id* option.
.. _running-options:
Invocation options
++++++++++++++++++
To make Simulator listening on SNMP-standard UDP port 161 on a UNIX system,
you have to invoke it as root but in the same time have to specify some
non-privileged UNIX user and group to switch into upon port allocation:
.. code-block:: bash
# snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:161 \
--process-user=simulator --process-group=simulator
On UNIX systems Simulator can be run as a daemon. Make sure to re-direct
its console output into syslog:
.. code-block:: bash
# snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:161 \
--process-user=simulator --process-group=simulator \
--daemonize --logging-method=syslog:local1:debug
.. _logging-options:
Logging options
+++++++++++++++
Most of the scripts shipped with the SNMP Simulator package can log to a remote syslog
server over TCP or UDP:
.. code-block:: bash
# snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:161 \
--process-user=simulator --process-group=simulator \
--daemonize --logging-method=syslog:local1:debug:192.168.1.1:514:udp
Finally, Simulator can simply log to a local log file:
.. code-block:: bash
# snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:161 \
--process-user=simulator --process-group=simulator \
--daemonize --logging-method=file:/var/log/snmpsimd.log
snmpsim-0.4.5/docs/source/license.rst 0000664 0063214 0063214 00000000077 13175435562 020033 0 ustar ietingof ietingof
.. _license:
License
=======
.. include:: ../../LICENSE.txt
snmpsim-0.4.5/docs/source/recording-with-variation-modules.rst 0000664 0063214 0063214 00000035712 13175435562 025002 0 ustar ietingof ietingof
.. _recording-with-variation-modules:
Recording with variation modules
================================
Some valuable simulation information may also be collected in the process
of recording snapshots off the live SNMP Agent. Examples include changes in
the set of OIDs in time, changes in numeric values, request processing times
and so on. To facilitate capturing such information, some of the stock
variation modules support snapshots recording mode.
To invoke a variation module while recording SNMP Agent with
the :ref:`snmprec.py ` tool, pass its name via the *--variation-module*
command-line option. Additional variation module parameters could also be passed
through the *--variation-module-options* switch.
The following standard modules support the recording feature:
* The :ref:`numeric ` module produces a non-decreasing
sequence of integers over time
* The :ref:`sql ` module reads/writes var-binds from/to a SQL database
* The :ref:`redis ` module reads/writes var-binds from/to a no-SQL
key-value store
* The :ref:`delay ` module delays SNMP response by specified
or random time
* The :ref:`multiplex ` module uses a time series of *.snmprec*
files picking one at a time.
.. _record-numeric:
Numeric module
--------------
The numeric module can be used for capturing initial values of
Managed Objects and calculating a coefficient to a linear function
in attempt to approximate live values changes in time. In case value
change law is not linear, custom approximation function should be used
instead.
The numeric module supports the following comma-separated key:value
options whilst running in recording mode:
* *taglist* - a dash-separated list of *.snmprec* tags indicating SNMP
value types to apply numeric module to.
Valid tags are:
- 2 - Integer
- 65 - Counter32
- 66 - Gauge32
- 67 - TimeTicks
- 70 - Counter64
Default is empty list.
* *iterations* - number of recording cycles to run over the same
portion of SNMP agent MIB. There's no point in values
beyond 2 for purposes of modelling approximation function.
Default is 1.
* *period* - Agent walk period in seconds. Default is 10 seconds.
* *addon* - a single *.snmprec* record scope *key=value* parameter for the
*numeric* module to be used whilst running in variation mode.
Multiple add-on parameters can be used. Default is empty.
Examples
++++++++
In the examples the :ref:`snmprec.py ` tool will be used.
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--start-oid=1.3.6.1.2.1.2 --stop-oid=1.3.6.1.2.1.3 \
--variation-module=numeric \
--variation-module-options=taglist:65,iterations:2,period:15 \
Scanning "/usr/local/share/snmpsim/variation" directory for variation
modules...numeric module loaded
SNMP version 2c
Community name: public
Querying UDP/IPv4 agent at demo.snmplabs.com:161
Initializing variation module:
numeric...OK
numeric: waiting 0.77 sec(s), 111 OIDs dumped, 1 iterations remaining...
...
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.10.1|65:numeric|rate=3374,initial=641734,increasing=1
1.3.6.1.2.1.2.2.1.10.2|65:numeric|rate=0,initial=0,increasing=1
1.3.6.1.2.1.2.2.1.10.4|65:numeric|rate=1159,initial=32954879,increasing=1
1.3.6.1.2.1.2.2.1.11.1|65:numeric|rate=86,initial=12238,increasing=1
1.3.6.1.2.1.2.2.1.21.1|66|0
...
Shutting down variation modules:
numeric...OK
OIDs dumped: 224, elapsed: 15.53 sec, rate: 20.00 OIDs/sec
In the above example we have run two iterations against a subset of
Managed Objects at an Agent requesting numeric module to configure
itself into generated *.snmprec* data for Counter32-typed objects (ID 65).
Produced *.snmprec* file could be used for simulation as-is or edited
by hand to change variation module behaviour on on a per-OID basis.
.. _record-delay:
Delay module
------------
The delay module can be used for capturing request processing time
when recording SNMP agent.
Examples
++++++++
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--start-oid=1.3.6.1.2.1.2 --stop-oid=1.3.6.1.2.1.3 \
--variation-module=delay
Scanning "/usr/local/share/snmpsim/variation" directory for variation
modules...delay module loaded
SNMP version 2c
Community name: public
Querying UDP/IPv4 agent at demo.snmplabs.com:161
Initializing variation module:
delay...OK
1.3.6.1.2.1.2.1.0|2:delay|value=5,wait=8
1.3.6.1.2.1.2.2.1.1.1|2:delay|value=1,wait=32
1.3.6.1.2.1.2.2.1.6.4|4x:delay|hexvalue=008d120f4fa4,wait=20
...
Shutting down variation modules:
delay...OK
OIDs dumped: 224, elapsed: 15.53 sec, rate: 20.00 OIDs/sec
Produced *.snmprec* file could be used for Simulation as-is or edited
by hand to change delay variation.
.. _record-multiplex:
Multiplex module
----------------
The multiplex module can record a series of snapshots at specified period
of time. Recorded *.snmprec* snapshots could then be used for simulation
by multiplex module.
The multiplex module supports the following comma-separated *key:value*
options whilst running in recording mode:
* *dir* - directory for produced *.snmprec* files
* *iterations* - number of recording cycles to run over the same
portion of SNMP agent MIB. There's no point in values
beyond 2 for purposes of modelling approximation function.
Default is 1.
* *period* - Agent walk period in seconds. Default is 10 seconds.
* *addon* - a single *.snmprec* record scope *key=value* parameter for the
*multiplex* module to be used whilst running in variation mode.
Multiple add-on parameters can be used. Default is empty.
Examples
++++++++
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--start-oid=1.3.6.1.2.1.2 --stop-oid=1.3.6.1.2.1.3 \
--output-file=data/multiplex.snmprec \
--variation-module=multiplex \
--variation-module-options=dir:data/multiplex,iterations:5,period:15
Scanning "/usr/local/share/snmpsim/variation" directory for variation modules...multiplex module loaded
SNMP version 2c
Community name: public
Querying UDP/IPv4 agent at demo.snmplabs.com:161
Initializing variation module:
multiplex...OK
multiplex: writing into data/multiplex/00000.snmprec file...
multiplex: waiting 14.78 sec(s), 45 OIDs dumped, 5 iterations remaining...
...
multiplex: writing into data/multiplex/00005.snmprec file...
Shutting down variation modules:
multiplex...OK
OIDs dumped: 276, elapsed: 75.76 sec, rate: 3.64 OIDs/sec
Besides individual *.snmprec* snapshots, the "main" *.snmprec* file
will also be written:
.. code-block:: bash
$ cat data/multiplex.snmprec
1.3.6.1.2.1.2|:multiplex|period=15.00,dir=data/multiplex
where the multiplex module is configured for specific OID subtree (actually,
specified in *--start-oid*).
Although multiplex-generated *.snmprec* files can also be addressed directly
by Simulator, to benefit from the time series nature of the collected data,
it's better to simulate based on the "main" *.snmprec* file and the multiplex
variation module.
.. _record-sql:
SQL module
----------
The *sql* module can record a snapshot of SNMP agent's set of Managed Objects
and store it in a SQL database. Recorded snapshots could then be used
for simulation by the *sql* module running in variation mode.
Module configuration parameters described on the :ref:`simulation `
page are also applicable to the recording.
Examples
++++++++
Running with SQLite DB backend:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com
--start-oid=1.3.6.1.2.1.2 --stop-oid=1.3.6.1.2.1.3
--output-file=data/sql.snmprec
--variation-module=sql
--variation-module-options=dbtype:sqlite3,database:/tmp/snmpsim.db,dbtable:snmprec
Scanning "/usr/local/share/snmpsim/variation" directory for variation modules... sql module loaded
SNMP version 2c
Community name: public
Querying UDP/IPv4 agent at demo.snmplabs.com:161
Initializing variation module:
sql...OK
Shutting down variation modules:
sql...OK
OIDs dumped: 45, elapsed: 0.21 sec, rate: 213.00 OIDs/sec
By this point you'd get the *data/sql.snmprec* file where *sql* module
is configured for OID subtree (taken from *--start-oid* parameter):
.. code-block:: bash
$ cat data/sql.snmprec
1.3.6.1.2.1.2.2|:sql|snmprec
and SQLite database */tmp/snmpsim.db* having SQL table "snmprec" with the
following contents:
.. code-block:: bash
$ sqlite3 /tmp/snmpsim.db
SQLite version 3.7.5
sqlite> .schema snmprec
CREATE TABLE snmprec (oid text, tag text, value text, maxaccess text);
sqlite> select * from snmprec limit 1;
1. 3. 6. 1. 2. 1.
2. 2. 1. 1. 1|2|1|read-write
.. note::
The OID is formatted in a way that each sub-oid is left-padded with
up to 8 spaces (must be 10 chars in total) to make the ordering work
properly with standard SQL sorting.
The following :ref:`snmprec.py ` call push snapshots into
MySQL database using native MySQL's Connector/Python driver:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--output-file=data/sql.snmprec \
--variation-module=sql \
--variation-module-options=dbtype:mysql.connector,host:127.0.0.1, \
port:3306,user:snmpsim,password:snmpsim,database:snmpsim
The above code assumes that you have the
`MySQL Connector/Python driver `_
installed on the recording machine and a MySQL server running at
127.0.0.1 with MySQL user/password snmpsim/snmpsim having sufficient permissions
for creating new tables.
Another variation of MySQL server installation setup on a UNIX system employs
UNIX domain socket for client-server communication. In that case the following
command-line for :ref:`snmprec.py ` might work:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--output-file=data/sql.snmprec \
--variation-module=sql
--variation-module-options=dbtype:mysql.connector,unix_socket: \
/var/run/mysql/mysql.sock,user:snmpsim,password:snmpsim,database:snmpsim
Alternatively, the `MySQL for Python `_
package could be used for SNMP Simulator's MySQL connection:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--output-file=data/sql.snmprec \
--variation-module=sql \
--variation-module-options=dbtype:MySQLdb,host:127.0.0.1,port:3306, \
user:snmpsim,passwd:snmpsim,db:snmpsim
Similar call but with the `PostgreSQL `_ DB
as a backend data store:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--output-file=data/sql.snmprec \
--variation-module=sql \
--variation-module-options=dbtype:psycopg2,database:snmpsim,user:snmpsim, \
password:snmpsim,dbtable:snmprec
With the example above, the assumption is that you have the
`Psycopg `_ module installed, PostgreSQL
server running locally (accessed through default UNIX domain socket),
DB user/password are snmpsim/snmpsim and this user has
sufficient permissions to create new database tables (snmprec table will
be created).
When *sql* variation module is invoked in :ref:`simulaiton `
context, it can read, create and modify individual rows in the SQL database
we just created. You could also modify the contents of such SQL tables,
create SQL triggers to react to certain changes elsewhere.
.. _record-redis:
Redis module
------------
The *redis* module can record one or more snapshots of SNMP agent's set of
Managed Objects and store it in `Redis key-value store `_.
Recorded snapshots could then be replayed by *redis* module running
in :ref:`variation mode `.
Redis database schema and module configuration parameters explained
on the :ref:`variation ` page is also applicable to
the recording mode.
The *redis* module supports the following comma-separated *key:value*
options whilst running in recording mode:
* *host* - Redis hostname or IP address.
* *port* - Redis TCP port the server is listening on.
* *unix_socket* - UNIX domain socket Redis server is listening on.
* *db* - Redis database number.
* *password* - Redis database admission password.
* *key-spaces-id* - key spaces ID to use for recording a single or a
series of snapshots
* *iterations* - number of recording cycles to run over the same
portion of SNMP agent MIB. There's no point in values
beyond 2 for purposes of modelling approximation function.
Default is 1.
* *period* - Agent walk period in seconds. Default is 10 seconds.
* *evalsha* - Redis server side `Lua script `_
to use for storing oid-value pairs in Redis. If this option is not given,
bare Redis SET commands will be used instead.
Examples
++++++++
Make the *redis* module for recording five snapshots of a demo
SNMP Agent:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com \
--start-oid=1.3.6.1.2.1.2 --stop-oid=1.3.6.1.2.1.3 \
--output-file=data/redis.snmprec \
--variation-module=redis \
--variation-module-options=host:127.0.0.1,port:6379,db:0,key-spaces-id:1111, \
iterations:5,period:30
Scanning "variation" directory for variation modules...
Variation module "redis" loaded
SNMP version 2c, Community name: public
Querying UDP/IPv4 agent at 195.218.195.228:161
Initializing variation module...
redis: using key-spaces-id 1111
Variation module "redis" initialization OK
Sending initial GETNEXT request....
redis: done with key-space 0000001116
redis: 4 iterations remaining
85 OIDs dumped, waiting 30.00 sec(s)...
redis: done with key-space 0000001115
redis: 3 iterations remaining
171 OIDs dumped, waiting 30.00 sec(s)...
redis: done with key-space 0000001114
redis: 2 iterations remaining
257 OIDs dumped, waiting 30.00 sec(s)...
redis: done with key-space 0000001113
redis: 1 iterations remaining
343 OIDs dumped, waiting 30.00 sec(s)...
redis: done with key-space 0000001112
redis: 0 iterations remaining
Shutting down variation module redis...
Variation module redis shutdown OK
OIDs dumped: 603, elapsed: 329.22 sec, rate: 0.00 OIDs/sec
By this point you'd get the *data/redis.snmprec* file where *redis* module
is configured for OID subtree (taken from the *--start-oid* parameter):
.. code-block:: bash
$ cat data/redis.snmprec
1.3.6|:redis|period=30.00,key-spaces-id=1111
When *redis* variation module is invoked in the :ref:`variation context `,
it can read, create and modify individual OID-value pairs in Redis database we've just
created.
snmpsim-0.4.5/docs/source/contents.rst 0000664 0063214 0063214 00000005066 13345010600 020226 0 ustar ietingof ietingof
SNMP Agent Simulator
====================
.. toctree::
:maxdepth: 2
SNMP Simulator tool can simulate many thousands of different
SNMP speaking devices on a network. It is primarily used for testing
and development purposes.
It is free, open source and immediately available to anyone for whatever
purpose free of charge.
How to use SNMP Simulator
-------------------------
Try the fast lane if you are fluent with network management matters.
.. toctree::
:maxdepth: 2
/quickstart
Documentation
-------------
.. toctree::
:maxdepth: 2
/simulating-agents
/managing-simulation-data
/addressing-agents
/simulation-with-variation-modules
/building-simulation-data
/recording-with-variation-modules
/tips-and-tricks
Source code & Changelog
-----------------------
Project source code is hosted at `GitHub `_.
Everyone is welcome to fork and contribute back!
We maintain detailed :doc:`log of changes ` to our software.
Download
--------
The easiest way to download and install SNMP simulator is to `pip install` the latest
version from PyPI:
.. code-block:: bash
$ virtualenv venv
$ source venv/bin/activate
$ pip install snmpsim
Alternatively, you can `download `_
the latest release from GitHub or `PyPI `_.
License
-------
The SNMP Simulator software is distributed under 2-clause :doc:`BSD license `.
Development
-----------
Our development plans and new features we consider for eventual implementation
are tracked on the :doc:`future features ` page.
Free simulation service
-----------------------
We setup :doc:`publicly available SNMP Simulator `
instance at `Digital Ocean `_ cloud to serve
SNMP simulation services to you - our fellow SNMP developers
and testers. The service is hosted in the U.S. (west coast) and should
be available to everyone free of charge.
If you are considering signing up with Digital Ocean for their
hosting services, `the voucher `_
will get you $10 credit and that would benefit our service hosting as well. ;-)
Contact
-------
In case of questions or troubles using SNMP Simulator, please open up an
`issue `_ at GitHub or ask at
`Stack Overflow `_ .
You can also try browsing the mailing list
`archives `_.
snmpsim-0.4.5/docs/source/simulation-with-variation-modules.rst 0000664 0063214 0063214 00000106574 13345010600 025174 0 ustar ietingof ietingof
.. _simulation-with-variation-modules:
Simulation with variation modules
=================================
Without variation modules, simulated SNMP Agents are always static
in terms of data returned to SNMP Managers. They are also read-only.
By configuring particular OIDs or whole subtrees to be routed to
variation modules, that allows you to make returned data changing
over time.
Another way of using variation modules is to gather data from some
external source such as an SQL database or executed process or distant
web-service.
It's also possible to modify simulated values through SNMP SET operation
and store modified values in a database so they will persist over Simulator
restarts.
Variation modules may be used for triggering events at other systems. For
instance the *notification* module will send SNMP TRAP/INFORM SNMP messages
to pre-configured SNMP Managers on SNMP SET request arrival to *snmpsimd.py*.
Finally, variation module API let you develop your own code in Python
to fulfill your special needs and use your variation module with stock
Simulator.
.. _configuring-simulation-with-variation-modules:
Configuring variation modules
-----------------------------
To make use of a variation module you will have to *edit* existing
or create a new data file adding reference to a variation module into
the *tag* field by means of
:ref:`recording variation modules `.
Remember :ref:`.snmprec file format ` is a sequence of lines having
the *OID|TAG|VALUE* fields? With variation module in use, the *TAG* field complies
to its own sub-format - *TAG-ID[:MODULE-ID]*.
Examples
++++++++
The following .snmprec file contents will invoke the *writecache* module and cast
its returned values into ASN.1 OCTET STRING (4) and INTEGER (2) respectively:
.. code-block:: bash
1.3.6.1.2.1.1.3.0|2:volatilecache|value=42
Whenever a subtree is routed to a variation module, *TAG-ID* part is left out
as there might be no single type for all values within a subtree. Thus the
empty *TAG-ID* sub-field serves as an indicator of a subtree.
For example, the following data file will serve all OIDs under 1.3.6.1.2.1.1
prefix to the "sql" variation module:
.. code-block:: bash
1.3.6.1.2.1.1|:sql|snmprec
The value part is passed to variation module as-is. It is typically holds some
module-specific configuration or initialization values.
Another example: the following .snmprec line invokes the "notification"
variation module instructing it to send SNMP INFORM message to SNMP
manager at 127.0.01:162 over SNMPv3 with specific SNMP params:
.. code-block:: bash
1.3.6.1.2.1.1.3.0|67:notification|version=3,user=usr-md5-des,\
authkey=authkey1,privkey=privkey1,host=127.0.0.1,ntftype=inform,\
trapoid=1.3.6.1.6.3.1.1.5.2,value=123456
The standard variation modules are installed into the Python site-packages
directory. User can pass Simulator an alternative modules directory through
the command line.
Simulator will load and bootstrap all variation modules it finds. Some
modules can accept initialization parameters (like database connection
credentials) through *snmpsimd.py* *--variation-module-options* command-line
parameter.
For example, the following Simulator invocation will configure its
*sql* variation module to use sqlite database (sqlite3 Python module)
and /var/tmp/snmpsim.db database file:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=sql:dbtype:sqlite3,\
database:/var/tmp/snmpsim.db
IF you are using multiple database connections or database types
all through the *sql* variation module, you could refer to each
module instance in *.snmprec* files through a so-called variation
module alias.
The following command-line runs Simulator with two instances of the
*involatilecache* variation module (dbA & dbB) each instance using
distinct database file for storing their persistent values:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=writecache=dbA:file:/var/tmp/fileA.db \
--variation-module-options=writecache=dbB:file:/var/tmp/fileB.db
The syntax for *--variation-module-options=* module configuration string is
comma-separated list of semicolon-separated name:value pairs:
.. code-block:: bash
--variation-module-options=>
With exception for the first semicolon (which is considered to be a part
of module reference), the rest of separators could potentially intervene
with values. In that case user could use a doubled or tripled separator
tokens as an escaping aid:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=writecache:file::C:\TEMP\fileA.db
The same separator escaping method works for module options in *.snmprec* value
field. The only difference is that *.snmprec* value syntax uses equal sign and
commands as separators.
.. _standard-variation-modules:
Standard variation modules
--------------------------
The following variation modules are shipped with SNMP Simulator:
* The :ref:`numeric ` module produces a non-decreasing
sequence of integers over time
* The :ref:`notification ` module sends SNMP TRAP/INFORM
messages to distant SNMP entity
* The :ref:`writecache ` module accepts and stores (in memory/file)
SNMP variable-bindings being modified through SNMP SET command
* The :ref:`sql ` module reads/writes var-binds from/to a SQL database
* The :ref:`redis ` module reads/writes var-binds from/to a no-SQL
key-value store
* The :ref:`delay ` module delays SNMP response by specified
or random time
* The :ref:`error ` module flag errors in SNMP response PDU
* The :ref:`multiplex ` module uses a time series of .snmprec
files picking one at a time.
* The :ref:`subprocess ` module executes external process and
puts its stdout values into response
.. _variate-numeric:
Numeric module
++++++++++++++
The numeric module maintains and returns a changing in time integer value.
The law and rate of changing is configurable. This module is per-OID
stateful and configurable.
The numeric module accepts the following comma-separated key=value parameters
in *.snmprec* value field:
* min - the minimum value ever stored and returned by this module.
Default is 0.
* max - the maximum value ever stored and returned by this module.
Default is 2\*\*32 or 2\*\*64 (Counter64 type).
* initial - initial value. Default is min.
* atime - if non-zero, uses current time for value generation, not Simulator uptime.
* wrap - if zero, generated value will freeze when reaching 'max'. Otherwise
generated value is reset to 'min'.
* function - defines elapsed-time-to-generated-value relationship. Can be
any of reasonably suitable mathematical function from the
math module such as sin, log, pow etc. The only requirement
is that used function accepts a single integer argument.
Default is x = f(x).
* rate - elapsed time scaling factor. Default is 1.
* scale - function value scaling factor. Default is 1.
* offset - constant value by which the return value increases on each
invocation. Default is 0.
* deviation - random deviation maximum. Default is 0 which means no
deviation.
* cumulative - if non-zero sums up previous value with the newly
generated one. This is important when simulating COUNTER values.
This module generates values by execution of the following formula:
.. code-block:: python
TIME = TIMENOW if atime else UPTIME
v = function(TIME * rate) * scale + offset + RAND(-deviation, deviation)
v = v + prev_v if cumulative else v
Examples
~~~~~~~~
.. code-block:: bash
# COUNTER object
1.3.6.1.2.1.2.2.1.13.1|65:numeric|scale=10,deviation=1,function=cos,cumulative=1,wrap=1
# GAUGE object
1.3.6.1.2.1.2.2.1.14.1|66:numeric|min=5,max=50,initial=25
You are welcome to try the *numeric* module in action at our online
:ref:`public SNMP simulation service `:
.. code-block:: bash
$ snmpget -v2c -c variation/virtualtable demo.snmplabs.com \
IF-MIB::ifLastChange.1 IF-MIB::ifInOctets.1
IF-MIB::ifLastChange.1 = Timeticks: (16808012) 1 day, 22:41:20.12
IF-MIB::ifInOctets.1 = Counter32: 30374688
The numeric module can be used for simulating INTEGER, Counter32, Counter64,
Gauge32, TimeTicks objects.
.. _variate-delay:
Delay module
++++++++++++
The delay module postpones SNMP request processing for specified number of
milliseconds.
Delay module accepts the following comma-separated *key=value* parameters
in *.snmprec* value field:
* *value* - holds the var-bind value to be included into SNMP response.
In case of a string value containing commas, use the *hexvalue*
key instead.
* *hexvalue* - holds the var-bind value as a sequence of ASCII codes in hex
form. Before putting it into var-bind, hexvalue contents will
be converted into ASCII text.
* *wait* - specifies for how many milliseconds to delay SNMP response.
Default is 500ms. If the value exceeds 999999, request will never
be answered (PDU will be dropped right away).
* *deviation* - random delay deviation ranges (ms). Default is 0 which means
no deviation.
* *vlist* - a list of triples *comparison:constant:delay* to use on SET
operation for choosing delay based on value supplied in request.
The following comparison operators are supported: *eq*, *lt*, *gt*.
* *tlist* - a list of triples *comparison:time:delay* to use for choosing
request delay based on time of day (seconds, UNIX time).
The following comprison operators are supported: *eq*, *lt*, *gt*.
.. note::
Optional tag modifier in :ref:`.snmprec file ` is ignored by this variation module.
Examples
~~~~~~~~
The following entry makes Simulator responding with an integer value of
6 delayed by 0.1sec +- 0.2 sec (negative delays are casted into zeros):
.. code-block:: bash
1.3.6.1.2.1.2.2.1.3.1|2:delay|value=6,wait=100,deviation=200
Here the hexvalue takes shape of an OCTET STRING value '0:12:79:62:f9:40'
delayed by exactly 0.8 sec:
.. code-block:: bash
1.3.6.1.2.1.2.2.1.6.1|4:delay|hexvalue=00127962f940,wait=800
This entry drops PDU right away so the Manager will timed out:
.. code-block:: bash
1.3.6.1.2.1.2.2.1.7.1|2:delay|wait=1000000
The following entry uses module default on GET/GETNEXT/GETBULK operations.
However delays response by 0.1 sec if request value is exactly 0 and delays
response by 1 sec on value equal to 1.
.. code-block:: bash
1.3.6.1.2.1.2.2.1.8.1|2:delay|vlist=eq:0:100:eq:1:1000,value=1
The entry that follows uses module default on GET/GETNEXT/GETBULK operations,
however delays response by 0.001 sec if request value is exactly 100,
uses module default on values >= 100 but <= 300 (0.5 sec), and drops request
on values > 300:
.. code-block:: bash
1.3.6.1.2.1.2.2.1.9.1|67:delay|vlist=lt:100:1:gt:300:1000000,value=150
The next example will simulate an unavailable Agent past 01.04.2013 (1364860800
in UNIX time):
.. code-block:: bash
1.3.6.1.2.1.2.2.1.10.1|67:delay|tlist=gt:1364860800:1000000,value=150
.. note::
Since SNMP Simulator is internally an asynchronous, single-thread
application, any delayed response will block all concurrent requests
processing as well.
.. _variate-error:
Error module
++++++++++++
The error module flags a configured error at SNMP response PDU.
Error module accepts the following comma-separated key=value parameters
in *.snmprec* value field:
* *op* - either of *get*, *set* or *any* values to indicate SNMP operation
that would trigger error response. Here *get* also enables GETNEXT
and GETBULK operations. Default is *any*.
* *value* - holds the var-bind value to be included into SNMP response.
In case of a string value containing commas, use the *hexvalue* key
instead.
* *hexvalue* - holds the var-bind value as a sequence of ASCII codes in hex
form. Before putting it into var-bind, hexvalue contents will
be converted into ASCII text.
* *status* - specifies error to be flagged. The following SNMP errors codes are
supported:
- *genError*
- *noAccess*
- *wrongType*
- *wrongValue*
- *noCreation*
- *inconsistentValue*
- *resourceUnavailable*
- *commitFailed*
- *undoFailed*
- *authorizationError*
- *notWritable*
- *inconsistentName*
- *noSuchObject*
- *noSuchInstance*
- *endOfMib*
* *vlist* - a list of triples (comparison:constant:error) to use as an access
list for SET values.
The following comparison operators are supported:
- *eq*
- *lt*
- *gt*
The following SNMP errors are supported (case-insensitive):
- *genError*
- *noAccess*
- *wrongType*
- *wrongValue*
- *noCreation*
- *inconsistentValue*
- *resourceUnavailable*
- *commitFailed*
- *undoFailed*
- *authorizationError*
- *notWritable*
- *inconsistentName*
- *noSuchObject*
- *noSuchInstance*
- *endOfMib*
.. note::
Optional tag modifier in :ref:`.snmprec file ` is ignored by this variation module.
Examples
~~~~~~~~
.. code-block:: bash
1.3.6.1.2.1.2.2.1.1.1|2:error|op=get,status=authorizationError,value=1
1.3.6.1.2.1.2.2.1.2.1|4:error|op=set,status=commitfailed,hexvalue=00127962f940
1.3.6.1.2.1.2.2.1.3.1|2:error|vlist=gt:2:wrongvalue,value=1
1.3.6.1.2.1.2.2.1.6.1|4:error|status=noaccess
The first entry flags *authorizationError* on GET* and no error
on SET. Second entry flags *commitfailed* on SET but responds without errors
to GET*. Third entry fails with *wrongvalue* only on SET with values > 2.
Finally, forth entry always flags *noaccess* error.
.. _variate-writecache:
Writecache module
+++++++++++++++++
The *writecache* module lets you make particular OID at a *.snmprec* file
writable via SNMP SET operation. The new value will be stored in Simulator
process's memory or disk-based data store and communicated back on SNMP
GET/GETNEXT/GETBULK operations. Data saved in disk-based data store will
NOT be lost upon Simulator restart.
Module initialization allows for passing a name of a database file to be
used as a disk-based data store:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=writecache:file:/tmp/shelves.db
All modifed values will be kept and then subsequently used on a per-OID
basis in the specified file. If data store file is not specified, the
*writecache* module will keep all its data in [volatile] memory.
The *writecache* module accepts the following comma-separated *key=value*
parameters in *.snmprec* value field:
* *value* - holds the var-bind value to be included into SNMP response.
In case of a string value containing commas, use *hexvalue*
instead.
* *hexvalue* - holds the var-bind value as a sequence of ASCII codes in hex
form. Before putting it into var-bind, hexvalue contents will be converted
into ASCII text.
* *vlist* - a list of triples *comparison:constant:error* to use as an access
list for SET values.
The following comparison operators are supported:
- *eq*
- *lt*
- *gt*
The following SNMP errors are supported (case-insensitive):
- *genError*
- *noAccess*
- *wrongType*
- *wrongValue*
- *noCreation*
- *inconsistentValue*
- *resourceUnavailable*
- *commitFailed*
- *undoFailed*
- *authorizationError*
- *notWritable*
- *inconsistentName*
- *noSuchObject*
- *noSuchInstance*
- *endOfMib*
.. note::
Optional tag modifier in :ref:`.snmprec file ` is ignored by this variation module.
Examples
~~~~~~~~
.. code-block:: bash
1.3.6.1.2.1.1.3.0|2:writecache|value=42
In the above configuration, the initial value is 42 and can be modified by
the *snmpset* command (assuming correct community name and Simulator is
running locally).
.. code-block:: bash
$ snmpset -v2c -c community localhost 1.3.6.1.2.1.1.3.0 i 24
A more complex example involves using an access list. The following example
allows only values of 1 and 2 to be SET:
.. code-block:: bash
1.3.6.1.2.1.1.3.0|2:writecache|value=42,vlist=lt:1:wrongvalue:gt:2:wrongvalue
Any other SET values will result in SNNP WrongValue error in response.
.. note::
An attempt to SET a value of incompatible type will also result
in error.
.. _variate-multiplex:
Multiplex module
++++++++++++++++
The multiplex module allows you to serve many snapshots for a single Agent
picking just one snapshot at a time for answering SNMP request. That
simulates a more natural Agent behaviour including the set of OIDs changing
in time.
This module is usually configured to serve an OID subtree in an *.snmprec*
file entry.
The multiplex module accepts the following comma-separated *key=value*
parameters in *.snmprec* value field:
* *dir* - path to *.snmprec* files directory. If path is not absolute, it
is interpreted relative to Simulator's *--data-dir*. The
*.snmprec* files names here must have numerical names ordered
by time.
* *period* - specifies for how long to use each *.snmprec* snapshot before
switching to the next one. Default is 60 seconds.
* *wrap* - if true, instructs the module to cycle through all available
*.snmprec* files. If false, the system stops switching *.snmprec*
files as it reaches the last one. Default is false.
* *control* - defines a new OID to be used for switching *.snmprec* file
via SNMP SET command.
Examples
~~~~~~~~
.. code-block:: bash
1.3.6.1.2.1.2|:multiplex|dir=variation/snapshots,period=10.0
1.3.6.1.3.1.1|4|snmprec
The variation/snapshots/ directory contents is a name-ordered collection
of *.snmprec* files:
.. code-block:: bash
$ ls -l /usr/local/share/snmpsim/data/variation/snapshots
-rw-r--r-- 1 root staff 3145 Mar 30 22:52 00000.snmprec
-rw-r--r-- 1 root staff 3145 Mar 30 22:52 00001.snmprec
-rw-r--r-- 1 root staff 3145 Mar 30 22:52 00002.snmprec
...
Simulator can use each of these files only once through its
configured time series. To make it cycling over them, use *wrap*
option.
The *.snmprec* files served by the multiplex module can not include references
to variation modules.
In cases when automatic, time-based *.snmprec* multiplexing is not
applicable for simulation purposes, *.snmprec* selection can be configured:
.. code-block:: bash
1.3.6.1.2.1.2|:multiplex|dir=variation/snapshots,control=1.3.6.1.2.1.2.999
The following command will switch multiplex module to use the first
*.snmprec* file for simulation:
.. code-block:: bash
$ snmpset -v2c -c variation/multiplex localhost 1.3.6.1.2.1.2.999 i 0
Whenever *control* OID is present in multiplex module options, the
time-based multiplexing will not be used.
.. _variate-subprocess:
Subprocess module
+++++++++++++++++
The *subprocess* module can be used to execute an external program
passing it request data and using its stdout output as a response value.
Module invocation supports passing a *shell* option which (if true) makes
Simulator using shell for subprocess invocation. Default is True on
Windows platform and False on all others.
.. warning::
With *shell=True*, UNIX shell gets into the pipeline what compromises
security.
.. code-block:: bash
$ snmpsimd.py --variation-module-options=subprocess:shell:1
Value part of *.snmprec* line should contain space-separated path
to external program executable followed by optional command-line
parameters.
SNMP request parameters could be passed to the program to be executed
by means of macro variables. With subprocess module, macro variables
names always carry '@' sign at front and back (e.g. @MACRO@).
Macros
~~~~~~
* *@DATAFILE@* - resolves into the *.snmprec* file selected by
SNMP Simulator for serving current request
* *@OID@* - resolves into an OID of *.snmprec* line selected for serving
current request
* *@TAG@* - resolves into the component of *.snmprec* line selected
for serving current request
* *@ORIGOID@* - resolves into currently processed var-bind OID
* *@ORIGTAG@* - resolves into value type of currently processed var-bind
* *@ORIGVALUE@* - resolves into value of currently processed var-bind
* *@SETFLAG@* - resolves into '1' on SNMP SET, '0' otherwise
* *@NEXTFLAG@* - resolves into '1' on SNMP GETNEXT/GETBULK, '0' otherwise
* *@SUBTREEFLAG@* - resolves into '1' if the *.snmprec* file line selected
for processing current request serves a subtree of OIDs rather than a
single specific OID
* *@TRANSPORTDOMAIN@* - SNMP transport domain as an OID. It has a one-to-one
relationship with local interfaces Simulator is configured to listen at
* *@TRANSPORTADDRESS@* - peer transport address
* *@SECURITYMODEL@* - SNMPv3 Security Model
* *@SECURITYNAME@* - SNMPv3 Security Name
* *@SECURITYLEVEL@* - SNMPv3 Security Level
* *@CONTEXTNAME@* - SNMPv3 Context Name
Examples
~~~~~~~~
.. code-block:: bash
1.3.6.1.2.1.1.1.0|4:subprocess|echo SNMP Context is @DATAFILE@, received \
request for @ORIGOID@, matched @OID@, received tag/value \
"@ORIGTAG@"/"@ORIGVALUE@", would return value tagged @TAG@, SET request \
flag is @SETFLAG@, next flag is @NEXTFLAG@, subtree flag is \
@SUBTREEFLAG@
1.3.6.1.2.1.1.3.0|2:subprocess|date +%s
The first entry simply packs all current macro variables contents as a
response string my printing them to stdout with echo, second entry invokes
the UNIX date command instructing it to report elapsed UNIX epoch time.
Note *.snmprec* tag values -- executed program's stdout will be casted into
appropriate type depending of tag indication.
.. _variate-notification:
Notification module
+++++++++++++++++++
The *notification* module can send SNMP TRAP/INFORM notifications to
distant SNMP engines by way of serving SNMP request sent to Simulator.
In other words, SNMP message sent to Simulator can trigger sending
TRAP/INFORM message to pre-configured targets.
.. note::
No new process is created when sending SNMP notification -- *snmpsimd*'s
own SNMP engine is reused.
The *notification* module accepts the following comma-separated *key=value*
parameters in *.snmprec* value field:
* *value* - holds the variable-bindings value to be included into SNMP
response message.
* *op* - either of *get*, *set* or *any* values to indicate SNMP operation that
would trigger notification. Here *get* also enables GETNEXT and GETBULK
operations. Default is *set*.
* *vlist* - a list of pairs *comparison:constant* to use as event
triggering criteria to be compared against SET values.
The following comparisons are supported: *eq*, *lt*, *gt*.
* *version* - SNMP version to use (1,2c,3).
* *ntftype* - indicates notification type. Either *trap* or *inform*.
* *community* - SNMP community name. For v1, v2c only. Default is *public*.
* *trapoid* - SNMP TRAP PDU element. Default is *coldStar*.
* *uptime* - SNMP TRAP PDU element. Default is local SNMP engine uptime.
* *agentaddress* - SNMP TRAP PDU element. For v1 only. Default is local SNMP
engine address.
* *enterprise* - SNMP TRAP PDU element. For v1 only.
* *user* - USM username. For v3 only.
* *authproto* - USM auth protocol. For v3 only. Either *md5* or *sha*.
Default is *md5*.
* *authkey* - USM auth key. For v3 only.
* *privproto* - USM encryption protocol. For v3 only. Either *des* or *aes*.
Default is *des*.
* *privkey* - USM encryption key. For v3 only.
* *proto* - transport protocol. Either *udp* or *udp6*. Default is *udp*.
* *host*- hostname or network address to send notification to.
* *port* - UDP port to send notification to. Default is 162.
* *varbinds* - a semicolon-separated list of *OID:TAG:VALUE:OID:TAG:VALUE...*
of var-binds to add into SNMP TRAP PDU.
The following *TAG* values are recognized:
- *s* - OctetString (expects character string)
- *h* - OctetString (expects hex string)
- *i* - Integer32
- *o* - ObjectName
- *a* - IpAddress
- *u* - Unsigned32
- *g* - Gauge32
- *t* - TimeTicks
- *b* - Bits
- *I* - Counter64
.. note::
Optional tag modifier in :ref:`.snmprec file ` is ignored by this variation module.
Examples
~~~~~~~~
The following three *.snmprec* lines will send SNMP v1, v2c
and v3 notifications whenever Simulator is processing GET* and/or SET
request for configured OIDs:
.. code-block:: bash
1.3.6.1.2.1.1.1.0|4:notification|op=get,version=1,community=public,\
proto=udp,host=127.0.0.1,port=162,ntftype=trap,\
trapoid=1.3.6.1.4.1.20408.4.1.1.2.0.432,uptime=12345,agentaddress=127.0.0.1,\
enterprise=1.3.6.1.4.1.20408.4.1.1.2,\
varbinds=1.3.6.1.2.1.1.1.0:s:snmpsim agent:1.3.6.1.2.1.1.3.0:i:42,\
value=SNMPv1 trap sender
1.3.6.1.2.1.1.2.0|6:notification|op=set,version=2c,community=public,\
host=127.0.0.1,ntftype=trap,trapoid=1.3.6.1.6.3.1.1.5.1,\
varbinds=1.3.6.1.2.1.1.1.0:s:snmpsim agent:1.3.6.1.2.1.1.3.0:i:42,\
value=1.3.6.1.1.1
1.3.6.1.2.1.1.3.0|67:notification|version=3,user=usr-md5-des,authkey=authkey1,\
privkey=privkey1,host=127.0.0.1,ntftype=inform,trapoid=1.3.6.1.6.3.1.1.5.2,\
value=123456
.. note::
The delivery status of INFORM notifications is not communicated
back to the SNMP Manager working with Simulator.
.. _variate-sql:
SQL module
++++++++++
The *sql* module lets you keep subtrees of OIDs and their values in a
relational database. All SNMP operations are supported including
transactional SET.
Module invocation requires passing database type (sqlite3, psycopg2,
MySQL and any other compliant to
`Python DB-API `_
and importable as a Python module) and connect string which is database
dependant.
Besides DB-specific connect string key-value parameters,
sql module supports the following comma-separated key:value
options whilst running in recording mode:
* *dbtype* - SQL DBMS type in form of Python DPI API-compliant module.
It will be imported into Python as specified.
* *dbtable* - Default SQL table name to use for storing recorded
snapshot. It is used if table name is not specified in *.snmprec* file.
* *isolationlevel* - SQL transaction
`isolation level `_.
Allowed values are:
- *0* - READ UNCOMMITTED
- *1* - READ COMMITTED
- *2* - REPEATABLE READ
- *3* - SERIALIZABLE
Default is READ COMMITTED.
Database connection
~~~~~~~~~~~~~~~~~~~
For SQLite database invocation use the following command:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=sql:dbtype:sqlite3,database:/var/tmp/sqlite.db
To use a MySQL database for OID/value storage, the following Simulator
invocation would work:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=sql:dbtype:mysql.connector,\
host:127.0.0.1,port:3306,user:snmpsim,password:snmpsim,database:snmpsim
assuming you have the
`MySQL Connector/Python driver `_
is installed on the SNMP Simulator machine and a MySQL server running at 127.0.0.1 with MySQL user/password
snmpsim/snmpsim having full access to a database *snmpsim*
Another variation of MySQL server installation setup on a UNIX system employs
UNIX domain socket for client-server communication. In that case the following
command-line for *.snmprec* might work:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=sql:dbtype:mysql.connector,
unix_socket:/var/run/mysql/mysql.sock,user:snmpsim,password:snmpsim,
database:snmpsim
Alternatively, the `MySQL for Python `_ package
can be used for Simulator to MySQL connection:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=sql:dbtype:MySQLdb,host:127.0.0.1,
port:3306,user:snmpsim,passwd:snmpsim,db:snmpsim
If you wish to use `PostgresSQL `_
database for OID/value storage, the following command line will do the job:
.. code-block:: bash
$ snmpsimd.py --variation-module-options=sql:dbtype:psycopg2,
user:snmpsim,password:snmpsim,database:snmpsim
assuming you have the
`Psycopg Python adapter `_ is
installed on the SNMP Simulator machine and a PostgreSQL server running locally
(accessed through default UNIX domain socket) with PostgreSQL user/password
snmpsim/snmpsim having full access to a database *snmpsim*.
Simulation data configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The *.snmprec* value is expected to hold database table name to keep
all OID-value pairs served within selected *.snmprec* line. This table
can either be created automatically whenever *sql* module is invoked in
:ref:`recording mode ` or can be created and populated by
hand. In the latter case table layout should be as follows:
.. code-block:: bash
CREATE TABLE (oid text,
tag text,
value text,
maxaccess text)
The most usual setup is to keep many OID-value pairs in a database
table referred to by a *.snmprec* line serving a subtree of OIDs:
.. code-block:: bash
1.3.6.1.2.1.1|:sql|snmprec
In the above case all OIDs under 1.3.6.1.2.1.1 prefix will be
handled by a sql module using 'snmprec' table.
.. note::
To make SQL's ORDER BY clause working with OIDs, each sub-OID stored
in the database (in case of manual database population) must be
left-padded with a good bunch of spaces (each sub-OID width is
10 characters).
.. _variate-redis:
Redis module
++++++++++++
The *redis* module lets you keep subtrees of OIDs and their values in a no-SQL
key-value store. Besides complete SNMP operations support, Redis server-side
Lua scripts are also supported at both variation and :ref:`recording `
stages.
For redis variation module to work you must also have the
`redis-py `_
Python module installed on your system. Module invocation requires passing
Redis database connection string. The following parameters are supported:
* *host* - Redis hostname or IP address.
* *port* - Redis TCP port the server is listening on.
* *unix_socket* - UNIX domain socket Redis server is listening on.
* *db* - Redis database number.
* *password* - Redis database admission password.
.. code-block:: bash
$ snmpsimd.py --variation-module-options=redis:host:127.0.0.1,port:6379,db:0
SNMP variable-bindings recorded by Simulator in a single recording session is
placed into a dedicated key namespace called "key space". This allows for keeping
many versions of the same oid-value pair either belonging to different Agents or
recorded at different times. These key spaces are organized by pre-pending
a session-unique "key space" to each key put into Redis.
Simulator keeps recorded SNMP var-binds in three types of Redis data structures:
* Redis `String `_ where each key is
composed from key space and an OID joint with a dash
*-*. Values are SNMP data type tag and value in
:ref:`snmprec format `. This is where simulation
data is stored.
* Redis `LIST `_ object keyed
*|oids_ordering* where each element is a key from the
String above. The purpose of this structure is to order
OIDs what is important for serving SNMP GETNEXT/GETBULK queries.
* Redis `LIST `_ object keyed
** where each element is a from the
LIST above. The purpose of this structure is to consolidate many key
spaces into a sequence to form simulation data time series and ease
switching key spaces during simulation.
The data structure above can be created manually or automatically
whenever redis module is invoked in :ref:`recording mode `.
.. note::
To make string-typed OIDs comparable, sub-OIDs
of original OIDs must be left-padded with a good bunch of spaces
(up to 9) so that 1.3.6 will become ' 1. 3. 6'.
The .snmprec value is expected to hold more Redis database access
parameters, specific to OID-value pairs served within selected
*.snmprec* line.
* *key-spaces-id* - Redis key used to store a sequence of key-spaces referring
to oid-value collections used for simulation.
* *period* - number of seconds to switch from one key-space to another within
the key-spaces-id list.
* *evalsha* - Redis server side
`Lua script `_ to use for
accessing oid-value pairs stored in Redis. If this option is not given,
bare Redis GET/SET commands will be used instead.
Examples
~~~~~~~~
The most usual setup is to keep many OID-value pairs in a Redis database
referred to by a *.snmprec* line serving a subtree of OIDs:
.. code-block:: bash
1.3.6.1.2.1.1|:redis|key-spaces-id=1234
In the above case all OIDs under 1.3.6.1.2.1.1 prefix will be
handled by redis module using key spaces stored in "1234" Redis list.
For example, the "1234" keyed list can hold the following key spaces:
["4321", "4322", "4323"]. Then the following keys can be stored for
1.3.6.1.2.1.1.3.0 OID:
.. code-block:: bash
"4321-<9 spaces>.1<9 spaces>.3<9 spaces>.6 ... <9 spaces>.3<9 spaces>.0" = "67|812981"
"4322-<9 spaces>.1<9 spaces>.3<9 spaces>.6 ... <9 spaces>.3<9 spaces>.0" = "67|813181"
"4323-<9 spaces>.1<9 spaces>.3<9 spaces>.6 ... <9 spaces>.3<9 spaces>.0" = "67|814233"
If *period* parameter is passed through the *.snmprec* record, Simulator will
automatically change key space every *period* seconds when gathering data
for SNMP responses.
The *key-spaces-id* Redis list can also be manipulated by an external
application at any moment for the purpose of switching key spaces while
Simulator is running. Simulated values can also be modified on-the-fly
by an external application. However, when adding/removing OIDs, not just
modifying simulation data, care must be taken to keep the
-oids_ordering list ordered and synchronized with the
collection of -OID keys being used for storing simulation
data.
Besides using an external application for modifying simulation data, custom
`Lua script `_ can be used
for dynamic response and/or stored data modification. For example, the
following *.snmprec* entry will invoke server-side Lua script stored under
the name of "d94bf1756cda4f55bac9fe9bb872f" when getting/setting
Redis keys:
.. code-block:: bash
1.3.6.1.2.1.1|:redis|key-spaces-id=1234,evalsha=d94bf1756cda4f55bac9fe9bb872f
Here's an example Lua script, carrying no additional logic, stored at Redis
server using the `SCRIPT LOAD `_
Redis command:
.. code-block:: bash
$ redis-cli
127.0.0.1:6379> script load "
if table.getn(ARGV) > 0 then
return redis.call('set', KEYS[1], ARGV[1])
else
return redis.call('get', KEYS[1])
end
"
"d94bf1756cda4f55bac9fe9bb872f"
127.0.0.1:6379>
SNMP Simulator will perform SET/GET operations through its *evalsha* script
like this:
.. code-block:: bash
$ redis-cli
127.0.0.1:6379> evalsha "d94bf1756cda4f55bac9fe9bb872f" 1 "4321|1.
3. 6. 1. 2. 1. 2. 1.
1. 0" "4|linksys router"
127.0.0.1:6379> evalsha "d94bf1756cda4f55bac9fe9bb872f" 1 "4321|1.
3. 6. 1. 2. 1. 2. 1.
1. 0"
"4|linksys router"
127.0.0.1:6379>
A much more complex Lua scripts could be written to dynamically modify other
parts of the database, sending messages to other Redis-backed applications
through Redis's `Publish/Subscribe `_
facility.
Writing variation modules
-------------------------
Whenever you consider coding your own variation module, take a look at the
existing ones. The API is very simple - it basically takes three Python
functions (init, process, shutdown) where process() is expected to return
a var-bind pair per each invocation.
snmpsim-0.4.5/docs/source/addressing-agents.rst 0000664 0063214 0063214 00000014245 13175435562 022015 0 ustar ietingof ietingof
.. _addressing-simulation-data:
Addressing SNMP agents
======================
Sometimes SNMP managers can't easily change community name to address
particular simulated device instance as mention in the previous section.
Or it may be useful to present the same simulated device to different
SNMP managers differently.
.. _v2c-style-variation:
Legacy mode
-----------
When running in the *--v2c-arch* mode, SNMP Simulator attempts to find a *.snmprec*
file to fulfill a request by probing files in paths constructed from pieces of request
data. The path construction occurs by these rules and in this order:
1. *community / transport-ID / source-address* .snmprec
2. *community / transport-ID* .snmprec
3. *community* .snmprec
In other words, SNMP Simulator first tries to take community name,
destination and source addresses into account. If that does not match
any existing file, the next probe would use community name and
destination address. The last resort is to probe files by just
community name, as described in previous chapters.
Transport ID is an OID that also identifies local transport endpoint (e.g.
protocol, local address and port Simulator is listening on). It is reported
by the Simulator on startup for each endpoint it is listening on.
.. code-block:: bash
$ snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:1024 \
--agent-udpv6-endpoint='[::1]:1161'
...
SNMPv3 credentials:
Username: simulator
Authentication key: auctoritas
Authentication protocol: MD5
Encryption (privacy) key: privatus
Encryption protocol: DES
Listening at:
UDP/IPv4 endpoint 127.0.0.1:1024, transport ID 1.3.6.1.6.1.1.0
UDP/IPv6 endpoint ::1:1161, transport ID 1.3.6.1.2.1.100.1.2.0
When mapping source-address into a file, the following transformation
rules apply:
* UDP/IPv4:
192.168.1.1 remains 192.168.1.1
* UDP/IPv6:
fe80::12e:410f:40d1:2d13 becomes fe80__12e_410f_40d1_2d13
* UNIX local domain sockets:
/tmp/snmpmanager.FAB24243 becomes tmp/snmpmanager.FAB24243
For example, to make Simulator reporting from particular file to
a Manager at 192.168.1.10 whenever community name "public" is used and
queries are sent to Simulator over UDP/IPv4 to 192.168.1.1 interface
(which is reported by Simulator under transport ID 1.3.6.1.6.1.1.0),
device file *public/1.3.6.1.6.1.1.0/192.168.1.10.snmprec* would be used
for building responses.
.. _v3-style-variation:
SNMPv3 mode
-----------
When Simulator is NOT running in *--v2c-arch* mode, e.g. SNMPv3 engine is
used, similar rules apply to SNMPv3 context name rather than to SNMPv1/2c
community name. In that case device file path construction would work
like this:
1. *context-name / transport-ID / source-address* .snmprec
2. *context-name / transport-ID* .snmprec
3. *context-name* .snmprec
For example, to make Simulator reporting from particular file to
a Manager at 192.168.1.10 whenever context-name is an empty string and
queries are sent to Simulator over UDP/IPv4 to 192.168.1.1 interface
(which is reported by Simulator under transport ID 1.3.6.1.6.1.1.0),
device file *1.3.6.1.6.1.1.0/192.168.1.10.snmprec* would be used
for building responses.
.. _sharing-snmprec-files:
Sharing .snmprec files
----------------------
If a symbolic link is used as a data file, it would serve as an
alternative CommunityName/ContextName for the Managed Objects collection
read from the snapshot file being pointed to:
.. code-block:: bash
$ ls -l public.snmprec
-rw-r--r-- 1 root users 8036 Mar 12 23:26 public.snmprec
$ ln -s public.snmprec private.snmprec
$ ls -l private.snmprec
lrwxrwxrwx 1 root users 14 Apr 5 20:58 private.snmprec -> public.snmprec
Shared device files are mentioned explicitly on *snmpsimd.py* startup:
.. code-block:: bash
$ snmpsimd.py --agent-udpv4-endpoint=127.0.0.1:1161
Scanning "/home/root/.snmpsim/variation" directory for variation modules...
no directory
Scanning "/usr/local/share/snmpsim/variation" directory for variation modules...
8 more modules found
Initializing variation modules:
notification... OK
sql... FAILED: database type not specified
numeric... OK
subprocess... OK
delay... OK
multiplex... OK
error... OK
writecache... OK
Scanning "/usr/local/share/snmpsim/data" directory for *.snmpwalk, *.MVC,
*.sapwalk, *.snmprec, *.dump data files...
==================================================================
Data file /usr/local/share/snmpsim/data/public.snmprec, dbhash-indexed, closed
SNMPv1/2c community name: public
SNMPv3 context name: 4c9184f37cff01bcdc32dc486ec36961
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Shared data file data/public.snmprec, dbhash-indexed, closed
SNMPv1/2c community name: private
SNMPv3 context name: 2c17c6393771ee3048ae34d6b380c5ec
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
...
SNMPv3 credentials:
Username: simulator
Authentication key: auctoritas
Authentication protocol: MD5
Encryption (privacy) key: privatus
Encryption protocol: DES
Listening at:
UDP/IPv4 endpoint 127.0.0.1:1161, transport ID 1.3.6.1.6.1.1.0
Now Managers can then use different credentials to access and modify the
same set of Managed Objects.
.. code-block:: bash
$ snmpwalk -On -v2c -c public localhost:1161 1.3.6
.1.3.6.1.2.1.1.1.0 = STRING: Device description
.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.34547
.1.3.6.1.2.1.1.3.0 = Timeticks: (78171676) 9 days, 1:08:36.76
.1.3.6.1.2.1.1.4.0 = STRING: The Owner
.1.3.6.1.2.1.1.5.0 = STRING: DEVICE-192.168.1.1
.1.3.6.1.2.1.1.6.0 = STRING: TheCloud
.1.3.6.1.2.1.1.7.0 = INTEGER: 72
...
$ snmpwalk -On -v2c -c private localhost:1161 1.3.6
.1.3.6.1.2.1.1.1.0 = STRING: Device description
.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.34547
.1.3.6.1.2.1.1.3.0 = Timeticks: (78171676) 9 days, 1:08:36.76
.1.3.6.1.2.1.1.4.0 = STRING: The Owner
.1.3.6.1.2.1.1.5.0 = STRING: DEVICE-192.168.1.1
.1.3.6.1.2.1.1.6.0 = STRING: TheCloud
.1.3.6.1.2.1.1.7.0 = INTEGER: 72
...
Obviously, *snmpwalk* output is exactly the same for different community names
being used.
snmpsim-0.4.5/docs/source/tips-and-tricks.rst 0000664 0063214 0063214 00000013611 13175435562 021423 0 ustar ietingof ietingof
Tips and tricks
===============
Here we have a handful of observations and advices based on user feedback
and field deployment.
.. _tips-multiple-instances:
Multiple instances
------------------
SNMP Simulator is designed to simulate tens of thousands of SNMP Agents
at once. However, it is more optimized for large number of simulated
devices than to high sustainability under high load.
The reason is that, internally, SNMP Simulator is a single-threaded
application meaning it can only process a single request
at once. On top of that, some variation modules may bring additional delay to
request processing what may cause subsequent requests to build up in
input queue and contribute to increasing latency.
A simple receipt aimed at maximizing throughput and minimizing latency is
to run multiple instances of the *snmpsimd.py* bound to distinct IP
interfaces or ports what effectively makes SNMP Simulator executing multiple requests
at once for as long as they are sent towards different *snmpsimd.py* instances.
Here is how we invoke two *snmpsimd.py* instances at different IP interfaces
serving the same set of data files:
.. code-block:: bash
# snmpsimd.py --agent-udpv4-endpoint=127.0.0.1 \
--agent-udpv4-endpoint=127.0.0.2 \
--transport-id-offset=1 \
--data-dir=/usr/local/share/snmpsim/data \
--cache-dir=/var/tmp/snmpsim-A/cache \
--v2c-arch \
--process-user=nobody --process-group=nogroup \
--daemonize &&
# snmpsimd.py --agent-udpv4-endpoint=127.0.0.3 \
--agent-udpv4-endpoint=127.0.0.4 \
--transport-id-offset=3 \
--data-dir=/usr/local/share/snmpsim/data \
--cache-dir=/var/tmp/snmpsim-B/cache \
--v2c-arch \
--process-user=nobody --process-group=nogroup \
--daemonize &&
Several things to note here:
* The *snmpsimd.py* instances share common data directory however use
their own, dedicated cache directories.
* Each *snmpsimd.py* instance is listening on multiple IP interfaces
(for the purpose of :ref:`address-based `
simulation)
* The transport ID's are configured explicitly making the following
*--data-dir* layout possible:
.. code-block:: bash
$ tree data
data
|-- public
| |-- 1.3.6.1.6.1.1.1.snmprec
|-- public
| |-- 1.3.6.1.6.1.1.2.snmprec
|-- public
| |-- 1.3.6.1.6.1.1.3.snmprec
|-- public
|-- 1.3.6.1.6.1.1.4.snmprec
The end result is that each simulated Agent is available by a dedicated
IP address (represented by a transport ID) and common SNMPv1/v2c community
name *public*.
.. note::
To make use of IP address based Agent addressing feature the *--v2c-arch*
mode is used.
.. _tips-file-based-configuration:
File-based configuration
------------------------
The above setup can be scaled to as many IP interfaces as you can bring
up on your system. A really large number of IP interfaces might exceed
the length of the command-line. In that case it's advised to use the
*--args-from-file=*; option to pass local IP addresses
for Simulator to listen on.
.. code-block:: bash
# head ips.txt
--agent-udpv4-endpoint=127.0.0.1:161
--agent-udpv4-endpoint=127.0.0.2:161
--agent-udpv4-endpoint=127.0.0.3:161
...
--agent-udpv4-endpoint=127.0.1.254:161
# snmpsimd.py --args-from-file=ips.txt \
--data-dir=/usr/local/share/snmpsim/data \
--v2c-arch \
--process-user=nobody --process-group=nogroup \
--daemonize &
.. note::
Other parameters can also be present in the file passed to Simulator with
the *--args-from-file* option.
For the :ref:`address-based ` simulation it makes
to design your *--data-dir* layout matching transport ID's of the addresses
listed in the *ips.txt* file as shown above.
.. _tips-listing-simulated-devices:
Listing simulated agents
------------------------
When simulating a large pool of devices or if your Simulator runs on a
distant machine, it is convenient to have a directory of all simulated
devices and their community/context names. Simulator maintains this
information within its internal, dedicated SNMP context 'index':
.. code-block:: bash
$ snmpwalk -On -v2c -c index localhost:1161 .1.3.6
.1.3.6.1.4.1.20408.999.1.1.1 = STRING: "./data/127.0.0.1@public.snmprec"
.1.3.6.1.4.1.20408.999.1.2.1 = STRING: "data/127.0.0.1@public"
.1.3.6.1.4.1.20408.999.1.3.1 = STRING: "9535d96c66759362b3521f4e273fc749"
or
.. code-block:: bash
$ snmpwalk -O n -l authPriv -u simulator -A auctoritas -X privatus
-n index localhost:1161 .1.3.6
.1.3.6.1.4.1.20408.999.1.1.1 = STRING: "./data/127.0.0.1@public.snmprec"
.1.3.6.1.4.1.20408.999.1.2.1 = STRING: "data/127.0.0.1@public"
.1.3.6.1.4.1.20408.999.1.3.1 = STRING: "9535d96c66759362b3521f4e273fc749"
Where first column holds device file path, second - community string, and
third - SNMPv3 context name.
.. _tips-faster-response:
Faster response
---------------
The SNMPv3 architecture is inherently computationally heavy what makes SNMPv3
operations slower that SNMPv1/v2c ones. The SNMP Simulator can run
faster when it uses a much lighter and lower-level SNMPv1/v2c architecture
at the expense of not supporting v3 operations.
Use the *--v2c-arch* command line parameter to switch *snmpsimd.py* into
SNMPv1/v2c operation mode.
.. _tips-quick-startup:
Quicker startup
---------------
When Simulator runs over thousands of device files, startup may take time
(tens of seconds). Most of it goes into configuring SNMPv1/v2c credentials
into SNMPv3 engine so startup time can be dramatically reduced by either
using *--v2c-arch* mode or by turning off SNMPv1/v2c
configuration at SNMPv3 engine with *--v3-only* command-line flag.
snmpsim-0.4.5/docs/source/public-snmp-agent-simulator.rst 0000664 0063214 0063214 00000051016 13217212752 023741 0 ustar ietingof ietingof
.. _snmp-simulation-service:
SNMP simulation service
=======================
Free and publicly available SNMP simulation service is set up at *demo.snmplabs.com*.
.. _simulated-snmp-engines:
SNMP engines
------------
There are four independent SNMP engines configured at different UDP ports:
+--------------------------------+-------------------+----------------+
| **SNMP Engine ID** | **Hostname** | **UDP port** |
+--------------------------------+-------------------+----------------+
| 0x80004fb805636c6f75644dab22cc | demo.snmplabs.com | 161 (standard) |
+--------------------------------+-------------------+----------------+
| 0x80004fb805636c6f75644dab22cd | demo.snmplabs.com | 1161 |
+--------------------------------+-------------------+----------------+
| 0x80004fb805636c6f75644dab22ce | demo.snmplabs.com | 2161 |
+--------------------------------+-------------------+----------------+
| 0x80004fb805636c6f75644dab22cf | demo.snmplabs.com | 3161 |
+--------------------------------+-------------------+----------------+
.. note::
The simulation service is implemented by two independent UNIX processes.
One process runs the first SNMP engine (*0x80004fb805636c6f75644dab22cc*)
while the rest of SNMP engines in the table above are all local to the
second SNMP simulator process.
.. _simulated-community-names:
SNMP community names
--------------------
Each of the :ref:`SNMP engines ` supports a
:ref:`bunch of SNMP community names ` to address distinct
simulated SNMP agent.
To start with, the conventional **public** and **private** SNMP community names
are available as well.
.. _simulated-usm-users:
SNMPv3 USM users
----------------
Each :ref:`SNMP engines ` has the following USM users
configured to it. We support many SNMPv3 encryption protocol combinations indexed
by USM user name.
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| USM Security Name | Authentication protocol | Authentication key | Encryption protocol | Encryption key |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-none-none | - | - | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-none | MD5 | authkey1 | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-des | MD5 | authkey1 | DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-3des | MD5 | authkey1 | Triple DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-aes | MD5 | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-aes128 | MD5 | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-aes192 | MD5 | authkey1 | AES Reeder (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-aes192-blmt | MD5 | authkey1 | AES Blumenthal (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-aes256 | MD5 | authkey1 | AES Reeder (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-md5-aes256-blmt | MD5 | authkey1 | AES Blumenthal (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-none | SHA1 (96/160bit) | authkey1 | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-des | SHA1 (96/160bit) | authkey1 | DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-3des | SHA1 (96/160bit) | authkey1 | Triple DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-aes | SHA1 (96/160bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-aes128 | SHA1 (96/160bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-aes192 | SHA1 (96/160bit) | authkey1 | AES Reeder (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-aes192-blmt | SHA1 (96/160bit) | authkey1 | AES Blumenthal (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-aes256 | SHA1 (96/160bit) | authkey1 | AES Reeder (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha-aes256-blmt | SHA1 (96/160bit) | authkey1 | AES Blumenthal (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-none | SHA2 (128/224bit) | authkey1 | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-des | SHA2 (128/224bit) | authkey1 | DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-3des | SHA2 (128/224bit) | authkey1 | Triple DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-aes | SHA2 (128/224bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-aes128 | SHA2 (128/224bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-aes192 | SHA2 (128/224bit) | authkey1 | AES Reeder (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-aes192-blmt | SHA2 (128/224bit) | authkey1 | AES Blumenthal (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-aes256 | SHA2 (128/224bit) | authkey1 | AES Reeder (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha224-aes256-blmt | SHA2 (128/224bit) | authkey1 | AES Blumenthal (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-none | SHA2 (192/256bit) | authkey1 | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-des | SHA2 (192/256bit) | authkey1 | DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-3des | SHA2 (192/256bit) | authkey1 | Triple DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-aes | SHA2 (192/256bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-aes128 | SHA2 (192/256bit) | authkey1 | AES (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-aes192 | SHA2 (192/256bit) | authkey1 | AES Reeder (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-aes192-blmt | SHA2 (192/256bit) | authkey1 | AES Blumenthal (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-aes256 | SHA2 (192/256bit) | authkey1 | AES Reeder (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha256-aes256-blmt | SHA2 (192/256bit) | authkey1 | AES Blumenthal (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-none | SHA2 (256/384bit) | authkey1 | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-des | SHA2 (256/384bit) | authkey1 | DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-aes | SHA2 (256/384bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-aes128 | SHA2 (256/384bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-aes192 | SHA2 (256/384bit) | authkey1 | AES Reeder (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-aes192-blmt | SHA2 (256/384bit) | authkey1 | AES Blumenthal (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-aes256 | SHA2 (256/384bit) | authkey1 | AES Reeder (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha384-aes256-blmt | SHA2 (256/384bit) | authkey1 | AES Blumenthal (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-none | SHA2 (384/512bit) | authkey1 | - | - |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-des | SHA2 (384/512bit) | authkey1 | DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-3des | SHA2 (384/512bit) | authkey1 | Triple DES | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-aes | SHA2 (384/512bit) | authkey1 | AES (128bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-aes192 | SHA2 (384/512bit) | authkey1 | AES Reeder (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-aes192-blmt | SHA2 (384/512bit) | authkey1 | AES Blumenthal (192bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-aes256 | SHA2 (384/512bit) | authkey1 | AES Reeder (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
| usr-sha512-aes256-blmt | SHA2 (384/512bit) | authkey1 | AES Blumenthal (256bit) | privkey1 |
+------------------------+---------------------------+----------------------+-------------------------+------------------+
.. note::
The *Triple DES* authentication algorithm is implemented according to
`draft-reeder-snmpv3-usm-3desede-00 `_.
The AES-based privacy algorithms with key size 192bit+ are implemented along the lines of
`draft-blumenthal-aes-usm-04 `_)
with either Reeder or Blumenthal key localization.
.. _simulated-data:
Simulation data
---------------
Each of the :ref:`SNMP engines ` simulate multiple SNMP agents addressable
by the following SNMP query parameters:
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
| **SNMP agent** | **SNMP community** | **SNMP context name** |
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
| Dynamically variated, writable SNMP Agent | public | - |
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
| Static snapshot of a Linux host | recorded/linux-full-walk | a172334d7d97871b72241397f713fa12 |
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
| Static snapshot of a Windows XP PC | foreignformats/winxp2 | da761cfc8c94d3aceef4f60f049105ba |
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
| Series of static snapshots of live IF-MIB::interfaces | variation/multiplex | 1016117d6836664ee15b9b2af5642c3c |
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
| Simulated IF-MIB::interfaces table with ever increasing counters | variation/virtualtable | 329a935947144eb87ad0cdc5e08927b1 |
+--------------------------------------------------------------------+------------------------------------+------------------------------------+
TRAP sink
---------
Besides simulated SNMP Agents we are also running a multilingual
SNMP Notification Receiver. It will consume and optionally acknowledge
SNMP TRAP/INFORM messages you might send to *demo.snmplabs.com:162*.
SNMPv1/v2c community name is **public**. Configured SNMPv3 USM users
and keys are :ref:`the same ` as for SNMP agents.
Keep in mind that our SNMPv3 TRAP receiving service is configured for
authoritative SNMP engine ID **8000000001020304**. You would have to
explicitly configure it to your SNMP notification originator.
Obviously, you won't get any response from your TRAP messages, however
you will get an acknowledgement for the INFORM packets you send us.
Examples
--------
To query simulated live *IF-MIB::interfaces* over SNMPv2c use the
following command:
.. code-block:: bash
$ snmpwalk -v2c -c variation/virtualtable demo.snmplabs.com IF-MIB::interfaces
Some of the simulated objects are configured writable so you can experiment
with SNMP SET:
.. code-block:: bash
$ snmpwalk -v2c -c public demo.snmplabs.com system
...
SNMPv2-MIB::sysORDescr.1 = STRING: Please modify me
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (1) 0:00:00.01
$
$ snmpset -v2c -c private demo.snmplabs.com \
SNMPv2-MIB::sysORDescr.1 = 'Here is my new note'
SNMPv2-MIB::sysORDescr.1 = STRING: Here is my new note
$ snmpset -v2c -c private demo.snmplabs.com \
SNMPv2-MIB::sysORUpTime.1 = 321
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (321) 0:00:03.21
$ snmpwalk -v2c -c public demo.snmplabs.com system
...
SNMPv2-MIB::sysORDescr.1 = STRING: Here is my new note
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (321) 0:00:03.21
The above table is not complete, you could always figure out the most
actual list of simulated SNMP Agents by fetching relevant SNMP table
off the SNMP Simulator:
.. code-block:: bash
$ snmpwalk -v2c -c index demo.snmplabs.com 1.3.6
SNMPv2-SMI::enterprises.20408.999.1.1.1 = STRING: "/usr/snmpsim/data/1.3.6.1.6.1.1.0/127.0.0.1.snmprec"
SNMPv2-SMI::enterprises.20408.999.1.1.2 = STRING: "/usr/snmpsim/data/public.snmprec"
SNMPv2-SMI::enterprises.20408.999.1.1.3 = STRING: "/usr/snmpsim/data/foreignformats/winxp2.sapwalk"
...
Example SNMPv3 TRAP would look like this:
.. code-block:: bash
$ snmptrap -v3 -l authPriv -u usr-md5-des -A authkey1 -X privkey1 \
-e 8000000001020304 demo.snmplabs.com \
12345 1.3.6.1.4.1.20408.4.1.1.2 1.3.6.1.2.1.1.1.0 s hello
Normal SNMP engine ID discovery would work for SNMP INFORMs, hence
securityEngineId should not be used:
.. code-block:: bash
$ snmpinform -v3 -l authPriv -u usr-md5-des -A authkey1 -X privkey1 \
demo.snmplabs.com 12345 \
1.3.6.1.4.1.20408.4.1.1.2 1.3.6.1.2.1.1.1.0 s hello
Be advised that this is a free, experimental service provided as-is without
any guarantees on its reliability and correctness. Its use is generally covered
by SNMP Simulator :doc:`/license`.
In case of any troubles or suggestions, please
`open up a `_ GitHub issue.
snmpsim-0.4.5/docs/source/building-simulation-data.rst 0000664 0063214 0063214 00000042470 13175435562 023302 0 ustar ietingof ietingof
.. _building-simulation-data:
Building simulation data
========================
Simulation data can be put together by :ref:`SNMP walking donor agent `,
:ref:`wire-tapping SNMP traffic ` or :ref:`generating from MIBs `.
Regular output from :ref:`Net-SNMP snmpwalk ` or :ref:`Agent Pro `
tools can be used as-is. Finally, *.snmprec* files can be created by hand in a text editor or
automatically generated by some in-house script based on whatever data you got.
Walking SNMP agent
------------------
One way to obtain simulation data is to snapshot some existing SNMP agent
by running the *snmprec.py* tool against your prototype SNMP device. This tool
will execute a series of SNMP GETNEXT queries for a specified range of
OIDs over a chosen SNMP protocol version and store response data in
a .snmprec file.
.. _snmprec.py:
The donor SNMP agent recording session would look like this:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=192.168.1.1 --start-oid=1.3.6.1.2.1 \
--stop-oid=1.3.6.1.2.1.5 --output-file=snmpsim/data/recorded/linksys- \
system.snmprec
Scanning "/usr/local/share/snmpsim/variation" directory for variation
modules... none requested
SNMP version 2c
Community name: public
Querying UDP/IPv4 agent at 192.168.1.1:161
Sending initial GETNEXT request....
OIDs dumped: 304, elapsed: 1.94 sec, rate: 157.00 OIDs/sec
$
$ ls -l data/recorded/linksys-system.snmprec
-rw-r--r-- 1 root users 16252 Oct 26 14:49 data/recorded/linksys-system.snmprec
$
$ head data/recorded/linksys-system.snmprec
1.3.6.1.2.1.1.1.0|4|BEFSX41
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.3955.1.1
1.3.6.1.2.1.1.3.0|67|638239
1.3.6.1.2.1.1.4.0|4|Linksys
1.3.6.1.2.1.1.5.0|4|isp-gw
1.3.6.1.2.1.1.6.0|4|4, Petersburger strasse, Berlin, Germany
1.3.6.1.2.1.1.8.0|67|4
The *snmprec.py* tool can run over SNMPv1, v2c and v3. To configure SNMPv3 USM user
authentication and privacy algorithms, :ref:`follow the instructions `
for *snmpsimd.py*.
No special requirements exist for device file name and location. Just keep in
mind that at simulation time, *snmpsimd.py* treats *.snmprec* file path as SNMPv1/v2c
community name or SNMPv3 context name.
If you don't readily have some SNMP agent to play with, you're welcome to
use our publicly available :ref:`SNMP Simulator instance `.
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com --community=public
SNMP version 2c, Community name: public
Querying UDP/IPv4 agent at 195.218.195.228:161
Sending initial GETNEXT request....
1.3.6.1.2.1.1.1.0|4|SunOS zeus.snmplabs.com 4.1.3_U1 1 sun4m
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.20408
1.3.6.1.2.1.1.3.0|67|137765775
1.3.6.1.2.1.1.4.0|4|SNMP Laboratories, info@snmplabs.com
1.3.6.1.2.1.1.5.0|4|zeus.snmplabs.com
1.3.6.1.2.1.1.6.0|4|San Francisco, California, United States
...
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
OIDs dumped: 86, elapsed: 2.00 sec, rate: 42.00 OIDs/sec
.. note::
For better performance, consider using *GETBULK* SNMP command by passing *--use-getbulk*
option to the *snmprec.py* tool.
Faster recording may deliver more consistent SNMP objects state.
Since *.snmprec* is a plain text file, you can always edit it in your text editor. For mass changes
consider using the :ref:`datafile.py` tool.
.. _mib2dev.py:
MIB-based synthesis
-------------------
The other way to produce simulation data is to run the *mib2dev.py* tool against
virtually any MIB file. With that method you do not have to have a donor
device and the values, that would otherwise be reported by the donor SNMP
agent, will instead be chosen randomly.
Keep in mind that you may run into either of two issues with these randomly
chosen values:
* Some MIB data suggest certain correlation between formally unrelated
pieces of information. Such relationships may be described informally,
e.g. in natural language in the Description field. The automated
values generation procedure has no chance to assure proper correlations,
in that case the overall snapshot may appear inconsistent.
* Some data types specified in the MIB may impose certain restrictions on
the type instance values. For example an integer-typed Managed Object
may be allowed to be either 0 or 12. If a guessed value turns out to be 2,
it will be incompatible with this type. While it is possible to introspect
type objects and generate a compliant value, the *mib2dev.py* tool does
not do that [yet]. A non-compliant value will result an exception on
MIB node instantiation. In that case the *mib2dev.py* tool will revert
to an interactive mode and ask you for a compliant value.
* When building snapshots from MIBs you are not simulating the actual values
the SNMP agent is reporting. With MIB-based simulation you can basically
simulate the collection of OIDs, not the dependencies between them or
their interplay.
On the bright side, the *mib2dev.py* tool will respect Managed Object type
(e.g type associated with the OIDs), and produce valid indices for the MIB
tables.
Examples
++++++++
Here we produce simulation data for a portion of OID space of SNMPv2-MIB:
.. code-block:: bash
$ mib2dev.py --mib-module=SNMPv2-MIB --start-oid=1.3.6.1.2.1.1.1 \
--stop-oid=1.3.6.1.2.1.1.8
# MIB module: SNMPv2-MIB
1.3.6.1.2.1.1.1.0|4|Portez ce vieux
1.3.6.1.2.1.1.2.0|6|1.3.6.1.3.39.232.14.10.84.109.1
1.3.6.1.2.1.1.3.0|67|350728093
1.3.6.1.2.1.1.4.0|4|whisky
1.3.6.1.2.1.1.5.0|4|
1.3.6.1.2.1.1.6.0|4|whisky au juge blond
1.3.6.1.2.1.1.7.0|2|4
1.3.6.1.2.1.1.8.0|67|3138976393
# End of SNMPv2-MIB, 8 OID(s) dumped
The *mib2dev.py* tool can also generate values for SNMP conceptual tables.
It's doing that by iterating over table definition in MIB for specified
number of times.
The following command will analyze given MIB and produce two rows for
the *IF-MIB::ifTable* table:
.. code-block:: bash
$ mib2dev.py --mib-module=IF-MIB --start-oid=1.3.6.1.2.1.2.2 \
--stop-oid=1.3.6.1.2.1.2.3 --table-size=2
# MIB module: IF-MIB
# Starting table IF-MIB::ifTable (1.3.6.1.2.1.2.2)
# Synthesizing row #1 of table 1.3.6.1.2.1.2.2.1
# Finished table 1.3.6.1.2.1.2.2.1 (2 rows)
1.3.6.1.2.1.2.2.1.1.12|2|12
1.3.6.1.2.1.2.2.1.1.26|2|26
1.3.6.1.2.1.2.2.1.2.12|4|vieux whisky
1.3.6.1.2.1.2.2.1.2.26|4|ce vieux whisky au juge
1.3.6.1.2.1.2.2.1.3.12|2|29
1.3.6.1.2.1.2.2.1.3.26|2|1
1.3.6.1.2.1.2.2.1.4.12|2|28
1.3.6.1.2.1.2.2.1.4.26|2|16
1.3.6.1.2.1.2.2.1.5.12|66|3029607807
1.3.6.1.2.1.2.2.1.5.26|66|3150811331
1.3.6.1.2.1.2.2.1.6.12|4|
1.3.6.1.2.1.2.2.1.6.26|4|
1.3.6.1.2.1.2.2.1.7.12|2|1
1.3.6.1.2.1.2.2.1.7.26|2|1
1.3.6.1.2.1.2.2.1.8.12|2|6
1.3.6.1.2.1.2.2.1.8.26|2|5
1.3.6.1.2.1.2.2.1.9.12|67|2871454194
1.3.6.1.2.1.2.2.1.9.26|67|496156868
1.3.6.1.2.1.2.2.1.10.12|65|1488410552
1.3.6.1.2.1.2.2.1.10.26|65|3473823260
1.3.6.1.2.1.2.2.1.11.12|65|1727276906
1.3.6.1.2.1.2.2.1.11.26|65|342963679
1.3.6.1.2.1.2.2.1.12.12|65|1511248359
1.3.6.1.2.1.2.2.1.12.26|65|2207653511
1.3.6.1.2.1.2.2.1.13.12|65|4226165132
1.3.6.1.2.1.2.2.1.13.26|65|36536957
1.3.6.1.2.1.2.2.1.14.12|65|130591184
1.3.6.1.2.1.2.2.1.14.26|65|1852726355
1.3.6.1.2.1.2.2.1.15.12|65|3301920138
1.3.6.1.2.1.2.2.1.15.26|65|470729731
1.3.6.1.2.1.2.2.1.16.12|65|4148984503
1.3.6.1.2.1.2.2.1.16.26|65|953020685
1.3.6.1.2.1.2.2.1.17.12|65|1569764479
1.3.6.1.2.1.2.2.1.17.26|65|2095562772
1.3.6.1.2.1.2.2.1.18.12|65|238446444
1.3.6.1.2.1.2.2.1.18.26|65|3268308217
1.3.6.1.2.1.2.2.1.19.12|65|3230500934
1.3.6.1.2.1.2.2.1.19.26|65|566234076
1.3.6.1.2.1.2.2.1.20.12|65|3549197996
1.3.6.1.2.1.2.2.1.20.26|65|2834484035
1.3.6.1.2.1.2.2.1.21.12|66|68812076
1.3.6.1.2.1.2.2.1.21.26|66|1903146216
1.3.6.1.2.1.2.2.1.22.12|6|1.3.6.1.3
1.3.6.1.2.1.2.2.1.22.26|6|1.3.6.1.3.231.101.247.88
# End of IF-MIB, 44 OID(s) dumped
The range of values for automatic and random selection can be controlled
on a per-type basis with the *--counter-range*, *--counter64-range*,
*--gauge-range*, *--timeticks-range*, *--unsigned-range*,
*--integer32-range* options. Words for strings generations can be passed
via *--string-pool* option.
.. code-block:: bash
$ mib2dev.py --mib-module=UDP-MIB --table-size=1 --counter-range=0,100 \
--unsigned-range=100,200
# MIB module: UDP-MIB
# Starting table UDP-MIB::udpTable (1.3.6.1.2.1.7.5)
# Finished table 1.3.6.1.2.1.7.5.1 (1 rows)
# Starting table UDP-MIB::udpEndpointTable (1.3.6.1.2.1.7.7)
# Finished table 1.3.6.1.2.1.7.7.1 (1 rows)
1.3.6.1.2.1.7.1.0|65|66
1.3.6.1.2.1.7.2.0|65|49
1.3.6.1.2.1.7.3.0|65|91
1.3.6.1.2.1.7.4.0|65|14
1.3.6.1.2.1.7.5.1.1.169.148.104.225.14|64x|a99468e1
1.3.6.1.2.1.7.5.1.2.169.148.104.225.14|2|14
1.3.6.1.2.1.7.7.1.1.4.0.127.2.0.137.182|2|4
1.3.6.1.2.1.7.7.1.2.4.0.127.2.0.137.182|4|
1.3.6.1.2.1.7.7.1.3.4.0.127.2.0.137.182|66|127
1.3.6.1.2.1.7.7.1.4.4.0.127.2.0.137.182|2|2
1.3.6.1.2.1.7.7.1.5.4.0.127.2.0.137.182|4|
1.3.6.1.2.1.7.7.1.6.4.0.127.2.0.137.182|66|137
1.3.6.1.2.1.7.7.1.7.4.0.127.2.0.137.182|66|182
1.3.6.1.2.1.7.7.1.8.4.0.127.2.0.137.182|66|185
1.3.6.1.2.1.7.8.0|70|9808059939656837207
1.3.6.1.2.1.7.9.0|70|10931009272993024622
# End of UDP-MIB, 16 OID(s) dumped
If you wish to specify each value rather then rely on automatic random
selection, use *--manual-value* command line switch. If you would rather
have *mib2dev.py* tool to work out all the values by itself, consider
raising the *--automatic-values* max probes value (default is 5000 probes).
.. _pcap2dev.py:
Snooping SNMP traffic
---------------------
SNMP traffic traveling in a network can also be a source of simulation data.
The *pcap2dev.py* tool can snoop live or process captured traffic
finding SNMP Response messages there and using OID-value pairs for building
*.snmprec* files.
Since many SNMP agents can generate traffic over network within the a snooping
sessions, the *pcap2dev.py* tool is designed to classify captured SNMP traffic
on the per-Agent basis and build dedicated data file for each Agent seen on
the network.
The *--output-dir=* command-line option specifies a directory
where *pcap2dev.py* tool would put generated data files into. Data files paths
are crafted so that Simulator would act closer to the prototype Agents
meaning:
1. Data files for each Agent is put under a separate directory
resembling Simulator's transport IDs which correspond to
UDP ports Simulator is listening on.
2. Original SNMPv1/v2c community names are preserved.
Imagine we have two SNMP Agents (192.168.1.1 & 192.168.1.2) sending
responses over a network we are snooping on. Here's a tcpdump report just
to illustrate the idea:
.. code-block:: bash
# tcpdump -i lo
listening on lo, link-type EN10MB (Ethernet), capture size 65535 bytes
20:05:20.799706 IP 192.168.1.9.55803 > 192.168.1.1.snmp: GetRequest(28) system .sysDescr.0
20:05:20.800027 IP 192.168.1.1.snmp > 192.168.1.9.55803: GetResponse(92) system.sysDescr.0="Linux jupiter 2.6.37.6-smp #2 SMP Fri May 17 22:03:50 CDT 2013 i686"
20:05:21.125421 IP 192.168.1.9.55803 > 192.168.1.2.snmp: GetRequest(28) system.sysDescr.0
20:05:21.924022 IP 192.168.1.2.snmp > 192.168.1.9.55803: GetResponse(92) system.sysDescr.0="Linux saturn 2.6.37.4-smp #2 SMP Fri May 10 21:31:32 CDT 2013 i686"
The *pcap2dev* tool would create two directories with fixed prefix
(1.3.6.1.6.1.1) and increasing suffix parts (0 & 1) to put generated data files
for each Agent there. That is, all data files for Agent 192.168.1.1 would
go under 1.3.6.1.6.1.1.0/ while data files for Agent 192.168.1.2 would end
up in 1.3.6.1.6.1.1.1/.
Snooped SNMP communities also take part in data file path creation -- they
appear as a last component of the path. For example, if Agent 192.168.1.1
used SNMP communities 'wallace' and 'gromit' (on different occasions) and
Agent 192.168.1.2 responded with community 'cheese', generated data files
would look like this:
.. code-block:: bash
$ tree /tmp/recording
/tmp/recording
|--- 1.3.6.1.6.1.1.0
| |
| ---- gromit.snmprec
| |
| ---- wallace.snmprec
|
|--- 1.3.6.1.6.1.1.1
|
---- cheese.snmprec
To build data files from a network capture file, use *--capture-file=*
command-line option. Capture file format should be either
`pcap or pcap-ng `_.
Most capturing tools (like `tcpdump `_)
support these file formats.
You could also use
`tcpdump filter `_
as a parameter to *--packet-filter=* option to narrow packets selection
criteria. Default packet filter is *udp and src port 161*.
Examples
++++++++
With all that theory in mind, we can now run a live snooping session:
.. code-block:: bash
# pcap2dev.py --output-dir=/tmp/recording --listen-interface=lo
Listening on interface lo in non-promiscuous mode
Applying packet filter "udp and src port 161"
Listening on interface "lo", kill me when you are done.
^C
Shutting down process...
Creating simulation context 1.3.6.1.6.1.1.0/gromit
at /tmp/recording/1.3.6.1.6.1.1.0/gromit.snmprec
Creating simulation context 1.3.6.1.6.1.1.0/wallace
at /tmp/recording/1.3.6.1.6.1.1.0/wallace.snmprec
Creating simulation context 1.3.6.1.6.1.1.1/cheese
at /tmp/recording/1.3.6.1.6.1.1.1/cheese.snmprec
PCap statistics:
packets snooped: 64
packets dropped: 24
packets dropped: by interface 0
SNMP statistics:
empty packets: 0
OIDs seen: 19
UDP packets: 19
Response PDUs seen: 19
contexts seen: 3
SNMP exceptions: 0
SNMP errors: 0
snapshots taken: 0
agents seen: 2
unknown L2 protocol: 0
IP packets: 19
bad packets: 0
Here's one of data files produced:
.. code-block:: bash
$ cat /tmp/recording/1.3.6.1.6.1.1.0/gromit.snmprec
1.3.6.1.2.1.1.1.0|4|Linux jupiter 2.6.37.6-smp #2 SMP Fri May 17 22:03:50 CDT 2013 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|311441639
1.3.6.1.2.1.1.4.0|4|postmaster@jupiter
1.3.6.1.2.1.1.5.0|4|jupiter
1.3.6.1.2.1.1.6.0|4|Jupiter
1.3.6.1.2.1.1.8.0|67|1
You can now move data files into your Simulator's data directory and
fire up simulation.
The *pcap2dev.py* tool can also invoke
:ref:`variation modules ` to feed recorded
data through them.
.. _snmpwalk-dump:
Using snmpwalk reporting
------------------------
In some cases you may not be able to run :ref:`snmprec.py `
against a donor device. That can happen, for instance, if you can't setup
*snmprec.py* on a system from where donor device is available or donor device
is gone leaving you with just Net-SNMP's *snmpwalk* dumps someone have collected
for you.
Simulator provides limited support for snmpwalk-generated data files.
Just save *snmpwalk* output into a file with *.snmpwalk* suffix and put
it under the *--data-dir*. Once Simulator finds and indexes
the *.snmpwalk* files, it will report them just as it does for its
native *.snmprec* files.
.. code-block:: bash
$ snmpwalk -v2c -c public -ObentU localhost 1.3.6 > myagent.snmpwalk
.. note::
Make sure you get *snmpwalk* producing plain OIDs and values!
By default snmpwalk tries to beautify raw data from Agent with MIB
information. As beautified data may not contain OIDs and numeric values,
it could not be interpreted by the Simulator. Therefore always run
*snmpwalk* with the "-ObentU" options.
The *.snmpwalk* lines that can't be parsed by the Simulator will be skipped
and details reported to stdout for your further consideration. In particular,
current implementation does not cope well with multi-line strings
sometimes produced by the *snmpwalk* tool.
Alternatively, you can convert the *.snmpwalk* files into *.snmprec* ones
by running them through the :ref:`datafile.py ` tool.
.. _agent-pro-dump:
Using Simple Agent Pro samples
------------------------------
Another possible format for taking and storing SNMP snapshots is
SimpleSoft `Simple Agent Pro `_
data files. Although we have neither seen any documentation on its data files
format nor ever owned or used Simple Agent Pro software, a sample data file
`published on the Internet `_
reveals that SimpleAgentPro's file format is very similar to Net-SNMP's
snmpwalk. It essentially looks like *snmpwalk* output with different field
separators.
.. note::
SNMP Simulator might not support certain features/dialects of
SimpleAgentPro data files format so your mileage may vary.
In case you store your SNMP snapshots archives in SimpleAgentPro's
data files and wish to use them with this Simulator, just put your
SimpleAgentPro-formatted SNMP snapshot information (excluding comments)
into text files having *.sapwalk* suffix and let Simulator find and index
them. Once completed, Simulator will report access information for them
just as it does for its native *.snmprec* files.
Alternatively, you can convert the *.sapwalk* files into *.snmprec* ones
by running them through the :ref:`datafile.py ` tool.
snmpsim-0.4.5/docs/source/quickstart.rst 0000664 0063214 0063214 00000006566 13175435562 020614 0 ustar ietingof ietingof
Quick start
===========
.. toctree::
:maxdepth: 2
Installation
------------
SNMP Simulator is written in Python and depends on other Python libraries.
The easiest way to deploy SNMP Simulator is by downloading it from PyPI:
.. code-block:: bash
$ virtualenv venv
$ source venv/bin/activate
$ pip install snmpsim
Run the simulator
-----------------
Once installed, invoke *snmpsimd.py* daemon and point it to a directory containing
simulation data:
.. code-block:: bash
$ snmpsimd.py --data-dir=./data --agent-udpv4-endpoint=127.0.0.1:1024
Test the setup
--------------
Now you can query simulated agent(s) with Net-SNMP's command-line tools
which are usually shipped along with your operating system:
.. code-block:: bash
$ snmpwalk -v2c -c public 127.0.0.1:1024 system
SNMPv2-MIB::sysDescr.0 = STRING: Linux zeus 4.8.6.5-smp #2 SMP Sun Nov 13 14:58:11 CDT 2016 i686
SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (126714301) 14 days, 15:59:03.01
SNMPv2-MIB::sysContact.0 = STRING: SNMP Laboratories, info@snmplabs.com
SNMPv2-MIB::sysName.0 = STRING: new system name
SNMPv2-MIB::sysLocation.0 = STRING: San Francisco, California, United States
SNMPv2-MIB::sysServices.0 = INTEGER: 72
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (126714455) 14 days, 15:59:04.55
Simulation data for each simulated SNMP agent is stored in simple plain-text file.
Each line in represents a single SNMP object in form of pipe-separated fields
*OID|TYPE|VALUE*.
.. code-block:: bash
$ cat ./data/public.snmprec
1.3.6.1.2.1.1.1.0|4|Linux 2.6.25.5-smp SMP Tue Jun 19 14:58:11 CDT 2007 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|233425120
1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940
1.3.6.1.2.1.4.22.1.3.2.192.21.54.7|64x|c3dafe61
...
Simulator uses the parameters (such as SNMP community name or SNMPv3 context
or IP address) of SNMP query to choose .snmprec file to respond with.
Simulate existing SNMP agent
----------------------------
Besides creating simulation data by hand, you can generate it from some
existing SNMP agent. Here we use publicly available SNMP Simulator instance
as a donor device:
.. code-block:: bash
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com --output-file=./data/public.snmprec
SNMP version 2c, Community name: public
Querying UDP/IPv4 agent at 195.218.195.228:161
Agent response timeout: 3.00 secs, retries: 3
Sending initial GETNEXT request for 1.3.6 (stop at )....
OIDs dumped: 182, elapsed: 11.97 sec, rate: 7.00 OIDs/sec, errors: 0
Simulate from MIB
-----------------
Alternatively, you could build simulation data from a MIB file:
.. code-block:: bash
$ mib2dev.py --output-file=./data/public.snmprec --mib-module=IF-MIB
# MIB module: IF-MIB, from the beginning till the end
# Starting table IF-MIB::ifTable (1.3.6.1.2.1.2.2)
# Synthesizing row #1 of table 1.3.6.1.2.1.2.2.1
...
# Finished table 1.3.6.1.2.1.2.2.1 (10 rows)
# End of IF-MIB, 177 OID(s) dumped
You can even sniff network traffic on the wire recovering SNMP messages there
and building simulation data from it.
Besides static files, SNMP simulator can be configured to call its plugin modules
for simulation data. We ship plugins to interface SQL and noSQL databases, file-based
key-value stores and other sources of information.
snmpsim-0.4.5/docs/source/development.rst 0000664 0063214 0063214 00000003571 13175435562 020735 0 ustar ietingof ietingof
Future features
===============
We are thinking of further SNMP Simulator development in these particular
areas:
* Re-work data files indices implementation to allow unordered OIDs
and better performance on GETNEXT/GETBULK operations.
* Let variation modules configuring custom SNMPv1/v2c community names and
SNMPv3 context names. That would be the alternative way to address simulation
data.
* Simulating SNMP table: while the latest Simulator release supports
writable OIDs and SQL backend (which also allows for writable OIDs with
potentially complex logic triggered by their access), we think a lightweight
variation module readily implementing a RowStatus-driven SNMP table would
also be handy. Users of that module would invoke it from their *.snmprec*
file for an OID subtree serving their SNMP table. The module would
accept basic configuration parameters such as: table columns OIDs and types,
valid index ranges, default initialization parameters.
* Allow rendering simulation data from a `template `_
based on user-supplied variables possibly taken from SNMP query, process and
host contexts.
* SNMP Notifications: current implementation can fully simulate SNMP Command
Generator operations. It would be nice to be able to record SNMP Notifications
coming from live SNMP Agents, store and replay them at configured rate and
possibly modified (variated) values.
* Implement REST API to *snmpsimd.py* to let user record and replay snapshots through
a web browser or in-house automation scripts.
* Composable devices: the idea is to be able to compose simulated device from
specific MIBs the device implements.
If you need one of these or some other feature - please open
a `feature request `_ at
GitHub or e-mail directly to *etingof@gmail.com* to discuss contractual
work possibilities.
snmpsim-0.4.5/docs/source/conf.py 0000664 0063214 0063214 00000013504 13412164152 017141 0 ustar ietingof ietingof #!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SNMP Simulator documentation build configuration file, created by
# sphinx-quickstart on Mon Oct 23 17:36:06 2017.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.viewcode']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['.templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# The master toctree document.
master_doc = 'contents'
# General information about the project.
project = 'SNMP Simulator'
copyright = '2010-2019, Ilya Etingof'
author = 'Ilya Etingof'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = []
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
'logo': 'logo.svg',
'description': 'Brewing free software for the greater good
',
'show_powered_by': False,
'github_user': 'etingof',
'github_repo': 'snmpsim',
'fixed_sidebar': True,
}
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'relations.html',
'searchbox.html',
'donate.html',
]
}
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
html_favicon = '.static/favicon.ico'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['.static']
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# This is required for the alabaster theme
# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
# html_sidebars = {
# '**': [
# 'relations.html', # needs 'show_related': True theme option to display
# 'searchbox.html',
# ]
# }
# If true, links to the reST sources are added to the pages.
html_show_sourcelink = False
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
html_show_sphinx = False
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'SNMPSimulatordoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'SNMPSimulator.tex', 'SNMP Simulator Documentation',
'Ilya Etingof', 'manual'),
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'snmpsimulator', 'SNMP Simulator Documentation',
[author], 1)
]
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'SNMPSimulator', 'SNMP Simulator Documentation',
author, 'SNMPSimulator', 'One line description of project.',
'Miscellaneous'),
]
snmpsim-0.4.5/docs/source/changelog.rst 0000664 0063214 0063214 00000000065 13175435562 020335 0 ustar ietingof ietingof
Changelog
=========
.. include:: ../../CHANGES.txt
snmpsim-0.4.5/requirements.txt 0000664 0063214 0063214 00000000025 13345010600 016661 0 ustar ietingof ietingof pysnmp>=4.4.3,<5.0.0
snmpsim-0.4.5/LICENSE.txt 0000664 0063214 0063214 00000002466 13412164152 015242 0 ustar ietingof ietingof Copyright (c) 2010-2019, Ilya Etingof
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
snmpsim-0.4.5/runtests.sh 0000775 0063214 0063214 00000000373 13051053434 015637 0 ustar ietingof ietingof #!/usr/bin/env bash
set -e
python scripts/snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com
# this fails with new pysnmp's TEXTUAL-CONVENTION parser
# python scripts/mib2dev.py --mib-module=IF-MIB
python scripts/mib2dev.py --mib-module=SNMPv2-MIB
snmpsim-0.4.5/snmpsim.egg-info/ 0000775 0063214 0063214 00000000000 13412164240 016565 5 ustar ietingof ietingof snmpsim-0.4.5/snmpsim.egg-info/SOURCES.txt 0000664 0063214 0063214 00000006631 13412164240 020457 0 ustar ietingof ietingof CHANGES.txt
LICENSE.txt
MANIFEST.in
README.md
THANKS.txt
TODO.txt
devel-requirements.txt
requirements.txt
runtests.sh
setup.cfg
setup.py
data/README.txt
data/bgp.snmprec
data/cisco_16_switch.snmprec
data/hp_perf.snmprec
data/hp_perf2.snmprec
data/public.snmprec
data/1.3.6.1.6.1.1.0/127.0.0.1.snmprec
data/1.3.6.1.6.1.1.0/README-v2c.txt
data/1.3.6.1.6.1.1.0/README-v3.txt
data/foreignformats/README.txt
data/foreignformats/linux.snmpwalk
data/foreignformats/winxp1.snmpwalk
data/foreignformats/winxp2.sapwalk
data/mib2dev/host-resources-mib.snmprec
data/mib2dev/ip-mib.snmprec
data/mib2dev/tcp-mib.snmprec
data/mib2dev/udp-mib.snmprec
data/public/1.3.6.1.2.1.100.1.13.0.snmprec
data/public/README-v2c.txt
data/public/README-v3.txt
data/public/1.3.6.1.2.1.100.1.2.0/README-v2c.txt
data/public/1.3.6.1.2.1.100.1.2.0/README-v3.txt
data/public/1.3.6.1.2.1.100.1.2.0/__1.snmprec
data/public/1.3.6.1.6.1.1.0/127.0.0.1.snmprec
data/public/1.3.6.1.6.1.1.0/README-v2c.txt
data/public/1.3.6.1.6.1.1.0/README-v3.txt
data/recorded/linksys-system.snmprec
data/recorded/linux-full-walk.snmprec
data/recorded/solaris-system.snmprec
data/recorded/udp-endpoint-table-walk.snmprec
data/recorded/winxp-full-walk.snmprec
data/variation/README.txt
data/variation/delay.snmprec
data/variation/error.snmprec
data/variation/multiplex.snmprec
data/variation/notification.snmprec
data/variation/sql.snmprec
data/variation/subprocess.snmprec
data/variation/virtualtable.snmprec
data/variation/writecache.snmprec
data/variation/multiplex/00000.snmprec
data/variation/multiplex/00001.snmprec
data/variation/multiplex/00002.snmprec
data/variation/multiplex/00003.snmprec
data/variation/multiplex/00004.snmprec
data/variation/multiplex/00005.snmprec
data/variation/multiplex/00006.snmprec
data/variation/multiplex/00007.snmprec
data/variation/multiplex/00008.snmprec
data/variation/multiplex/00009.snmprec
data/variation/multiplex/00010.snmprec
data/variation/multiplex/README.txt
docs/source/addressing-agents.rst
docs/source/building-simulation-data.rst
docs/source/changelog.rst
docs/source/conf.py
docs/source/contents.rst
docs/source/development.rst
docs/source/license.rst
docs/source/managing-simulation-data.rst
docs/source/public-snmp-agent-simulator.rst
docs/source/quickstart.rst
docs/source/recording-with-variation-modules.rst
docs/source/simulating-agents.rst
docs/source/simulation-with-variation-modules.rst
docs/source/tips-and-tricks.rst
docs/source/.static/logo.svg
scripts/datafile.py
scripts/mib2dev.py
scripts/pcap2dev.py
scripts/snmprec.py
scripts/snmpsimd.py
snmpsim/__init__.py
snmpsim/confdir.py
snmpsim/daemon.py
snmpsim/error.py
snmpsim/log.py
snmpsim/mltsplit.py
snmpsim.egg-info/PKG-INFO
snmpsim.egg-info/SOURCES.txt
snmpsim.egg-info/dependency_links.txt
snmpsim.egg-info/not-zip-safe
snmpsim.egg-info/requires.txt
snmpsim.egg-info/top_level.txt
snmpsim/grammar/__init__.py
snmpsim/grammar/abstract.py
snmpsim/grammar/dump.py
snmpsim/grammar/mvc.py
snmpsim/grammar/sap.py
snmpsim/grammar/snmprec.py
snmpsim/grammar/walk.py
snmpsim/record/__init__.py
snmpsim/record/abstract.py
snmpsim/record/dump.py
snmpsim/record/mvc.py
snmpsim/record/sap.py
snmpsim/record/snmprec.py
snmpsim/record/walk.py
snmpsim/record/search/__init__.py
snmpsim/record/search/database.py
snmpsim/record/search/file.py
variation/delay.py
variation/error.py
variation/multiplex.py
variation/notification.py
variation/numeric.py
variation/redis.py
variation/sql.py
variation/subprocess.py
variation/writecache.py snmpsim-0.4.5/snmpsim.egg-info/not-zip-safe 0000664 0063214 0063214 00000000001 13075632035 021022 0 ustar ietingof ietingof
snmpsim-0.4.5/snmpsim.egg-info/top_level.txt 0000664 0063214 0063214 00000000010 13412164237 021314 0 ustar ietingof ietingof snmpsim
snmpsim-0.4.5/snmpsim.egg-info/PKG-INFO 0000664 0063214 0063214 00000003261 13412164237 017672 0 ustar ietingof ietingof Metadata-Version: 1.0
Name: snmpsim
Version: 0.4.5
Summary: SNMP Agents simulator
Home-page: https://github.com/etingof/snmpsim
Author: Ilya Etingof
Author-email: etingof@gmail.com
License: BSD
Description: SNMP Simulator is a tool that acts as multitude of SNMP Agents built into real physical devices, from SNMP Manager's point of view. Simulator builds and uses a database of physical devices' SNMP footprints to respond like their original counterparts do.
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Communications
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Networking :: Monitoring
snmpsim-0.4.5/snmpsim.egg-info/dependency_links.txt 0000664 0063214 0063214 00000000001 13412164237 022641 0 ustar ietingof ietingof
snmpsim-0.4.5/snmpsim.egg-info/requires.txt 0000664 0063214 0063214 00000000025 13412164237 021170 0 ustar ietingof ietingof pysnmp>=4.4.3,<5.0.0
snmpsim-0.4.5/variation/ 0000775 0063214 0063214 00000000000 13412164240 015401 5 ustar ietingof ietingof snmpsim-0.4.5/variation/delay.py 0000664 0063214 0063214 00000013302 13412164152 017052 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import time
import random
from snmpsim.grammar.snmprec import SnmprecGrammar
from snmpsim.record.snmprec import SnmprecRecord
from snmpsim.mltsplit import split
from snmpsim import log
from snmpsim import error
def init(**context):
random.seed()
def variate(oid, tag, value, **context):
if not context['nextFlag'] and not context['exactMatch']:
return context['origOid'], tag, context['errorStatus']
if 'settings' not in recordContext:
recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
if 'hexvalue' in recordContext['settings']:
recordContext['settings']['value'] = [int(recordContext['settings']['hexvalue'][x:x + 2], 16) for x in
range(0, len(recordContext['settings']['hexvalue']), 2)]
if 'wait' in recordContext['settings']:
recordContext['settings']['wait'] = float(recordContext['settings']['wait'])
else:
recordContext['settings']['wait'] = 500.0
if 'deviation' in recordContext['settings']:
recordContext['settings']['deviation'] = float(recordContext['settings']['deviation'])
else:
recordContext['settings']['deviation'] = 0.0
if 'vlist' in recordContext['settings']:
vlist = {}
recordContext['settings']['vlist'] = split(recordContext['settings']['vlist'], ':')
while recordContext['settings']['vlist']:
o, v, d = recordContext['settings']['vlist'][:3]
recordContext['settings']['vlist'] = recordContext['settings']['vlist'][3:]
d = int(d)
typeTag, _ = SnmprecRecord.unpackTag(tag)
v = SnmprecGrammar.tagMap[typeTag](v)
if o not in vlist:
vlist[o] = {}
if o == 'eq':
vlist[o][v] = d
elif o in ('lt', 'gt'):
vlist[o] = v, d
else:
log.msg('delay: bad vlist syntax: %s' % recordContext['settings']['vlist'])
recordContext['settings']['vlist'] = vlist
if 'tlist' in recordContext['settings']:
tlist = {}
recordContext['settings']['tlist'] = split(recordContext['settings']['tlist'], ':')
while recordContext['settings']['tlist']:
o, v, d = recordContext['settings']['tlist'][:3]
recordContext['settings']['tlist'] = recordContext['settings']['tlist'][3:]
v = int(v)
d = int(d)
if o not in tlist:
tlist[o] = {}
if o == 'eq':
tlist[o][v] = d
elif o in ('lt', 'gt'):
tlist[o] = v, d
else:
log.msg('delay: bad tlist syntax: %s' % recordContext['settings']['tlist'])
recordContext['settings']['tlist'] = tlist
if context['setFlag'] and 'vlist' in recordContext['settings']:
if ('eq' in recordContext['settings']['vlist'] and
context['origValue'] in recordContext['settings']['vlist']['eq']):
delay = recordContext['settings']['vlist']['eq'][context['origValue']]
elif ('lt' in recordContext['settings']['vlist'] and
context['origValue'] < recordContext['settings']['vlist']['lt'][0]):
delay = recordContext['settings']['vlist']['lt'][1]
elif ('gt' in recordContext['settings']['vlist'] and
context['origValue'] > recordContext['settings']['vlist']['gt'][0]):
delay = recordContext['settings']['vlist']['gt'][1]
else:
delay = recordContext['settings']['wait']
elif 'tlist' in recordContext['settings']:
now = int(time.time())
if ('eq' in recordContext['settings']['tlist'] and
now == recordContext['settings']['tlist']['eq']):
delay = recordContext['settings']['tlist']['eq'][now]
elif ('lt' in recordContext['settings']['tlist'] and
now < recordContext['settings']['tlist']['lt'][0]):
delay = recordContext['settings']['tlist']['lt'][1]
elif ('gt' in recordContext['settings']['tlist'] and
now > recordContext['settings']['tlist']['gt'][0]):
delay = recordContext['settings']['tlist']['gt'][1]
else:
delay = recordContext['settings']['wait']
else:
delay = recordContext['settings']['wait']
if recordContext['settings']['deviation']:
delay += random.randrange(
-recordContext['settings']['deviation'], recordContext['settings']['deviation']
)
if delay < 0:
delay = 0
elif delay > 99999:
log.msg('delay: dropping response for %s' % oid)
raise error.NoDataNotification()
log.msg('delay: waiting %d milliseconds for %s' % (delay, oid))
time.sleep(delay / 1000) # ms
if context['setFlag'] or 'value' not in recordContext['settings']:
return oid, tag, context['origValue']
else:
return oid, tag, recordContext['settings']['value']
def record(oid, tag, value, **context):
if context['stopFlag']:
raise error.NoDataNotification()
tag += ':delay'
if 'hexvalue' in context:
textValue = 'hexvalue=' + context['hexvalue']
else:
textValue = 'value=' + value
textValue += ',wait=%d' % int((time.time() - context['reqTime']) * 1000) # ms
if 'options' in context:
textValue += ',' + context['options']
return oid, tag, textValue
def shutdown(**context):
pass
snmpsim-0.4.5/variation/error.py 0000664 0063214 0063214 00000010322 13412164152 017104 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.grammar.snmprec import SnmprecGrammar
from snmpsim.record.snmprec import SnmprecRecord
from snmpsim import log
from snmpsim.mltsplit import split
from pysnmp.smi import error
errorTypes = {
'generror': error.GenError,
'noaccess': error.NoAccessError,
'wrongtype': error.WrongTypeError,
'wrongvalue': error.WrongValueError,
'nocreation': error.NoCreationError,
'inconsistentvalue': error.InconsistentValueError,
'resourceunavailable': error.ResourceUnavailableError,
'commitfailed': error.CommitFailedError,
'undofailed': error.UndoFailedError,
'authorizationerror': error.AuthorizationError,
'notwritable': error.NotWritableError,
'inconsistentname': error.InconsistentNameError,
'nosuchobject': error.NoSuchObjectError,
'nosuchinstance': error.NoSuchInstanceError,
'endofmib': error.EndOfMibViewError
}
def init(**context):
pass
def variate(oid, tag, value, **context):
if not context['nextFlag'] and not context['exactMatch']:
return context['origOid'], tag, context['errorStatus']
if 'settings' not in recordContext:
recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
if 'hexvalue' in recordContext['settings']:
recordContext['settings']['value'] = [int(recordContext['settings']['hexvalue'][x:x + 2], 16) for x in
range(0, len(recordContext['settings']['hexvalue']), 2)]
if 'status' in recordContext['settings']:
recordContext['settings']['status'] = recordContext['settings']['status'].lower()
if 'op' not in recordContext['settings']:
recordContext['settings']['op'] = 'any'
if 'vlist' in recordContext['settings']:
vlist = {}
recordContext['settings']['vlist'] = split(recordContext['settings']['vlist'], ':')
while recordContext['settings']['vlist']:
o, v, e = recordContext['settings']['vlist'][:3]
recordContext['settings']['vlist'] = recordContext['settings']['vlist'][3:]
typeTag, _ = SnmprecRecord.unpackTag(tag)
v = SnmprecGrammar.tagMap[typeTag](v)
if o not in vlist:
vlist[o] = {}
if o == 'eq':
vlist[o][v] = e
elif o in ('lt', 'gt'):
vlist[o] = v, e
else:
log.msg('error: bad vlist syntax: %s' % recordContext['settings']['vlist'])
recordContext['settings']['vlist'] = vlist
e = None
if context['setFlag']:
if 'vlist' in recordContext['settings']:
if ('eq' in recordContext['settings']['vlist'] and
context['origValue'] in recordContext['settings']['vlist']['eq']):
e = recordContext['settings']['vlist']['eq'][context['origValue']]
elif ('lt' in recordContext['settings']['vlist'] and
context['origValue'] < recordContext['settings']['vlist']['lt'][0]):
e = recordContext['settings']['vlist']['lt'][1]
elif ('gt' in recordContext['settings']['vlist'] and
context['origValue'] > recordContext['settings']['vlist']['gt'][0]):
e = recordContext['settings']['vlist']['gt'][1]
elif recordContext['settings']['op'] in ('set', 'any'):
if 'status' in recordContext['settings']:
e = recordContext['settings']['status']
else:
if recordContext['settings']['op'] in ('get', 'any'):
if 'status' in recordContext['settings']:
e = recordContext['settings']['status']
if e and e in errorTypes:
log.msg('error: reporting %s for %s' % (e, oid))
raise errorTypes[e](
name=oid, idx=max(0, context['varsTotal'] - context['varsRemaining'] - 1)
)
if context['setFlag']:
recordContext['settings']['value'] = context['origValue']
return oid, tag, recordContext['settings'].get('value', context['errorStatus'])
def shutdown(**context):
pass
snmpsim-0.4.5/variation/notification.py 0000664 0063214 0063214 00000021701 13412164152 020444 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Managed value variation module
# Send SNMP Notification
#
from pysnmp.hlapi.asyncore import *
from snmpsim.grammar.snmprec import SnmprecGrammar
from snmpsim.record.snmprec import SnmprecRecord
from snmpsim.mltsplit import split
from snmpsim import error, log
def init(**context):
pass
typeMap = {
's': OctetString,
'h': lambda x: OctetString(hexValue=x),
'i': Integer32,
'o': ObjectIdentifier,
'a': IpAddress,
'u': Unsigned32,
'g': Gauge32,
't': TimeTicks,
'b': Bits,
'I': Counter64
}
def _cbFun(sendRequestHandle,
errorIndication,
errorStatus, errorIndex,
varBinds,
cbCtx):
oid, value = cbCtx
if errorIndication or errorStatus:
log.msg('notification: for %s=%r failed with errorIndication %s, errorStatus %s' % (oid, value, errorIndication, errorStatus))
def variate(oid, tag, value, **context):
if 'snmpEngine' in context and context['snmpEngine']:
snmpEngine = context['snmpEngine']
if snmpEngine not in moduleContext:
moduleContext[snmpEngine] = {}
if context['transportDomain'] not in moduleContext[snmpEngine]:
# register this SNMP Engine to handle our transports'
# receiver IDs (which we build by outbound and simulator
# transportDomains concatenation)
snmpEngine.registerTransportDispatcher(
snmpEngine.transportDispatcher,
UdpTransportTarget.transportDomain + context['transportDomain']
)
snmpEngine.registerTransportDispatcher(
snmpEngine.transportDispatcher,
Udp6TransportTarget.transportDomain + context['transportDomain']
)
moduleContext[snmpEngine][context['transportDomain']] = 1
else:
raise error.SnmpsimError('variation module not given snmpEngine')
if not context['nextFlag'] and not context['exactMatch']:
return context['origOid'], tag, context['errorStatus']
if 'settings' not in recordContext:
recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
for k, v in (('op', 'set'),
('community', 'public'),
('authkey', None),
('authproto', 'md5'),
('privkey', None),
('privproto', 'des'),
('proto', 'udp'),
('port', '162'),
('ntftype', 'trap'),
('trapoid', '1.3.6.1.6.3.1.1.5.1')):
recordContext['settings'].setdefault(k, v)
if 'hexvalue' in recordContext['settings']:
recordContext['settings']['value'] = [int(recordContext['settings']['hexvalue'][x:x + 2], 16) for x in
range(0, len(recordContext['settings']['hexvalue']), 2)]
if 'vlist' in recordContext['settings']:
vlist = {}
recordContext['settings']['vlist'] = split(recordContext['settings']['vlist'], ':')
while recordContext['settings']['vlist']:
o, v = recordContext['settings']['vlist'][:2]
recordContext['settings']['vlist'] = recordContext['settings']['vlist'][2:]
typeTag, _ = SnmprecRecord.unpackTag(tag)
v = SnmprecGrammar.tagMap[typeTag](v)
if o not in vlist:
vlist[o] = set()
if o == 'eq':
vlist[o].add(v)
elif o in ('lt', 'gt'):
vlist[o] = v
else:
log.msg('notification: bad vlist syntax: %s' % recordContext['settings']['vlist'])
recordContext['settings']['vlist'] = vlist
args = recordContext['settings']
if context['setFlag'] and 'vlist' in args:
if ('eq' in args['vlist'] and
context['origValue'] in args['vlist']['eq']):
pass
elif ('lt' in args['vlist'] and
context['origValue'] < args['vlist']['lt']):
pass
elif ('gt' in args['vlist'] and
context['origValue'] > args['vlist']['gt']):
pass
else:
return oid, tag, context['origValue']
if args['op'] not in ('get', 'set', 'any', '*'):
log.msg('notification: unknown SNMP request type configured: %s' % args['op'])
return context['origOid'], tag, context['errorStatus']
if (args['op'] == 'get' and not context['setFlag'] or
args['op'] == 'set' and context['setFlag'] or
args['op'] in ('any', '*')):
if args['version'] in ('1', '2c'):
authData = CommunityData(args['community'], mpModel=args['version'] == '2c' and 1 or 0)
elif args['version'] == '3':
if args['authproto'] == 'md5':
authProtocol = usmHMACMD5AuthProtocol
elif args['authproto'] == 'sha':
authProtocol = usmHMACSHAAuthProtocol
elif args['authproto'] == 'none':
authProtocol = usmNoAuthProtocol
else:
log.msg('notification: unknown auth proto %s' % args['authproto'])
return context['origOid'], tag, context['errorStatus']
if args['privproto'] == 'des':
privProtocol = usmDESPrivProtocol
elif args['privproto'] == 'aes':
privProtocol = usmAesCfb128Protocol
elif args['privproto'] == 'none':
privProtocol = usmNoPrivProtocol
else:
log.msg('notification: unknown privacy proto %s' % args['privproto'])
return context['origOid'], tag, context['errorStatus']
authData = UsmUserData(args['user'], args['authkey'], args['privkey'], authProtocol=authProtocol,
privProtocol=privProtocol)
else:
log.msg('notification: unknown SNMP version %s' % args['version'])
return context['origOid'], tag, context['errorStatus']
if 'host' not in args:
log.msg('notification: target hostname not configured for OID %s' % (oid,))
return context['origOid'], tag, context['errorStatus']
if args['proto'] == 'udp':
target = UdpTransportTarget((args['host'], int(args['port'])))
elif args['proto'] == 'udp6':
target = Udp6TransportTarget((args['host'], int(args['port'])))
else:
log.msg('notification: unknown transport %s' % args['proto'])
return context['origOid'], tag, context['errorStatus']
localAddress = None
if 'bindaddr' in args:
localAddress = args['bindaddr']
else:
if context['transportDomain'][:len(target.transportDomain)] == target.transportDomain:
localAddress = snmpEngine.transportDispatcher.getTransport(context['transportDomain']).getLocalAddress()[0]
else:
log.msg('notification: incompatible network transport types used by CommandResponder vs NotificationOriginator')
if 'bindaddr' in args:
localAddress = args['bindaddr']
if localAddress:
log.msg('notification: binding to local address %s' % localAddress)
target.setLocalAddress((localAddress, 0))
# this will make target objects different based on their bind address
target.transportDomain = target.transportDomain + context['transportDomain']
varBinds = []
if 'uptime' in args:
varBinds.append(
(ObjectIdentifier('1.3.6.1.2.1.1.3.0'),
TimeTicks(args['uptime']))
)
if args['version'] == '1':
if 'agentaddress' in args:
varBinds.append(
(ObjectIdentifier('1.3.6.1.6.3.18.1.3.0'),
IpAddress(args['agentaddress']))
)
if 'enterprise' in args:
varBinds.append(
(ObjectIdentifier('1.3.6.1.6.3.1.1.4.3.0'),
ObjectIdentifier(args['enterprise']))
)
if 'varbinds' in args:
vbs = split(args['varbinds'], ':')
while vbs:
varBinds.append(
(ObjectIdentifier(vbs[0]), typeMap[vbs[1]](vbs[2]))
)
vbs = vbs[3:]
sendNotification(
snmpEngine, authData, target, ContextData(), args['ntftype'],
NotificationType(ObjectIdentity(args['trapoid'])).addVarBinds(*varBinds),
cbFun=_cbFun, cbCtx=(oid, value)
)
log.msg('notification: sending Notification to %s with credentials %s' % (authData, target))
if context['setFlag'] or 'value' not in args:
return oid, tag, context['origValue']
else:
return oid, tag, args['value']
def shutdown(**context):
pass
snmpsim-0.4.5/variation/subprocess.py 0000664 0063214 0063214 00000006352 13412164152 020153 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Managed value variation module
# Get/set managed value by invoking an external program
#
import sys
import subprocess
from pysnmp.proto import rfc1902
from snmpsim.mltsplit import split
from snmpsim import log
def init(**context):
moduleContext['settings'] = {}
if context['options']:
moduleContext['settings'].update(
dict([split(x, ':') for x in split(context['options'], ',')])
)
if 'shell' not in moduleContext['settings']:
moduleContext['settings']['shell'] = sys.platform[:3] == 'win'
else:
moduleContext['settings']['shell'] = int(moduleContext['settings']['shell'])
def variate(oid, tag, value, **context):
# in --v2c-arch some of the items are not defined
transportDomain = transportAddress = securityModel = securityName = \
securityLevel = contextName = ''
if 'transportDomain' in context:
transportDomain = rfc1902.ObjectName(context['transportDomain']).prettyPrint()
if 'transportAddress' in context:
transportAddress = ':'.join([str(x) for x in context['transportAddress']])
if 'securityModel' in context:
securityModel = str(context['securityModel'])
if 'securityName' in context:
securityName = str(context['securityName'])
if 'securityLevel' in context:
securityLevel = str(context['securityLevel'])
if 'contextName' in context:
contextName = str(context['contextName'])
args = [(x
.replace('@TRANSPORTDOMAIN@', transportDomain)
.replace('@TRANSPORTADDRESS@', transportAddress)
.replace('@SECURITYMODEL@', securityModel)
.replace('@SECURITYNAME@', securityName)
.replace('@SECURITYLEVEL@', securityLevel)
.replace('@CONTEXTNAME@', contextName)
.replace('@DATAFILE@', context['dataFile'])
.replace('@OID@', str(oid))
.replace('@TAG@', tag)
.replace('@ORIGOID@', str(context['origOid']))
.replace('@ORIGTAG@', str(sum([x for x in context['origValue'].tagSet[0]])))
.replace('@ORIGVALUE@', str(context['origValue']))
.replace('@SETFLAG@', str(int(context['setFlag'])))
.replace('@NEXTFLAG@', str(int(context['nextFlag'])))
.replace('@SUBTREEFLAG@', str(int(context['subtreeFlag']))))
for x in split(value, ' ')]
log.msg('subprocess: executing external process "%s"' % ' '.join(args))
call = (hasattr(subprocess, 'check_output') and subprocess.check_output or
hasattr(subprocess, 'check_call') and subprocess.check_call or
subprocess.call)
if not hasattr(subprocess, 'check_output'):
log.msg('subprocess: old Python, expect no output!')
try:
return oid, tag, call(
args, shell=moduleContext['settings']['shell']
)
except (hasattr(subprocess, 'CalledProcessError') and
subprocess.CalledProcessError or Exception):
log.msg('subprocess: external program execution failed')
return context['origOid'], tag, context['errorStatus']
def shutdown(**context):
pass
snmpsim-0.4.5/variation/multiplex.py 0000664 0063214 0063214 00000022330 13412164152 020000 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Managed value variation module: simulate a live Agent using
# a series of snapshots.
#
import os
import time
import bisect
from pyasn1.compat.octets import str2octs
from pysnmp.proto import rfc1902
from snmpsim.record.snmprec import SnmprecRecord
from snmpsim.record.search.file import searchRecordByOid, getRecord
from snmpsim.record.search.database import RecordIndex
from snmpsim import confdir
from snmpsim.mltsplit import split
from snmpsim import log
from snmpsim import error
def init(**context):
if context['options']:
for k, v in [split(x, ':') for x in split(context['options'], ',')]:
if k == 'addon':
if k in moduleContext:
moduleContext[k].append(v)
else:
moduleContext[k] = [v]
else:
moduleContext[k] = v
if context['mode'] == 'variating':
moduleContext['booted'] = time.time()
elif context['mode'] == 'recording':
if 'dir' not in moduleContext:
raise error.SnmpsimError('SNMP snapshots directory not specified')
if not os.path.exists(moduleContext['dir']):
log.msg('multiplex: creating %s...' % moduleContext['dir'])
os.makedirs(moduleContext['dir'])
if 'iterations' in moduleContext:
moduleContext['iterations'] = max(0, int(moduleContext['iterations']) - 1)
if 'period' in moduleContext:
moduleContext['period'] = float(moduleContext['period'])
else:
moduleContext['period'] = 10.0
moduleContext['ready'] = True
def variate(oid, tag, value, **context):
if 'settings' not in recordContext:
recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
if 'dir' not in recordContext['settings']:
log.msg('multiplex: snapshot directory not specified')
return context['origOid'], tag, context['errorStatus']
recordContext['settings']['dir'] = recordContext['settings']['dir'].replace(
'/', os.path.sep
)
if recordContext['settings']['dir'][0] != os.path.sep:
for x in confdir.data:
d = os.path.join(x, recordContext['settings']['dir'])
if os.path.exists(d):
break
else:
log.msg('multiplex: directory %s not found' % recordContext['settings']['dir'])
return context['origOid'], tag, context['errorStatus']
else:
d = recordContext['settings']['dir']
recordContext['dirmap'] = dict(
[(int(os.path.basename(x).split(os.path.extsep)[0]), os.path.join(d, x)) for x in os.listdir(d) if
x[-7:] == 'snmprec']
)
recordContext['keys'] = list(
recordContext['dirmap'].keys()
)
recordContext['bounds'] = (
min(recordContext['keys']), max(recordContext['keys'])
)
if 'period' in recordContext['settings']:
recordContext['settings']['period'] = float(recordContext['settings']['period'])
else:
recordContext['settings']['period'] = 60.0
if 'wrap' in recordContext['settings']:
recordContext['settings']['wrap'] = bool(recordContext['settings']['wrap'])
else:
recordContext['settings']['wrap'] = False
if 'control' in recordContext['settings']:
recordContext['settings']['control'] = rfc1902.ObjectName(
recordContext['settings']['control']
)
log.msg('multiplex: using control OID %s for subtree %s, time-based multiplexing disabled' % (recordContext['settings']['control'], oid))
recordContext['ready'] = True
if 'ready' not in recordContext:
return context['origOid'], tag, context['errorStatus']
if oid not in moduleContext:
moduleContext[oid] = {}
if context['setFlag']:
if 'control' in recordContext['settings'] and \
recordContext['settings']['control'] == context['origOid']:
fileno = int(context['origValue'])
if fileno >= len(recordContext['keys']):
log.msg('multiplex: .snmprec file number %s over limit of %s' % (fileno, len(recordContext['keys'])))
return context['origOid'], tag, context['errorStatus']
moduleContext[oid]['fileno'] = fileno
log.msg('multiplex: switched to file #%s (%s)' % (recordContext['keys'][fileno], recordContext['dirmap'][recordContext['keys'][fileno]]))
return context['origOid'], tag, context['origValue']
else:
return context['origOid'], tag, context['errorStatus']
if 'control' in recordContext['settings']:
if 'fileno' not in moduleContext[oid]:
moduleContext[oid]['fileno'] = 0
if (not context['nextFlag'] and
recordContext['settings']['control'] == context['origOid']):
return context['origOid'], tag, rfc1902.Integer32(moduleContext[oid]['fileno'])
else:
timeslot = (time.time() - moduleContext['booted']) % (
recordContext['settings']['period'] * len(recordContext['dirmap']))
fileslot = int(timeslot / recordContext['settings']['period']) + recordContext['bounds'][0]
fileno = bisect.bisect(recordContext['keys'], fileslot) - 1
if ('fileno' not in moduleContext[oid] or
moduleContext[oid]['fileno'] < fileno or
recordContext['settings']['wrap']):
moduleContext[oid]['fileno'] = fileno
datafile = recordContext['dirmap'][
recordContext['keys'][moduleContext[oid]['fileno']]
]
if ('datafile' not in moduleContext[oid] or
moduleContext[oid]['datafile'] != datafile):
if 'datafileobj' in moduleContext[oid]:
moduleContext[oid]['datafileobj'].close()
moduleContext[oid]['datafileobj'] = RecordIndex(
datafile, SnmprecRecord()
).create()
moduleContext[oid]['datafile'] = datafile
log.msg('multiplex: switching to data file %s for %s' % (datafile, context['origOid']))
text, db = moduleContext[oid]['datafileobj'].getHandles()
textOid = str(rfc1902.OctetString('.'.join(['%s' % x for x in context['origOid']])))
try:
line = moduleContext[oid]['datafileobj'].lookup(textOid)
except KeyError:
offset = searchRecordByOid(context['origOid'], text, SnmprecRecord())
exactMatch = False
else:
offset, subtreeFlag, prevOffset = line.split(str2octs(','))
exactMatch = True
text.seek(int(offset))
line, _, _ = getRecord(text) # matched line
if context['nextFlag']:
if exactMatch:
line, _, _ = getRecord(text)
else:
if not exactMatch:
return context['origOid'], tag, context['errorStatus']
if not line:
return context['origOid'], tag, context['errorStatus']
try:
oid, value = SnmprecRecord().evaluate(line)
except error.SnmpsimError:
oid, value = context['origOid'], context['errorStatus']
return oid, tag, value
def record(oid, tag, value, **context):
if 'ready' not in moduleContext:
raise error.SnmpsimError('module not initialized')
if 'started' not in moduleContext:
moduleContext['started'] = time.time()
if context['stopFlag']:
if 'file' in moduleContext:
moduleContext['file'].close()
del moduleContext['file']
else:
moduleContext['filenum'] = 0
if 'iterations' in moduleContext and moduleContext['iterations']:
log.msg('multiplex: %s iterations remaining' % moduleContext['iterations'])
moduleContext['started'] = time.time()
moduleContext['iterations'] -= 1
moduleContext['filenum'] += 1
wait = max(0, moduleContext['period'] - (time.time() - moduleContext['started']))
raise error.MoreDataNotification(period=wait)
else:
raise error.NoDataNotification()
if 'file' not in moduleContext:
if 'filenum' not in moduleContext:
moduleContext['filenum'] = 0
snmprecfile = os.path.join(moduleContext['dir'],
'%.5d%ssnmprec' % (moduleContext['filenum'],
os.path.extsep))
moduleContext['file'] = open(snmprecfile, 'wb')
log.msg('multiplex: writing into %s file...' % snmprecfile)
moduleContext['file'].write(
SnmprecRecord().format(context['origOid'], context['origValue'])
)
if not context['total']:
settings = {
'dir': moduleContext['dir'].replace(os.path.sep, '/')
}
if 'period' in moduleContext:
settings['period'] = '%.2f' % float(moduleContext['period'])
if 'addon' in moduleContext:
settings.update(
dict([split(x, '=') for x in moduleContext['addon']])
)
value = ','.join(['%s=%s' % (k, v) for k, v in settings.items()])
return str(context['startOID']), ':multiplex', value
else:
raise error.NoDataNotification()
def shutdown(**context):
pass
snmpsim-0.4.5/variation/numeric.py 0000664 0063214 0063214 00000021377 13412164152 017431 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Managed value variation module
# Simulate a numeric value
# Valid values in module options are:
# 2 - Integer
# 65 - Counter32
# 66 - Gauge32
# 67 - TimeTicks
# 70 - Counter64
import math
import time
import random
from pysnmp.proto import rfc1902
from snmpsim.mltsplit import split
from snmpsim import log
from snmpsim import error
tboot = time.time()
def init(**context):
if context['mode'] == 'variating':
random.seed()
if context['mode'] == 'recording':
moduleContext['settings'] = {}
if context['options']:
for k, v in [split(x, ':') for x in split(context['options'], ',')]:
if k == 'addon':
if k in moduleContext['settings']:
moduleContext['settings'][k].append(v)
else:
moduleContext['settings'][k] = [v]
else:
moduleContext['settings'][k] = v
if 'iterations' in moduleContext['settings']:
moduleContext['settings']['iterations'] = int(moduleContext['settings']['iterations'])
if moduleContext['settings']['iterations']:
moduleContext['settings']['iterations'] = 1 # no reason for more
if 'period' in moduleContext['settings']:
moduleContext['settings']['period'] = float(moduleContext['settings']['period'])
else:
moduleContext['settings']['period'] = 10.0
if 'taglist' not in moduleContext['settings']:
moduleContext['settings']['taglist'] = '2-65-66-67-70'
def variate(oid, tag, value, **context):
if not context['nextFlag'] and not context['exactMatch']:
return context['origOid'], tag, context['errorStatus']
if context['setFlag']:
return context['origOid'], tag, context['errorStatus']
if 'settings' not in recordContext:
recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
for k in recordContext['settings']:
if k != 'function':
recordContext['settings'][k] = float(recordContext['settings'][k])
if 'min' not in recordContext['settings']:
recordContext['settings']['min'] = 0
if 'max' not in recordContext['settings']:
if tag == '70':
recordContext['settings']['max'] = 0xffffffffffffffff
else:
recordContext['settings']['max'] = 0xffffffff
if 'rate' not in recordContext['settings']:
recordContext['settings']['rate'] = 1
if 'function' in recordContext['settings']:
f = split(recordContext['settings']['function'], '%')
recordContext['settings']['function'] = getattr(math, f[0]), f[1:]
else:
recordContext['settings']['function'] = lambda x: x, ()
vold, told = recordContext['settings'].get('initial', recordContext['settings']['min']), tboot
if 'cumulative' in recordContext['settings']:
if 'value' not in recordContext:
recordContext['value'] = vold, told
vold, told = recordContext['value']
tnow = time.time()
if 'atime' in recordContext['settings']:
t = tnow
else:
t = tnow - tboot
f, args = recordContext['settings']['function']
_args = []
if args:
for x in args:
if x == '':
_args.append(t * recordContext['settings']['rate'])
else:
_args.append(float(x))
else:
_args.append(t * recordContext['settings']['rate'])
v = f(*_args)
if 'scale' in recordContext['settings']:
v *= recordContext['settings']['scale']
if 'offset' in recordContext['settings']:
if 'cumulative' in recordContext['settings']:
v += recordContext['settings']['offset'] * (tnow - told) * recordContext['settings']['rate']
else:
v += recordContext['settings']['offset']
if 'deviation' in recordContext['settings'] and recordContext['settings']['deviation']:
v += random.randrange(-recordContext['settings']['deviation'], recordContext['settings']['deviation'])
if 'cumulative' in recordContext['settings']:
v = max(v, 0)
v += vold
if v < recordContext['settings']['min']:
v = recordContext['settings']['min']
elif v > recordContext['settings']['max']:
if 'wrap' in recordContext['settings']:
v %= recordContext['settings']['max']
v += recordContext['settings']['min']
else:
v = recordContext['settings']['max']
if 'cumulative' in recordContext['settings']:
recordContext['value'] = v, tnow
return oid, tag, v
def record(oid, tag, value, **context):
if 'started' not in moduleContext:
moduleContext['started'] = time.time()
if 'iterations' not in moduleContext:
moduleContext['iterations'] = min(1, moduleContext['settings'].get('iterations', 0))
# single-run recording
if 'iterations' not in moduleContext['settings'] or not moduleContext['settings']['iterations']:
if context['origValue'].tagSet not in (
rfc1902.Counter32.tagSet,
rfc1902.Counter64.tagSet,
rfc1902.TimeTicks.tagSet,
rfc1902.Gauge32.tagSet,
rfc1902.Integer.tagSet):
if 'hextag' in context:
tag = context['hextag']
if 'hexvalue' in context:
value = context['hexvalue']
return oid, tag, value
if ('taglist' not in moduleContext['settings'] or
tag not in moduleContext['settings']['taglist']):
return oid, tag, value
value = 'initial=%s' % value
if context['origValue'].tagSet == rfc1902.TimeTicks.tagSet:
value += ',rate=100'
elif context['origValue'].tagSet == rfc1902.Integer.tagSet:
value += ',rate=0'
return oid, tag + ':numeric', value
# multiple-iteration recording
if oid not in moduleContext:
settings = {
'initial': value
}
if context['origValue'].tagSet == rfc1902.TimeTicks.tagSet:
settings['rate'] = 100
elif context['origValue'].tagSet == rfc1902.Integer.tagSet:
settings['rate'] = 0 # may be constants
if 'addon' in moduleContext['settings']:
settings.update(
dict([split(x, '=') for x in moduleContext['settings']['addon']])
)
moduleContext[oid] = {}
moduleContext[oid]['settings'] = settings
if moduleContext['iterations']:
if context['stopFlag']: # switching to final iteration
log.msg('numeric: %s iterations remaining' % moduleContext['settings']['iterations'])
moduleContext['iterations'] -= 1
moduleContext['started'] = time.time()
wait = max(0, float(moduleContext['settings']['period']) - (time.time() - moduleContext['started']))
raise error.MoreDataNotification(period=wait)
else: # storing values on first iteration
moduleContext[oid]['time'] = time.time()
moduleContext[oid]['value'] = context['origValue']
if 'hexvalue' in moduleContext[oid]:
moduleContext[oid]['hexvalue'] = context['hexvalue']
if 'hextag' in moduleContext[oid]:
moduleContext[oid]['hextag'] = context['hextag']
raise error.NoDataNotification()
else:
if context['stopFlag']:
raise error.NoDataNotification()
if 'value' in moduleContext[oid]:
if context['origValue'].tagSet not in (
rfc1902.Counter32.tagSet,
rfc1902.Counter64.tagSet,
rfc1902.TimeTicks.tagSet,
rfc1902.Gauge32.tagSet,
rfc1902.Integer.tagSet):
if 'hextag' in moduleContext[oid]:
tag = moduleContext[oid]['hextag']
if 'hexvalue' in moduleContext[oid]:
value = moduleContext[oid]['hexvalue']
return oid, tag, value
if tag not in moduleContext['settings']['taglist']:
return oid, tag, moduleContext[oid]['value']
moduleContext[oid]['settings']['rate'] = (int(context['origValue']) - int(moduleContext[oid]['value'])) / (time.time() - moduleContext[oid]['time'])
tag += ':numeric'
value = ','.join(
['%s=%s' % (k, v) for k, v in moduleContext[oid]['settings'].items()]
)
return oid, tag, value
else:
raise error.NoDataNotification()
def shutdown(**context):
pass
snmpsim-0.4.5/variation/writecache.py 0000664 0063214 0063214 00000012422 13412164152 020074 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# SNMP Simulator, http://snmplabs.com/snmpsim
# Managed value variaton module
# Simulate a writable Agent
#
import shelve
from pysnmp.smi import error
from snmpsim.grammar.snmprec import SnmprecGrammar
from snmpsim.record.snmprec import SnmprecRecord
from snmpsim.mltsplit import split
from snmpsim import log
errorTypes = {
'generror': error.GenError,
'noaccess': error.NoAccessError,
'wrongtype': error.WrongTypeError,
'wrongvalue': error.WrongValueError,
'nocreation': error.NoCreationError,
'inconsistentvalue': error.InconsistentValueError,
'resourceunavailable': error.ResourceUnavailableError,
'commitfailed': error.CommitFailedError,
'undofailed': error.UndoFailedError,
'authorizationerror': error.AuthorizationError,
'notwritable': error.NotWritableError,
'inconsistentname': error.InconsistentNameError,
'nosuchobject': error.NoSuchObjectError,
'nosuchinstance': error.NoSuchInstanceError,
'endofmib': error.EndOfMibViewError
}
def init(**context):
moduleContext['settings'] = {}
if context['options']:
moduleContext['settings'].update(
dict([split(x, ':') for x in split(context['options'], ',')])
)
if 'file' in moduleContext['settings']:
moduleContext['cache'] = shelve.open(moduleContext['settings']['file'])
else:
moduleContext['cache'] = {}
def variate(oid, tag, value, **context):
if not context['nextFlag'] and not context['exactMatch']:
return context['origOid'], tag, context['errorStatus']
if 'settings' not in recordContext:
recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
if 'vlist' in recordContext['settings']:
vlist = {}
recordContext['settings']['vlist'] = split(recordContext['settings']['vlist'], ':')
while recordContext['settings']['vlist']:
o, v, e = recordContext['settings']['vlist'][:3]
recordContext['settings']['vlist'] = recordContext['settings']['vlist'][3:]
typeTag, _ = SnmprecRecord.unpackTag(tag)
v = SnmprecGrammar.tagMap[typeTag](v)
if o not in vlist:
vlist[o] = {}
if o == 'eq':
vlist[o][v] = e
elif o in ('lt', 'gt'):
vlist[o] = v, e
else:
log.msg('writecache: bad vlist syntax: %s' % recordContext['settings']['vlist'])
recordContext['settings']['vlist'] = vlist
if 'status' in recordContext['settings']:
recordContext['settings']['status'] = recordContext['settings']['status'].lower()
if oid not in moduleContext:
moduleContext[oid] = {}
typeTag, _ = SnmprecRecord.unpackTag(tag)
moduleContext[oid]['type'] = SnmprecGrammar.tagMap[typeTag]()
textOid = str(oid)
if context['setFlag']:
if 'vlist' in recordContext['settings']:
if ('eq' in recordContext['settings']['vlist'] and
context['origValue'] in recordContext['settings']['vlist']['eq']):
e = recordContext['settings']['vlist']['eq'][context['origValue']]
elif ('lt' in recordContext['settings']['vlist'] and
context['origValue'] < recordContext['settings']['vlist']['lt'][0]):
e = recordContext['settings']['vlist']['lt'][1]
elif ('gt' in recordContext['settings']['vlist'] and
context['origValue'] > recordContext['settings']['vlist']['gt'][0]):
e = recordContext['settings']['vlist']['gt'][1]
else:
e = None
if e in errorTypes:
raise errorTypes[e](
name=oid, idx=max(0, context['varsTotal'] - context['varsRemaining'] - 1)
)
if moduleContext[oid]['type'].isSameTypeWith(context['origValue']):
moduleContext['cache'][textOid] = context['origValue']
else:
return context['origOid'], tag, context['errorStatus']
if 'status' in recordContext['settings']:
if ('op' not in recordContext['settings'] or
recordContext['settings']['op'] == 'any' or
recordContext['settings']['op'] == 'set' and context['setFlag'] or
recordContext['settings']['op'] == 'get' and not context['setFlag']):
e = recordContext['settings']['status']
if e in errorTypes:
raise errorTypes[e](
name=oid, idx=max(0, context['varsTotal'] - context['varsRemaining'] - 1)
)
if textOid in moduleContext['cache']:
return oid, tag, moduleContext['cache'][textOid]
elif 'hexvalue' in recordContext['settings']:
return oid, tag, moduleContext[oid]['type'].clone(hexValue=recordContext['settings']['hexvalue'])
elif 'value' in recordContext['settings']:
return oid, tag, moduleContext[oid]['type'].clone(recordContext['settings']['value'])
else:
return oid, tag, context['errorStatus']
def shutdown(**context):
if 'file' in moduleContext['settings']:
moduleContext['cache'].close()
snmpsim-0.4.5/variation/redis.py 0000664 0063214 0063214 00000022622 13412164152 017067 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Managed value variation module: simulate a writable Agent using
# noSQL backend (Redis) for storing Managed Objects
#
# Module initialization parameters are:
#
# host:,port:,db:
#
# Uses the following data layout:
# Redis LIST type containing sorted OIDs. This is used for answering
# GETNEXT/GETBULK type queries
# Redis HASH type containing OID-value pairs
# For successful operation each managed OID must be present in both
# data structures
#
import time
from snmpsim.grammar.snmprec import SnmprecGrammar
from snmpsim.record.snmprec import SnmprecRecord
from snmpsim.mltsplit import split
from snmpsim import error, log
from pysnmp.smi.error import WrongValueError
try:
from redis import StrictRedis
except ImportError:
StrictRedis = None
def init(**context):
options = {}
if context['options']:
options.update(
dict([split(x, ':') for x in split(context['options'], ',')])
)
connectParams = dict(
[(k, options[k]) for k in options if k in ('host', 'port', 'password', 'db', 'unix_socket')]
)
for k in 'port', 'db':
if k in connectParams:
connectParams[k] = int(connectParams[k])
if not connectParams:
raise error.SnmpsimError('Redis connect parameters not specified')
if StrictRedis is None:
raise error.SnmpsimError('redis-py Python package must be installed!')
moduleContext['dbConn'] = StrictRedis(**connectParams)
if context['mode'] == 'recording':
if 'key-spaces-id' in options:
moduleContext['key-spaces-id'] = int(options['key-spaces-id'])
else:
from random import randrange, seed
seed()
moduleContext['key-spaces-id'] = randrange(0, 0xffffffff)
log.msg('redis: using key-spaces-id %s' % moduleContext['key-spaces-id'])
if 'iterations' in options:
moduleContext['iterations'] = max(0, int(options['iterations']) - 1)
if 'period' in options:
moduleContext['period'] = float(options['period'])
else:
moduleContext['period'] = 60.0
redisScript = options.get('evalsha')
if redisScript:
log.msg('redis: using server-side script %s' % redisScript)
elif context['mode'] == 'variating':
moduleContext['booted'] = time.time()
moduleContext['ready'] = True
unpackTag = SnmprecRecord().unpackTag
def variate(oid, tag, value, **context):
if 'dbConn' in moduleContext:
dbConn = moduleContext['dbConn']
else:
raise error.SnmpsimError('variation module not initialized')
if 'settings' not in recordContext:
settings = recordContext['settings'] = dict([split(x, '=') for x in split(value, ',')])
if 'key-spaces-id' not in settings:
log.msg('redis:mandatory key-spaces-id option is missing')
return context['origOid'], tag, context['errorStatus']
settings['period'] = float(settings.get('period', 60))
if 'evalsha' in settings:
if not dbConn.script_exists(settings['evalsha']):
log.msg('redis: lua script %s does not exist at Redis' % settings['evalsha'])
return context['origOid'], tag, context['errorStatus']
recordContext['ready'] = True
if 'ready' not in recordContext:
return context['origOid'], tag, context['errorStatus']
redisScript = recordContext['settings'].get('evalsha')
keySpacesId = recordContext['settings']['key-spaces-id']
if recordContext['settings']['period']:
keySpaceIdx = int((time.time() - moduleContext['booted']) % (recordContext['settings']['period'] * int(dbConn.llen(keySpacesId))) // recordContext['settings']['period'])
else:
keySpaceIdx = 0
keySpace = dbConn.lindex(keySpacesId, keySpaceIdx)
if ('current-keyspace' not in recordContext or
recordContext['current-keyspace'] != keySpace):
log.msg('redis: now using keyspace %s (cycling period %s)' % (keySpace, recordContext['settings']['period'] or ''))
recordContext['current-keyspace'] = keySpace
if keySpace is None:
return origOid, tag, context['errorStatus']
origOid = context['origOid']
dbOid = '.'.join(['%10s' % x for x in str(origOid).split('.')])
if context['setFlag']:
if 'hexvalue' in context:
textTag = context['hextag']
textValue = context['hexvalue']
else:
textTag = SnmprecGrammar().getTagByType(context['origValue'])
textValue = str(context['origValue'])
if redisScript:
prevTagAndValue = dbConn.evalsha(redisScript, 1, keySpace + '-' + dbOid)
else:
prevTagAndValue = dbConn.get(keySpace + '-' + dbOid)
if prevTagAndValue:
prevTag, prevValue = prevTagAndValue.split('|')
if unpackTag(prevTag)[0] != unpackTag(textTag)[0]:
raise WrongValueError(name=origOid, idx=max(0, context['varsTotal'] - context['varsRemaining'] - 1))
else:
dbConn.linsert(keySpace + '-oids_ordering',
'after',
getNextOid(dbConn, keySpace, dbOid),
dbOid)
if redisScript:
dbConn.evalsha(redisScript, 1, keySpace + '-' + dbOid, textTag + '|' + textValue)
else:
dbConn.set(keySpace + '-' + dbOid, textTag + '|' + textValue)
return origOid, textTag, context['origValue']
else:
if context['nextFlag']:
textOid = dbConn.lindex(keySpace + '-oids_ordering',
getNextOid(dbConn, keySpace, dbOid,
index=True))
else:
textOid = keySpace + '-' + dbOid
if redisScript:
tagAndValue = dbConn.evalsha(redisScript, 1, textOid)
else:
tagAndValue = dbConn.get(textOid)
if not tagAndValue:
return origOid, tag, context['errorStatus']
textOid = '.'.join([x.strip() for x in textOid.split('-', 1)[1].split('.')])
textTag, textValue = tagAndValue.split('|', 1)
return textOid, textTag, textValue
def getNextOid(dbConn, keySpace, dbOid, index=False):
listKey = keySpace + '-oids_ordering'
oidKey = keySpace + '-' + dbOid
maxlen = listsize = dbConn.llen(listKey)
minlen = 0
while maxlen >= minlen and listsize:
listsize -= 1
idx = minlen + (maxlen - minlen) // 2
nextOid = dbConn.lindex(listKey, idx)
if nextOid < oidKey:
minlen = idx + 1
elif nextOid > oidKey:
maxlen = idx - 1
else:
idx += 1
break
if not listsize:
raise error.SnmpsimError('empty/unsorted %s' % listKey)
return not index and dbConn.lindex(listKey, idx) or idx
def record(oid, tag, value, **context):
if 'ready' not in moduleContext:
raise error.SnmpsimError('module not initialized')
if 'dbConn' in moduleContext:
dbConn = moduleContext['dbConn']
else:
raise error.SnmpsimError('variation module not initialized')
if 'started' not in moduleContext:
moduleContext['started'] = time.time()
redisScript = moduleContext.get('evalsha')
keySpace = '%.10d' % (moduleContext['key-spaces-id'] + moduleContext.get('iterations', 0))
if context['stopFlag']:
dbConn.sort(keySpace + '-' + 'temp_oids_ordering', store=keySpace + '-' + 'oids_ordering', alpha=True)
dbConn.delete(keySpace + '-' + 'temp_oids_ordering')
dbConn.rpush(moduleContext['key-spaces-id'], keySpace)
log.msg('redis: done with key-space %s' % keySpace)
if 'iterations' in moduleContext and moduleContext['iterations']:
log.msg('redis: %s iterations remaining' % moduleContext['iterations'])
moduleContext['started'] = time.time()
moduleContext['iterations'] -= 1
wait = max(0, moduleContext['period'] - (time.time() - moduleContext['started']))
raise error.MoreDataNotification(period=wait)
else:
raise error.NoDataNotification()
dbOid = '.'.join(['%10s' % x for x in oid.split('.')])
if 'hexvalue' in context:
textTag = context['hextag']
textValue = context['hexvalue']
else:
textTag = SnmprecGrammar().getTagByType(context['origValue'])
textValue = str(context['origValue'])
dbConn.lpush(keySpace + '-temp_oids_ordering', keySpace + '-' + dbOid)
if redisScript:
dbConn.evalsha(redisScript, 1, keySpace + '-' + dbOid, textTag + '|' + textValue)
else:
dbConn.set(keySpace + '-' + dbOid, textTag + '|' + textValue)
if not context['count']:
settings = {
'key-spaces-id': moduleContext['key-spaces-id']
}
if 'period' in moduleContext:
settings['period'] = '%.2f' % float(moduleContext['period'])
if 'addon' in moduleContext:
settings.update(
dict([split(x, '=') for x in moduleContext['addon']])
)
value = ','.join(['%s=%s' % (k, v) for k, v in settings.items()])
return str(context['startOID']), ':redis', value
else:
raise error.NoDataNotification()
def shutdown(**context):
if 'dbConn' in moduleContext:
moduleContext.pop('dbConn')
snmpsim-0.4.5/variation/sql.py 0000664 0063214 0063214 00000015510 13412164152 016556 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Managed value variation module: simulate a writable Agent using
# SQL backend for storing Managed Objects
#
# Module initialization parameters are dbtype:,dboptions:
#
# Expects to work a table of the following layout:
# CREATE TABLE (oid text, tag text, value text, maxaccess text)
#
from snmpsim.grammar.snmprec import SnmprecGrammar
from snmpsim.mltsplit import split
from snmpsim import error, log
isolationLevels = {
'0': 'READ UNCOMMITTED',
'1': 'READ COMMITTED',
'2': 'REPEATABLE READ',
'3': 'SERIALIZABLE'
}
def init(**context):
options = {}
if context['options']:
options.update(
dict([split(x, ':') for x in split(context['options'], ',')])
)
if 'dbtype' not in options:
raise error.SnmpsimError('database type not specified')
db = __import__(
options['dbtype'],
globals(), locals(),
options['dbtype'].split('.')[:-1]
)
if 'dboptions' in options: # legacy
connectParams = {'database': options['dboptions']}
else:
connectParams = dict(
[(k, options[k]) for k in options if
k in ('host', 'port', 'user', 'passwd', 'password', 'db', 'database', 'unix_socket', 'named_pipe')]
)
for k in 'port', 'connect_timeout':
if k in connectParams:
connectParams[k] = int(connectParams[k])
if not connectParams:
raise error.SnmpsimError('database connect parameters not specified')
moduleContext['dbConn'] = dbConn = db.connect(**connectParams)
moduleContext['dbTable'] = dbTable = options.get('dbtable', 'snmprec')
moduleContext['isolationLevel'] = options.get('isolationlevel', '1')
if moduleContext['isolationLevel'] not in isolationLevels:
raise error.SnmpsimError('unknown SQL transaction isolation level %s' % moduleContext['isolationLevel'])
if 'mode' in context and context['mode'] == 'recording':
cursor = dbConn.cursor()
try:
cursor.execute(
'select * from information_schema.tables where table_name=\'%s\' limit 1' % dbTable
)
except: # non-ANSI database
try:
cursor.execute('select * from %s limit 1' % dbTable)
except:
createTable = True
else:
createTable = False
else:
createTable = not cursor.fetchone()
if createTable:
cursor.execute('CREATE TABLE %s (oid text, tag text, value text, maxaccess text)' % dbTable)
cursor.close()
def variate(oid, tag, value, **context):
if 'dbConn' in moduleContext:
dbConn = moduleContext['dbConn']
else:
raise error.SnmpsimError('variation module not initialized')
cursor = dbConn.cursor()
try:
cursor.execute(
'set session transaction isolation level %s' % isolationLevels[moduleContext['isolationLevel']]
)
cursor.fetchall()
except: # non-MySQL/Postgres
pass
if value:
dbTable = value.split(',').pop(0)
elif 'dbTable' in moduleContext:
dbTable = moduleContext['dbTable']
else:
log.msg('SQL table not specified for OID %s' % (context['origOid'],))
return context['origOid'], tag, context['errorStatus']
origOid = context['origOid']
sqlOid = '.'.join(['%10s' % x for x in str(origOid).split('.')])
if context['setFlag']:
if 'hexvalue' in context:
textTag = context['hextag']
textValue = context['hexvalue']
else:
textTag = SnmprecGrammar().getTagByType(context['origValue'])
textValue = str(context['origValue'])
cursor.execute(
'select maxaccess,tag from %s where oid=\'%s\' limit 1' % (dbTable, sqlOid)
)
resultset = cursor.fetchone()
if resultset:
maxaccess = resultset[0]
if maxaccess != 'read-write':
return origOid, tag, context['errorStatus']
cursor.execute(
'update %s set tag=\'%s\',value=\'%s\' where oid=\'%s\'' % (dbTable, textTag, textValue, sqlOid)
)
else:
cursor.execute(
'insert into %s values (\'%s\', \'%s\', \'%s\', \'read-write\')' % (dbTable, sqlOid, textTag, textValue)
)
if context['varsRemaining'] == 0: # last OID in PDU
dbConn.commit()
cursor.close()
return origOid, textTag, context['origValue']
else:
if context['nextFlag']:
cursor.execute('select oid from %s where oid>\'%s\' order by oid limit 1' % (dbTable, sqlOid))
resultset = cursor.fetchone()
if resultset:
origOid = origOid.clone(
'.'.join([x.strip() for x in str(resultset[0]).split('.')])
)
sqlOid = '.'.join(['%10s' % x for x in str(origOid).split('.')])
else:
cursor.close()
return origOid, tag, context['errorStatus']
cursor.execute('select tag, value from %s where oid=\'%s\' limit 1' % (dbTable, sqlOid))
resultset = cursor.fetchone()
cursor.close()
if resultset:
return origOid, str(resultset[0]), str(resultset[1])
else:
return origOid, tag, context['errorStatus']
def record(oid, tag, value, **context):
if 'dbConn' in moduleContext:
dbConn = moduleContext['dbConn']
else:
raise error.SnmpsimError('variation module not initialized')
dbTable = moduleContext['dbTable']
if context['stopFlag']:
raise error.NoDataNotification()
sqlOid = '.'.join(['%10s' % x for x in oid.split('.')])
if 'hexvalue' in context:
textTag = context['hextag']
textValue = context['hexvalue']
else:
textTag = SnmprecGrammar().getTagByType(context['origValue'])
textValue = str(context['origValue'])
cursor = dbConn.cursor()
cursor.execute(
'select oid from %s where oid=\'%s\' limit 1' % (dbTable, sqlOid)
)
if cursor.fetchone():
cursor.execute(
'update %s set tag=\'%s\',value=\'%s\' where oid=\'%s\'' % (dbTable, textTag, textValue, sqlOid)
)
else:
cursor.execute(
'insert into %s values (\'%s\', \'%s\', \'%s\', \'read-write\')' % (dbTable, sqlOid, textTag, textValue)
)
cursor.close()
if not context['count']:
return str(context['startOID']), ':sql', dbTable
else:
raise error.NoDataNotification()
def shutdown(**context):
dbConn = moduleContext.get('dbConn')
if dbConn:
if 'mode' in context and context['mode'] == 'recording':
dbConn.commit()
dbConn.close()
snmpsim-0.4.5/TODO.txt 0000664 0063214 0063214 00000000254 13127641064 014723 0 ustar ietingof ietingof * Improve .snmprec comments handling in the `datafile.py` tool. Possibly
allow dropping/rearranging comments and empty lines
* Refactor the documentation into Sphinx form snmpsim-0.4.5/setup.cfg 0000664 0063214 0063214 00000000177 13412164240 015233 0 ustar ietingof ietingof [bdist_wheel]
universal = 1
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[metadata]
license_file = LICENSE.rst
snmpsim-0.4.5/snmpsim/ 0000775 0063214 0063214 00000000000 13412164240 015073 5 ustar ietingof ietingof snmpsim-0.4.5/snmpsim/daemon.py 0000664 0063214 0063214 00000006455 13412164152 016724 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import sys
from snmpsim import error
if sys.platform[:3] == 'win':
def daemonize(pidfile):
raise error.SnmpsimError('Windows is not inhabited with daemons!')
def dropPrivileges(uname, gname):
return
else:
import os, pwd, grp, atexit, signal, tempfile
def daemonize(pidfile):
try:
pid = os.fork()
if pid > 0:
# exit first parent
os._exit(0)
except OSError:
raise error.SnmpsimError('ERROR: fork #1 failed: %s' % sys.exc_info()[1])
# decouple from parent environment
try:
os.chdir('/')
os.setsid()
except OSError:
pass
os.umask(0)
# do second fork
try:
pid = os.fork()
if pid > 0:
# exit from second parent
os._exit(0)
except OSError:
raise error.SnmpsimError('ERROR: fork #2 failed: %s' % sys.exc_info()[1])
def signal_cb(s, f):
raise KeyboardInterrupt
for s in signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT:
signal.signal(s, signal_cb)
# write pidfile
def atexit_cb():
try:
os.remove(pidfile)
except OSError:
pass
atexit.register(atexit_cb)
try:
fd, nm = tempfile.mkstemp(dir=os.path.dirname(pidfile))
os.write(fd, ('%d\n' % os.getpid()).encode('utf-8'))
os.close(fd)
os.rename(nm, pidfile)
except:
raise error.SnmpsimError('Failed to create PID file %s: %s' % (pidfile, sys.exc_info()[1]))
# redirect standard file descriptors
sys.stdout.flush()
sys.stderr.flush()
si = open(os.devnull, 'r')
so = open(os.devnull, 'a+')
se = open(os.devnull, 'a+')
os.dup2(si.fileno(), sys.stdin.fileno())
os.dup2(so.fileno(), sys.stdout.fileno())
os.dup2(se.fileno(), sys.stderr.fileno())
def dropPrivileges(uname, gname):
if os.getuid() != 0:
if uname and uname != pwd.getpwnam(uname).pw_name or \
gname and gname != grp.getgrnam(gname).gr_name:
raise error.SnmpsimError('Process is running under different UID/GID')
else:
return
else:
if not uname or not gname:
raise error.SnmpsimError('Must drop priveleges to a non-priveleged user&group')
try:
runningUid = pwd.getpwnam(uname).pw_uid
runningGid = grp.getgrnam(gname).gr_gid
except Exception:
raise error.SnmpsimError('getpwnam()/getgrnam() failed for %s/%s: %s' % (uname, gname, sys.exc_info()[1]))
try:
os.setgroups([])
except Exception:
raise error.SnmpsimError('setgroups() failed: %s' % sys.exc_info()[1])
try:
os.setgid(runningGid)
os.setuid(runningUid)
except Exception:
raise error.SnmpsimError('setgid()/setuid() failed for %s/%s: %s' % (runningGid, runningUid, sys.exc_info()[1]))
os.umask(63) # 0077
snmpsim-0.4.5/snmpsim/record/ 0000775 0063214 0063214 00000000000 13412164240 016351 5 ustar ietingof ietingof snmpsim-0.4.5/snmpsim/record/abstract.py 0000664 0063214 0063214 00000002074 13412164152 020533 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.grammar import abstract
from snmpsim.error import SnmpsimError
class AbstractRecord:
grammar = abstract.AbstractGrammar()
ext = ''
def evaluateOid(self, oid):
raise SnmpsimError('Method not implemented at %s' % self.__class__.__name__)
def evaluateValue(self, oid, tag, value, **context):
raise SnmpsimError('Method not implemented at %s' % self.__class__.__name__)
def evaluate(self, line, **context):
raise SnmpsimError('Method not implemented at %s' % self.__class__.__name__)
def formatOid(self, oid):
raise SnmpsimError('Method not implemented at %s' % self.__class__.__name__)
def formatValue(self, oid, value, **context):
raise SnmpsimError('Method not implemented at %s' % self.__class__.__name__)
def format(self, oid, value, **context):
raise SnmpsimError('Method not implemented at %s' % self.__class__.__name__)
snmpsim-0.4.5/snmpsim/record/dump.py 0000664 0063214 0063214 00000003721 13412164152 017675 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import sys
from pyasn1.type import univ
from pyasn1.error import PyAsn1Error
from snmpsim.grammar import dump
from snmpsim.error import SnmpsimError
from snmpsim.record import abstract
class DumpRecord(abstract.AbstractRecord):
grammar = dump.DumpGrammar()
ext = 'dump'
def evaluateOid(self, oid):
return univ.ObjectIdentifier(oid)
def evaluateValue(self, oid, tag, value, **context):
try:
value = self.grammar.tagMap[tag](value)
except:
raise SnmpsimError('value evaluation error for tag %r, value %r' % (tag, value))
# not all callers supply the context - just ignore it
try:
if (not context['nextFlag'] and
not context['exactMatch'] or
context['setFlag']):
return context['origOid'], tag, context['errorStatus']
except KeyError:
pass
return oid, tag, value
def evaluate(self, line, **context):
oid, tag, value = self.grammar.parse(line)
oid = self.evaluateOid(oid)
if context.get('oidOnly'):
value = None
else:
try:
oid, tag, value = self.evaluateValue(oid, tag, value, **context)
except PyAsn1Error:
raise SnmpsimError('value evaluation for %s = %r failed: %s\r\n' % (oid, value, sys.exc_info()[1]))
return oid, value
def formatOid(self, oid):
return univ.ObjectIdentifier(oid).prettyPrint()
def formatValue(self, oid, value, **context):
return self.formatOid(oid), self.grammar.getTagByType(value), str(value)
def format(self, oid, value, **context):
textOid, textTag, textValue = self.formatValue(oid, value, **context)
return self.grammar.build(
textOid, textTag, textValue
)
snmpsim-0.4.5/snmpsim/record/sap.py 0000664 0063214 0063214 00000000466 13412164152 017516 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.record import dump
from snmpsim.grammar import sap
class SapRecord(dump.DumpRecord):
grammar = sap.SapGrammar()
ext = 'sapwalk'
snmpsim-0.4.5/snmpsim/record/mvc.py 0000664 0063214 0063214 00000000507 13412164152 017514 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.record import dump
from snmpsim.grammar import mvc
class MvcRecord(dump.DumpRecord):
grammar = mvc.MvcGrammar()
ext = 'MVC' # an alias to .dump
snmpsim-0.4.5/snmpsim/record/__init__.py 0000664 0063214 0063214 00000000073 13051045252 020462 0 ustar ietingof ietingof # This file is necessary to make this directory a package.
snmpsim-0.4.5/snmpsim/record/search/ 0000775 0063214 0063214 00000000000 13412164240 017616 5 ustar ietingof ietingof snmpsim-0.4.5/snmpsim/record/search/database.py 0000664 0063214 0063214 00000013673 13412164152 021750 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import os
import sys
if sys.version_info[0] < 3:
import anydbm as dbm
from whichdb import whichdb
else:
import dbm
whichdb = dbm.whichdb
from snmpsim import confdir, log, error
from snmpsim.record.search.file import getRecord
class RecordIndex:
def __init__(self, textFile, textParser):
self.__textFile = textFile
self.__textParser = textParser
try:
self.__dbFile = textFile[:textFile.rindex(os.path.extsep)]
except ValueError:
self.__dbFile = textFile
self.__dbFile = self.__dbFile + os.path.extsep + 'dbm'
self.__dbFile = os.path.join(confdir.cache, os.path.splitdrive(self.__dbFile)[1].replace(os.path.sep, '_'))
self.__db = self.__text = None
self.__dbType = '?'
self.__textFileTime = 0
def __str__(self):
return 'Data file %s, %s-indexed, %s' % (
self.__textFile, self.__dbType, self.__db and 'opened' or 'closed'
)
def isOpen(self):
return self.__db is not None
def getHandles(self):
if self.isOpen():
if self.__textFileTime != os.stat(self.__textFile)[8]:
log.msg('Text file %s modified, closing' % self.__textFile)
self.close()
if not self.isOpen():
self.create()
self.open()
return self.__text, self.__db
def create(self, forceIndexBuild=False, validateData=False):
textFileTime = os.stat(self.__textFile)[8]
# gdbm on OS X seems to voluntarily append .db, trying to catch that
indexNeeded = forceIndexBuild
for dbFile in (
self.__dbFile + os.path.extsep + 'db',
self.__dbFile + os.path.extsep + 'dat',
self.__dbFile
):
if os.path.exists(dbFile):
if textFileTime < os.stat(dbFile)[8]:
if indexNeeded:
log.msg('Forced index rebuild %s' % dbFile)
elif not whichdb(self.__dbFile):
indexNeeded = True
log.msg('Unsupported index format, rebuilding index %s' % dbFile)
else:
indexNeeded = True
log.msg('Index %s out of date' % dbFile)
break
else:
indexNeeded = True
log.msg('Index %s does not exist for data file %s' % (self.__dbFile, self.__textFile))
if indexNeeded:
# these might speed-up indexing
open_flags = 'nfu'
while open_flags:
try:
db = dbm.open(self.__dbFile, open_flags)
except Exception:
open_flags = open_flags[:-1]
continue
else:
break
else:
raise error.SnmpsimError('Failed to create %s for data file %s: %s' % (self.__dbFile, self.__textFile, sys.exc_info()[1]))
try:
text = open(self.__textFile, 'rb')
except:
raise error.SnmpsimError('Failed to open data file %s: %s' % (self.__dbFile, sys.exc_info()[0]))
log.msg('Building index %s for data file %s (open flags \"%s\")...' % (self.__dbFile, self.__textFile, open_flags))
sys.stdout.flush()
lineNo = 0
offset = 0
prevOffset = -1
while True:
line, lineNo, offset = getRecord(text, lineNo, offset)
if not line:
# reference to last OID in data file
db['last'] = '%d,%d,%d' % (offset, 0, prevOffset)
break
try:
oid, tag, val = self.__textParser.grammar.parse(line)
except Exception:
db.close()
exc = sys.exc_info()[1]
try:
os.remove(self.__dbFile)
except OSError:
pass
raise error.SnmpsimError('Data error at %s:%d: %s' % (self.__textFile, lineNo, exc))
if validateData:
try:
self.__textParser.evaluateOid(oid)
except Exception:
db.close()
exc = sys.exc_info()[1]
try:
os.remove(self.__dbFile)
except OSError:
pass
raise error.SnmpsimError('OID error at %s:%d: %s' % (self.__textFile, lineNo, exc))
try:
self.__textParser.evaluateValue(
oid, tag, val, dataValidation=True
)
except Exception:
log.msg(
'ERROR at line %s, value %r: %s' % \
(lineNo, val, sys.exc_info()[1])
)
# for lines serving subtrees, type is empty in tag field
db[oid] = '%d,%d,%d' % (offset, tag[0] == ':', prevOffset)
if tag[0] == ':':
prevOffset = offset
else:
prevOffset = -1 # not a subtree - no backreference
offset += len(line)
text.close()
db.close()
log.msg('...%d entries indexed' % lineNo)
self.__textFileTime = os.stat(self.__textFile)[8]
self.__dbType = whichdb(self.__dbFile)
return self
def lookup(self, oid):
return self.__db[oid]
def open(self):
self.__text = open(self.__textFile, 'rb')
self.__db = dbm.open(self.__dbFile)
def close(self):
self.__text.close()
self.__db.close()
self.__db = self.__text = None
snmpsim-0.4.5/snmpsim/record/search/file.py 0000664 0063214 0063214 00000003754 13412164152 021122 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from pyasn1.compat.octets import str2octs
# read lines from text file ignoring #comments and blank lines
def getRecord(fileObj, lineNo=None, offset=0):
line = fileObj.readline()
if lineNo is not None and line:
lineNo += 1
while line:
tline = line.strip()
# skip comment or blank line
if not tline or tline.startswith(str2octs('#')):
offset += len(line)
line = fileObj.readline()
if lineNo is not None and line:
lineNo += 1
else:
break
return line, lineNo, offset
def findEol(fileObj, offset, blockSize=256, eol=str2octs('\n')):
while True:
if offset < blockSize:
offset, blockSize = 0, offset
else:
offset -= blockSize
fileObj.seek(offset)
chunk = fileObj.read(blockSize)
try:
return offset + chunk.rindex(eol) + 1
except ValueError:
if offset == 0:
return offset
continue
# In-place, by-OID binary search
def searchRecordByOid(oid, fileObj, textParser):
lo = mid = 0;
prev_mid = -1
fileObj.seek(0, 2)
hi = sz = fileObj.tell()
while lo < hi:
mid = (lo + hi) // 2
fileObj.seek(mid)
mid = findEol(fileObj, mid)
fileObj.seek(mid)
if mid == prev_mid: # loop condition due to stepping back pivot
break
if mid >= sz:
return sz
line, _, skippedOffset = getRecord(fileObj)
if not line:
return hi
midval, _ = textParser.evaluate(line, oidOnly=True)
if midval < oid:
lo = mid + skippedOffset + len(line)
elif midval > oid:
hi = mid
else:
return mid
prev_mid = mid
if lo == mid:
return lo
else:
return hi
snmpsim-0.4.5/snmpsim/record/search/__init__.py 0000664 0063214 0063214 00000000073 13051045252 021727 0 ustar ietingof ietingof # This file is necessary to make this directory a package.
snmpsim-0.4.5/snmpsim/record/walk.py 0000664 0063214 0063214 00000000473 13412164152 017667 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.record import dump
from snmpsim.grammar import walk
class WalkRecord(dump.DumpRecord):
grammar = walk.WalkGrammar()
ext = 'snmpwalk'
snmpsim-0.4.5/snmpsim/record/snmprec.py 0000664 0063214 0063214 00000006112 13412164152 020374 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.record import dump
from snmpsim.grammar import snmprec
from snmpsim import error
class SnmprecRecord(dump.DumpRecord):
grammar = snmprec.SnmprecGrammar()
ext = 'snmprec'
# https://docs.python.org/3/reference/lexical_analysis.html#literals
ESCAPE_CHARS = {
92: 92,
39: 39,
34: 34,
97: 7,
98: 8,
102: 12,
110: 10,
114: 13,
116: 9,
118: 11,
}
@staticmethod
def unpackTag(tag):
if tag.endswith('x') or tag.endswith('e'):
return tag[:-1], tag[-1]
else:
return tag, None
def evaluateRawString(self, escaped):
"""Evaluates raw Python string like `ast.literal_eval` does"""
unescaped = []
hexdigit = None
escape = False
for char in escaped:
number = ord(char)
if hexdigit is not None:
if hexdigit:
number = (int(hexdigit, 16) << 4) + int(char, 16)
hexdigit = None
else:
hexdigit = char
continue
if escape:
escape = False
try:
number = self.ESCAPE_CHARS[number]
except KeyError:
if number == 120:
hexdigit = ''
continue
raise ValueError('Unknown escape character %c' % char)
if number == 92: # '\'
escape = True
continue
unescaped.append(number)
return unescaped
def evaluateValue(self, oid, tag, value, **context):
tag, encodingId = self.unpackTag(tag)
try:
if encodingId == 'e':
value = self.evaluateRawString(value)
return oid, tag, self.grammar.tagMap[tag](value)
elif encodingId == 'x':
return oid, tag, self.grammar.tagMap[tag](hexValue=value)
else:
return oid, tag, self.grammar.tagMap[tag](value)
except:
raise error.SnmpsimError('value evaluation error for tag %r, value %r' % (tag, value))
def formatValue(self, oid, value, **context):
if 'nohex' in context and context['nohex']:
hexvalue = None
else:
hexvalue = self.grammar.hexifyValue(value)
textTag = self.grammar.getTagByType(value)
if hexvalue:
textTag, textValue = textTag + 'x', hexvalue
else:
try:
textValue = repr(value.asOctets())
if textValue.startswith('b'):
textValue = textValue[1:]
textValue = textValue[1:-1]
if '\\' in textValue:
textTag += 'e'
except AttributeError:
textValue = str(value)
return self.formatOid(oid), textTag, textValue
snmpsim-0.4.5/snmpsim/error.py 0000664 0063214 0063214 00000001140 13412164152 016574 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
class SnmpsimError(Exception): pass
class NoDataNotification(SnmpsimError): pass
class MoreDataNotification(SnmpsimError):
def __init__(self, **kwargs):
self.__kwargs = kwargs
def __contains__(self, key):
return key in self.__kwargs
def __getitem__(self, key):
return self.__kwargs[key]
def get(self, key):
return self.__kwargs.get(key)
def keys(self):
return self.__kwargs.keys()
snmpsim-0.4.5/snmpsim/log.py 0000664 0063214 0063214 00000012206 13412164152 016231 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import sys
import time
import logging
import socket
from logging import handlers
from snmpsim import error
class AbstractLogger:
def __init__(self, progId, *priv):
self._logger = logging.getLogger(progId)
self._logger.setLevel(logging.DEBUG)
self.__ident = 0
self.init(*priv)
def __call__(self, s):
self._logger.debug(' ' * self.__ident + s)
def incIdent(self, amount=2):
self.__ident += amount
def decIdent(self, amount=2):
self.__ident -= amount
if self.__ident < 0:
self.__ident = 0
def init(self, *priv):
pass
class SyslogLogger(AbstractLogger):
def init(self, *priv):
if len(priv) < 1:
raise error.SnmpsimError('Bad syslog params, need at least facility, also accept priority, host, port, socktype (tcp|udp)')
if len(priv) < 2:
priv = [priv[0], 'debug']
if len(priv) < 3:
priv = [priv[0], priv[1], 'localhost', 514, 'udp']
if not priv[2].startswith('/'):
if len(priv) < 4:
priv = [priv[0], priv[1], priv[2], 514, 'udp']
if len(priv) < 5:
priv = [priv[0], priv[1], priv[2], 514, 'udp']
priv = [priv[0], priv[1], priv[2], int(priv[3]), priv[4]]
try:
handler = handlers.SysLogHandler(priv[2].startswith('/') and priv[2] or (priv[2], int(priv[3])),
priv[0].lower(), len(priv) > 4 and priv[
4] == 'tcp' and socket.SOCK_STREAM or socket.SOCK_DGRAM)
except:
raise error.SnmpsimError('Bad syslog option(s): %s' % sys.exc_info()[1])
handler.setFormatter(logging.Formatter('%(asctime)s %(name)s: %(message)s'))
self._logger.addHandler(handler)
class FileLogger(AbstractLogger):
def init(self, *priv):
if not priv:
raise error.SnmpsimError('Bad log file params, need filename')
if sys.platform[:3] == 'win':
# fix possibly corrupted absolute windows path
if len(priv[0]) == 1 and priv[0].isalpha() and len(priv) > 1:
priv = [priv[0] + ':' + priv[1]] + list(priv[2:])
maxsize = 0
maxage = None
if len(priv) > 1 and priv[1]:
localtime = time.localtime()
if priv[1][-1] in ('k', 'K'):
maxsize = int(priv[1][:-1]) * 1024
elif priv[1][-1] in ('m', 'M'):
maxsize = int(priv[1][:-1]) * 1024 * 1024
elif priv[1][-1] in ('g', 'G'):
maxsize = int(priv[1][:-1]) * 1024 * 1024 * 1024
elif priv[1][-1] in ('h', 'H'):
maxage = ('H', int(priv[1][:-1]))
elif priv[1][-1] in ('d', 'D'):
maxage = ('D', int(priv[1][:-1]))
else:
raise error.SnmpsimError(
'Unknown log rotation criteria %s, use K,M,G for size or H,D for time limits' % priv[1]
)
try:
if maxsize:
handler = handlers.RotatingFileHandler(priv[0], backupCount=30, maxBytes=maxsize)
elif maxage:
handler = handlers.TimedRotatingFileHandler(priv[0], backupCount=30, when=maxage[0], interval=maxage[1])
else:
handler = handlers.WatchedFileHandler(priv[0])
except AttributeError:
raise error.SnmpsimError(
'Bad log rotation criteria: %s' % sys.exc_info()[1]
)
handler.setFormatter(logging.Formatter('%(asctime)s %(name)s: %(message)s'))
self._logger.addHandler(handler)
self('Log file %s, rotation rules: %s' % (
priv[0], maxsize and '> %sKB' % (maxsize / 1024) or maxage and '%s%s' % (maxage[1], maxage[0]) or ''))
class StreamLogger(AbstractLogger):
stream = sys.stderr
def init(self, *priv):
try:
handler = logging.StreamHandler(self.stream)
except AttributeError:
raise error.SnmpsimError(
'Stream logger failure: %s' % sys.exc_info()[1]
)
handler.setFormatter(logging.Formatter('%(message)s'))
self._logger.addHandler(handler)
class StdoutLogger(StreamLogger):
stream = sys.stdout
class StderrLogger(StreamLogger):
stream = sys.stderr
class NullLogger(AbstractLogger):
def init(self, *priv):
handler = logging.NullHandler()
self._logger.addHandler(handler)
def __call__(self, s):
pass
gMap = {
'syslog': SyslogLogger,
'file': FileLogger,
'stdout': StdoutLogger,
'stderr': StderrLogger,
'null': NullLogger
}
msg = lambda x: None
def setLogger(progId, *priv, **options):
global msg
if priv[0] in gMap:
if not isinstance(msg, AbstractLogger) or options.get('force'):
msg = gMap[priv[0]](progId, *priv[1:])
else:
raise error.SnmpsimError(
'Unknown logging method "%s", known methods are: %s' % (priv[0], ', '.join(gMap.keys())))
snmpsim-0.4.5/snmpsim/grammar/ 0000775 0063214 0063214 00000000000 13412164240 016521 5 ustar ietingof ietingof snmpsim-0.4.5/snmpsim/grammar/abstract.py 0000664 0063214 0063214 00000001256 13412164152 020704 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim import error
class AbstractGrammar:
def parse(self, line):
raise error.SnmpsimError('Method not implemented at %s' % \
self.__class__.__name__)
def build(self, oid, tag, val):
raise error.SnmpsimError('Method not implemented at %s' % \
self.__class__.__name__)
def getTagByType(self, val):
raise error.SnmpsimError('Method not implemented at %s' % \
self.__class__.__name__)
snmpsim-0.4.5/snmpsim/grammar/dump.py 0000664 0063214 0063214 00000002757 13412164152 020055 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from pysnmp.proto import rfc1902
from pyasn1.type import univ
from pyasn1.compat.octets import octs2str
from snmpsim.grammar import abstract
from snmpsim import error
class DumpGrammar(abstract.AbstractGrammar):
tagMap = {
'0': rfc1902.Counter32,
'1': rfc1902.Gauge32,
'2': rfc1902.Integer32,
'3': rfc1902.IpAddress,
'4': univ.Null,
'5': univ.ObjectIdentifier,
'6': rfc1902.OctetString,
'7': rfc1902.TimeTicks,
'8': rfc1902.Counter32, # an alias
'9': rfc1902.Counter64,
}
def __nullFilter(value):
return '' # simply drop whatever value is there when it's a Null
def __unhexFilter(value):
if value[:5].lower() == 'hex: ':
value = [int(x, 16) for x in value[5:].split('.')]
elif value[0] == '"' and value[-1] == '"':
value = value[1:-1]
return value
filterMap = {
'4': __nullFilter,
'6': __unhexFilter
}
def parse(self, line):
try:
oid, tag, value = octs2str(line).split('|', 2)
except:
raise error.SnmpsimError('broken record <%s>' % line)
else:
if oid and tag:
return oid, tag, self.filterMap.get(tag, lambda x: x)(value.strip())
raise error.SnmpsimError('broken record <%s>' % line)
snmpsim-0.4.5/snmpsim/grammar/sap.py 0000664 0063214 0063214 00000002554 13412164152 017666 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from pysnmp.proto import rfc1902
from pyasn1.type import univ
from pyasn1.compat.octets import octs2str
from snmpsim.grammar import abstract
from snmpsim import error
class SapGrammar(abstract.AbstractGrammar):
tagMap = {
'Counter': rfc1902.Counter32,
'Gauge': rfc1902.Gauge32,
'Integer': rfc1902.Integer32,
'IpAddress': rfc1902.IpAddress,
# '': univ.Null,
'ObjectID': univ.ObjectIdentifier,
'OctetString': rfc1902.OctetString,
'TimeTicks': rfc1902.TimeTicks,
'Counter64': rfc1902.Counter64
}
def __stringFilter(value):
if value[:2] == '0x':
value = [int(value[x:x + 2], 16) for x in range(2, len(value[2:]) + 2, 2)]
return value
filterMap = {
'OctetString': __stringFilter
}
def parse(self, line):
try:
oid, tag, value = [x.strip() for x in octs2str(line).split(',', 2)]
except:
raise error.SnmpsimError('broken record <%s>' % line)
else:
if oid and tag:
return oid, tag, self.filterMap.get(tag, lambda x: x)(value.strip())
raise error.SnmpsimError('broken record <%s>' % line)
snmpsim-0.4.5/snmpsim/grammar/mvc.py 0000664 0063214 0063214 00000000353 13412164152 017663 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from snmpsim.grammar import dump
class MvcGrammar(dump.DumpGrammar): pass
snmpsim-0.4.5/snmpsim/grammar/__init__.py 0000664 0063214 0063214 00000000073 13051045252 020632 0 ustar ietingof ietingof # This file is necessary to make this directory a package.
snmpsim-0.4.5/snmpsim/grammar/walk.py 0000664 0063214 0063214 00000010660 13412164152 020036 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import re
from pysnmp.proto import rfc1902
from pyasn1.type import univ
from pyasn1.codec.ber import encoder
from pyasn1.compat.octets import octs2str, ints2octs
from snmpsim.grammar import abstract
from snmpsim import error
class WalkGrammar(abstract.AbstractGrammar):
# case-insensitive keys as snmpwalk output tend to vary
tagMap = {
'OID:': rfc1902.ObjectName,
'INTEGER:': rfc1902.Integer,
'STRING:': rfc1902.OctetString,
'BITS:': rfc1902.Bits,
'HEX-STRING:': rfc1902.OctetString,
'GAUGE32:': rfc1902.Gauge32,
'COUNTER32:': rfc1902.Counter32,
'COUNTER64:': rfc1902.Counter64,
'IPADDRESS:': rfc1902.IpAddress,
'OPAQUE:': rfc1902.Opaque,
'UNSIGNED32:': rfc1902.Unsigned32, # this is not needed
'TIMETICKS:': rfc1902.TimeTicks # this is made up
}
def __integerFilter(value):
try:
int(value)
return value
except ValueError:
# Clean enumeration values
match = re.match('.*?\((\-?[0-9]+)\)', value) # .1.3.6.1.2.1.2.2.1.3.1 = INTEGER: ethernetCsmacd(6)
if match:
return match.groups()[0]
# Clean values with UNIT suffix
match = re.match('(\-?[0-9]+)\s.+', value) # .1.3.6.1.2.1.4.13.0 = INTEGER: 60 seconds
if match:
return match.groups()[0]
return value
# possible DISPLAY-HINTs parsing should occur here
def __stringFilter(value):
if not value:
return value
elif value[0] == value[-1] == '"':
return value[1:-1]
elif value.find(':') > 0:
for x in value.split(':'):
for y in x:
if y not in '0123456789ABCDEFabcdef':
return value
return [int(x, 16) for x in value.split(':')]
else:
return value
def __opaqueFilter(value):
if value.upper().startswith('FLOAT: '):
return encoder.encode(univ.Real(float(value[7:])))
else:
return [int(y, 16) for y in value.split(' ')]
def __bitsFilter(value):
# rfc1902.Bits does not really initialize from sequences
return ints2octs([int(y, 16) for y in value.split(' ')])
def __hexStringFilter(value):
return [int(y, 16) for y in value.split(' ')]
def __gaugeFilter(value):
try:
int(value)
return value
except ValueError:
# Clean values with UNIT suffix
match = re.match('(\-?[0-9]+)\s.+', value) # .1.3.6.1.2.1.4.31.1.1.47.1 = Gauge32: 10000 milli-seconds
if match:
return match.groups()[0]
return value
def __netAddressFilter(value):
return '.'.join([str(int(y, 16)) for y in value.split(':')])
def __timeTicksFilter(value):
match = re.match('.*?\(([0-9]+)\)', value)
if match:
return match.groups()[0]
return value
filterMap = {
'OPAQUE:': __opaqueFilter,
'INTEGER:': __integerFilter,
'STRING:': __stringFilter,
'BITS:': __bitsFilter,
'HEX-STRING:': __hexStringFilter,
'GAUGE32:': __gaugeFilter,
'Network Address:': __netAddressFilter,
'TIMETICKS:': __timeTicksFilter
}
def parse(self, line):
line = line.decode('ascii', 'ignore').encode() # drop possible 8-bits
try:
oid, value = octs2str(line).strip().split(' = ', 1)
except:
raise error.SnmpsimError('broken record <%s>' % line)
if oid and oid[0] == '.':
oid = oid[1:]
if value.startswith('Wrong Type (should be'):
value = value[value.index(': ') + 2:]
if value.startswith('No more variables left in this MIB View'):
value = 'STRING: '
try:
tag, value = value.split(' ', 1)
except ValueError:
# this is implicit snmpwalk's fuzziness
if value == '""' or value == 'STRING:':
tag = 'STRING:'
value = ''
else:
tag = 'TimeTicks:'
if oid and tag:
return oid, tag.upper(), self.filterMap.get(tag.upper(), lambda x: x)(value.strip())
raise error.SnmpsimError('broken record <%s>' % line)
snmpsim-0.4.5/snmpsim/grammar/snmprec.py 0000664 0063214 0063214 00000004267 13412164152 020555 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
from string import digits, ascii_letters
from pysnmp.proto import rfc1902, rfc1905
from pyasn1.compat.octets import octs2str, str2octs, octs2ints
from pyasn1.type import univ
from snmpsim.grammar.abstract import AbstractGrammar
from snmpsim import error
class SnmprecGrammar(AbstractGrammar):
alnums = set(octs2ints(str2octs(ascii_letters + digits)))
tagMap = {}
for t in (rfc1902.Gauge32,
rfc1902.Integer32,
rfc1902.IpAddress,
univ.Null,
univ.ObjectIdentifier,
rfc1902.OctetString,
rfc1902.TimeTicks,
rfc1902.Opaque,
rfc1902.Counter32,
rfc1902.Counter64,
rfc1905.NoSuchObject,
rfc1905.NoSuchInstance,
rfc1905.EndOfMibView):
tagMap[str(sum([x for x in t.tagSet[0]]))] = t
def build(self, oid, tag, val):
if oid and tag:
return str2octs('%s|%s|%s\n' % (oid, tag, val))
raise error.SnmpsimError('empty OID/tag <%s/%s>' % (oid, tag))
def parse(self, line):
try:
oid, tag, value = octs2str(line).strip().split('|', 2)
except:
raise error.SnmpsimError('broken record <%s>' % line)
else:
if oid and tag:
return oid, tag, value
raise error.SnmpsimError('broken record <%s>' % line)
# helper functions
def getTagByType(self, value):
for tag, typ in self.tagMap.items():
if typ.tagSet[0] == value.tagSet[0]:
return tag
raise Exception('error: unknown type of %s' % (value,))
def hexifyValue(self, value):
if value.tagSet in (univ.OctetString.tagSet,
rfc1902.Opaque.tagSet,
rfc1902.IpAddress.tagSet):
nval = value.asNumbers()
for x in nval:
if (value.tagSet == rfc1902.IpAddress.tagSet or
x not in self.alnums):
return ''.join(['%.2x' % x for x in nval])
snmpsim-0.4.5/snmpsim/__init__.py 0000664 0063214 0063214 00000000101 13345010600 017167 0 ustar ietingof ietingof # http://www.python.org/dev/peps/pep-0396/
__version__ = '0.4.5'
snmpsim-0.4.5/snmpsim/confdir.py 0000664 0063214 0063214 00000004140 13412164152 017072 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
import os
import sys
import tempfile
if sys.platform[:3] == 'win':
variation = [
os.path.join(os.environ['HOMEPATH'], 'SNMP Simulator', 'Variation'),
os.path.join(os.environ['APPDATA'], 'SNMP Simulator', 'Variation'),
os.path.join(os.environ['PROGRAMFILES'], 'SNMP Simulator', 'Variation'),
os.path.join(os.path.split(__file__)[0], 'variation')
]
data = [
os.path.join(os.environ['HOMEPATH'], 'SNMP Simulator', 'Data'),
os.path.join(os.environ['APPDATA'], 'SNMP Simulator', 'Data'),
os.path.join(os.environ['PROGRAMFILES'], 'SNMP Simulator', 'Data'),
os.path.join(os.path.split(__file__)[0], 'data')
]
elif sys.platform == 'darwin':
variation = [
os.path.join(os.environ['HOME'], '.snmpsim', 'variation'),
os.path.join('/', 'usr', 'local', 'share', 'snmpsim', 'variation'),
os.path.join(sys.prefix, 'snmpsim', 'variation'),
os.path.join(sys.prefix, 'share', 'snmpsim', 'variation'),
os.path.join(os.path.split(__file__)[0], 'variation')
]
data = [
os.path.join(os.environ['HOME'], '.snmpsim', 'data'),
os.path.join('/', 'usr', 'local', 'share', 'snmpsim', 'data'),
os.path.join(sys.prefix, 'snmpsim', 'data'),
os.path.join(sys.prefix, 'share', 'snmpsim', 'data'),
os.path.join(os.path.split(__file__)[0], 'data')
]
else:
variation = [
os.path.join(os.environ['HOME'], '.snmpsim', 'variation'),
os.path.join(sys.prefix, 'snmpsim', 'variation'),
os.path.join(sys.prefix, 'share', 'snmpsim', 'variation'),
os.path.join(os.path.split(__file__)[0], 'variation')
]
data = [
os.path.join(os.environ['HOME'], '.snmpsim', 'data'),
os.path.join(sys.prefix, 'snmpsim', 'data'),
os.path.join(sys.prefix, 'share', 'snmpsim', 'data'),
os.path.join(os.path.split(__file__)[0], 'data')
]
cache = os.path.join(tempfile.gettempdir(), 'snmpsim')
snmpsim-0.4.5/snmpsim/mltsplit.py 0000664 0063214 0063214 00000000575 13412164152 017326 0 ustar ietingof ietingof #
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# Like string.split but first tries to use composite separator as an
# escaping aid
def split(val, sep):
for x in (3, 2, 1):
if val.find(sep * x) != -1:
return val.split(sep * x)
return [val]
snmpsim-0.4.5/data/ 0000775 0063214 0063214 00000000000 13412164240 014316 5 ustar ietingof ietingof snmpsim-0.4.5/data/README.txt 0000664 0063214 0063214 00000000542 13051045252 016015 0 ustar ietingof ietingof This directory is a repository of .snmprec files -- those are picked by
Simulator using community name (SNMPv1/v2c) or context name (SNMPv3)
as a selector. The contents of .snmprec files is used by Simulator
for building responses.
Simulator will report .snmprec files it finds on startup along with
community/context names to be used to address them.
snmpsim-0.4.5/data/foreignformats/ 0000775 0063214 0063214 00000000000 13412164240 017343 5 ustar ietingof ietingof snmpsim-0.4.5/data/foreignformats/README.txt 0000664 0063214 0063214 00000001422 13051045252 021040 0 ustar ietingof ietingof This directory holds examples of Managed Objects snapshots recorded by
other popular SNMP tools and stored in their own proprietary formats.
Snmpsim currently supports the following foreign data file formats:
* Net-SNMP's snmpwalk output (with -ObentU options)
* SimpleAgentPro sapwalk/sapwalk2
Please note that foreign formats do not allow for snmpsim's advanced features
such as dynamic value variation or triggering events to external systems.
If you possess a snapshot in a foreign format and wish to use advanced
snmpsim's features, do "snmprec" against "snmpsim" serving foreign data file
to aqcuire a snapshot in snmpsim's native .snmprec form.
Since snmpsim does not tolerate comments in data files, make sure to remove
ones from .sapwalk prior to feeding them to snmpsim.
snmpsim-0.4.5/data/foreignformats/linux.snmpwalk 0000664 0063214 0063214 00000730014 13051045252 022265 0 ustar ietingof ietingof .1.3.6.1.2.1.1.1.0 = STRING: Linux cray 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686
.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.8072.3.2.10
.1.3.6.1.2.1.1.3.0 = 121722922
.1.3.6.1.2.1.1.4.0 = STRING: Root (configure /etc/snmp/snmp.local.conf)
.1.3.6.1.2.1.1.5.0 = STRING: new system name
.1.3.6.1.2.1.1.6.0 = STRING: KK12 (edit /etc/snmp/snmpd.conf)
.1.3.6.1.2.1.1.8.0 = 0
.1.3.6.1.2.1.1.9.1.2.1 = OID: .1.3.6.1.6.3.11.2.3.1.1
.1.3.6.1.2.1.1.9.1.2.2 = OID: .1.3.6.1.6.3.15.2.1.1
.1.3.6.1.2.1.1.9.1.2.3 = OID: .1.3.6.1.6.3.10.3.1.1
.1.3.6.1.2.1.1.9.1.2.4 = OID: .1.3.6.1.6.3.1
.1.3.6.1.2.1.1.9.1.2.5 = OID: .1.3.6.1.2.1.49
.1.3.6.1.2.1.1.9.1.2.6 = OID: .1.3.6.1.2.1.4
.1.3.6.1.2.1.1.9.1.2.7 = OID: .1.3.6.1.2.1.50
.1.3.6.1.2.1.1.9.1.2.8 = OID: .1.3.6.1.6.3.16.2.2.1
.1.3.6.1.2.1.1.9.1.3.1 = STRING: The MIB for Message Processing and Dispatching.
.1.3.6.1.2.1.1.9.1.3.2 = STRING: The MIB for Message Processing and Dispatching.
.1.3.6.1.2.1.1.9.1.3.3 = STRING: The SNMP Management Architecture MIB.
.1.3.6.1.2.1.1.9.1.3.4 = STRING: The MIB module for SNMPv2 entities
.1.3.6.1.2.1.1.9.1.3.5 = STRING: The MIB module for managing TCP implementations
.1.3.6.1.2.1.1.9.1.3.6 = STRING: The MIB module for managing IP and ICMP implementations
.1.3.6.1.2.1.1.9.1.3.7 = STRING: The MIB module for managing UDP implementations
.1.3.6.1.2.1.1.9.1.3.8 = STRING: View-based Access Control Model for SNMP.
.1.3.6.1.2.1.1.9.1.4.1 = 0
.1.3.6.1.2.1.1.9.1.4.2 = 0
.1.3.6.1.2.1.1.9.1.4.3 = 0
.1.3.6.1.2.1.1.9.1.4.4 = 0
.1.3.6.1.2.1.1.9.1.4.5 = 0
.1.3.6.1.2.1.1.9.1.4.6 = 0
.1.3.6.1.2.1.1.9.1.4.7 = 0
.1.3.6.1.2.1.1.9.1.4.8 = 0
.1.3.6.1.2.1.2.1.0 = INTEGER: 2
.1.3.6.1.2.1.2.2.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.1.2 = INTEGER: 2
.1.3.6.1.2.1.2.2.1.2.1 = STRING: lo
.1.3.6.1.2.1.2.2.1.2.2 = STRING: eth0
.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: 24
.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: 6
.1.3.6.1.2.1.2.2.1.4.1 = INTEGER: 16436
.1.3.6.1.2.1.2.2.1.4.2 = INTEGER: 1500
.1.3.6.1.2.1.2.2.1.5.1 = Gauge32: 10000000
.1.3.6.1.2.1.2.2.1.5.2 = Gauge32: 100000000
.1.3.6.1.2.1.2.2.1.6.1 = STRING:
.1.3.6.1.2.1.2.2.1.6.2 = STRING: 0:12:79:62:f9:40
.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.9.1 = 0
.1.3.6.1.2.1.2.2.1.9.2 = 0
.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 3651043677
.1.3.6.1.2.1.2.2.1.10.2 = Counter32: 1914489014
.1.3.6.1.2.1.2.2.1.11.1 = Counter32: 17979662
.1.3.6.1.2.1.2.2.1.11.2 = Counter32: 326497672
.1.3.6.1.2.1.2.2.1.12.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.12.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.13.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.13.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.14.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.14.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.15.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.15.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 3651043677
.1.3.6.1.2.1.2.2.1.16.2 = Counter32: 2295707401
.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 17979662
.1.3.6.1.2.1.2.2.1.17.2 = Counter32: 240979609
.1.3.6.1.2.1.2.2.1.18.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.18.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.19.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.19.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.20.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.20.2 = Counter32: 0
.1.3.6.1.2.1.2.2.1.21.1 = Gauge32: 0
.1.3.6.1.2.1.2.2.1.21.2 = Gauge32: 0
.1.3.6.1.2.1.2.2.1.22.1 = OID: .0.0
.1.3.6.1.2.1.2.2.1.22.2 = OID: .0.0
.1.3.6.1.2.1.3.1.1.1.2.1.195.218.254.97 = INTEGER: 2
.1.3.6.1.2.1.3.1.1.2.2.1.195.218.254.97 = Hex-STRING: 00 0E 84 9F 9C 19
.1.3.6.1.2.1.3.1.1.3.2.1.195.218.254.97 = IpAddress: 195.218.254.97
.1.3.6.1.2.1.4.1.0 = INTEGER: 2
.1.3.6.1.2.1.4.2.0 = INTEGER: 64
.1.3.6.1.2.1.4.3.0 = Counter32: 337456326
.1.3.6.1.2.1.4.4.0 = Counter32: 0
.1.3.6.1.2.1.4.5.0 = Counter32: 502838
.1.3.6.1.2.1.4.6.0 = Counter32: 0
.1.3.6.1.2.1.4.7.0 = Counter32: 0
.1.3.6.1.2.1.4.8.0 = Counter32: 0
.1.3.6.1.2.1.4.9.0 = Counter32: 336867885
.1.3.6.1.2.1.4.10.0 = Counter32: 246842684
.1.3.6.1.2.1.4.11.0 = Counter32: 0
.1.3.6.1.2.1.4.12.0 = Counter32: 0
.1.3.6.1.2.1.4.13.0 = INTEGER: 30
.1.3.6.1.2.1.4.14.0 = Counter32: 2095
.1.3.6.1.2.1.4.15.0 = Counter32: 1040
.1.3.6.1.2.1.4.16.0 = Counter32: 0
.1.3.6.1.2.1.4.17.0 = Counter32: 96105
.1.3.6.1.2.1.4.18.0 = Counter32: 0
.1.3.6.1.2.1.4.19.0 = Counter32: 2142577
.1.3.6.1.2.1.4.20.1.1.127.0.0.1 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.4.20.1.1.195.218.254.105 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.4.20.1.2.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.20.1.2.195.218.254.105 = INTEGER: 2
.1.3.6.1.2.1.4.20.1.3.127.0.0.1 = IpAddress: 255.0.0.0
.1.3.6.1.2.1.4.20.1.3.195.218.254.105 = IpAddress: 255.255.255.0
.1.3.6.1.2.1.4.20.1.4.127.0.0.1 = INTEGER: 0
.1.3.6.1.2.1.4.20.1.4.195.218.254.105 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.21.1.1.127.0.0.0 = IpAddress: 127.0.0.0
.1.3.6.1.2.1.4.21.1.1.195.218.254.0 = IpAddress: 195.218.254.0
.1.3.6.1.2.1.4.21.1.2.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.2.127.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.2.195.218.254.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.3.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.3.127.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.21.1.3.195.218.254.0 = INTEGER: 0
.1.3.6.1.2.1.4.21.1.7.0.0.0.0 = IpAddress: 195.218.254.97
.1.3.6.1.2.1.4.21.1.7.127.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.21.1.7.195.218.254.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.21.1.8.0.0.0.0 = INTEGER: 4
.1.3.6.1.2.1.4.21.1.8.127.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.8.195.218.254.0 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.9.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.127.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.195.218.254.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.21.1.11.127.0.0.0 = IpAddress: 255.0.0.0
.1.3.6.1.2.1.4.21.1.11.195.218.254.0 = IpAddress: 255.255.255.0
.1.3.6.1.2.1.4.21.1.13.0.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.127.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.195.218.254.0 = OID: .0.0
.1.3.6.1.2.1.4.22.1.1.2.195.218.254.97 = INTEGER: 2
.1.3.6.1.2.1.4.22.1.2.2.195.218.254.97 = STRING: 0:e:84:9f:9c:19
.1.3.6.1.2.1.4.22.1.3.2.195.218.254.97 = IpAddress: 195.218.254.97
.1.3.6.1.2.1.4.22.1.4.2.195.218.254.97 = INTEGER: 3
.1.3.6.1.2.1.4.23.0 = Counter32: 0
.1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.195.218.254.97 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.0.0.0.255.0.0.0.0.0 = IpAddress: 127.0.0.0
.1.3.6.1.2.1.4.24.4.1.1.195.218.254.0.0.255.255.255.0.0.0.0.0 = IpAddress: 195.218.254.0
.1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.195.218.254.97 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.0.0.0.255.0.0.0.0.0 = IpAddress: 0.0.0.255
.1.3.6.1.2.1.4.24.4.1.2.195.218.254.0.0.255.255.255.0.0.0.0.0 = IpAddress: 0.255.255.255
.1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.3.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.195.218.254.97 = IpAddress: 195.218.254.97
.1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.0.0.0.255.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.24.4.1.4.195.218.254.0.0.255.255.255.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 2
.1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.4.1.5.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 4
.1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.4.1.6.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 2
.1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.4.1.7.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.195.218.254.97 = OID: .0.0
.1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.0.0.0.255.0.0.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.24.4.1.9.195.218.254.0.0.255.255.255.0.0.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.10.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 1
.1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.11.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.12.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.13.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.14.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.15.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 1
.1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.4.1.16.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.6.0 = Gauge32: 6
.1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.7.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 4
.1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.7.1.8.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.9.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.10.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.11.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0
.1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.7.1.12.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256
.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256
.1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.13.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.14.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.15.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.16.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.17.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.25.0 = INTEGER: 2
.1.3.6.1.2.1.4.26.0 = INTEGER: 64
.1.3.6.1.2.1.4.31.1.1.3.1 = Counter32: 337452904
.1.3.6.1.2.1.4.31.1.1.3.2 = Counter32: 82494
.1.3.6.1.2.1.4.31.1.1.4.1 = Counter64: 337452904
.1.3.6.1.2.1.4.31.1.1.4.2 = Counter64: 82494
.1.3.6.1.2.1.4.31.1.1.5.2 = Counter32: 16107769
.1.3.6.1.2.1.4.31.1.1.6.2 = Counter64: 16107769
.1.3.6.1.2.1.4.31.1.1.7.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.7.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.8.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.8.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.9.1 = Counter32: 502838
.1.3.6.1.2.1.4.31.1.1.9.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.10.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.10.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.11.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.11.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.12.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.12.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.13.1 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.13.2 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.14.1 = Counter32: 2095
.1.3.6.1.2.1.4.31.1.1.14.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.15.1 = Counter32: 1040
.1.3.6.1.2.1.4.31.1.1.15.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.16.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.16.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.17.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.17.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.18.1 = Counter32: 336864463
.1.3.6.1.2.1.4.31.1.1.18.2 = Counter32: 82494
.1.3.6.1.2.1.4.31.1.1.19.1 = Counter64: 336864463
.1.3.6.1.2.1.4.31.1.1.19.2 = Counter64: 82494
.1.3.6.1.2.1.4.31.1.1.20.1 = Counter32: 246839263
.1.3.6.1.2.1.4.31.1.1.20.2 = Counter32: 82500
.1.3.6.1.2.1.4.31.1.1.21.1 = Counter64: 246839263
.1.3.6.1.2.1.4.31.1.1.21.2 = Counter64: 82500
.1.3.6.1.2.1.4.31.1.1.22.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.22.2 = Counter32: 79095
.1.3.6.1.2.1.4.31.1.1.23.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.23.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.24.1 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.24.2 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.25.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.25.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.26.1 = Counter32: 96105
.1.3.6.1.2.1.4.31.1.1.26.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.27.1 = Counter32: 96105
.1.3.6.1.2.1.4.31.1.1.27.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.28.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.28.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.29.1 = Counter32: 2142577
.1.3.6.1.2.1.4.31.1.1.29.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.30.1 = Counter32: 248885735
.1.3.6.1.2.1.4.31.1.1.30.2 = Counter32: 3405
.1.3.6.1.2.1.4.31.1.1.31.1 = Counter64: 248885735
.1.3.6.1.2.1.4.31.1.1.31.2 = Counter64: 3405
.1.3.6.1.2.1.4.31.1.1.32.2 = Counter32: 16108153
.1.3.6.1.2.1.4.31.1.1.33.2 = Counter64: 16108153
.1.3.6.1.2.1.4.31.1.1.34.1 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.34.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.35.1 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.35.2 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.36.2 = Counter32: 0
.1.3.6.1.2.1.4.31.1.1.37.2 = Counter64: 0
.1.3.6.1.2.1.4.31.1.1.38.1 = Counter32: 18
.1.3.6.1.2.1.4.31.1.1.38.2 = Counter32: 8
.1.3.6.1.2.1.4.31.1.1.39.1 = Counter64: 18
.1.3.6.1.2.1.4.31.1.1.39.2 = Counter64: 8
.1.3.6.1.2.1.4.31.1.1.40.2 = Counter32: 536
.1.3.6.1.2.1.4.31.1.1.41.2 = Counter64: 536
.1.3.6.1.2.1.4.31.1.1.42.1 = Counter32: 13953
.1.3.6.1.2.1.4.31.1.1.43.1 = Counter64: 13953
.1.3.6.1.2.1.4.31.1.1.44.1 = Counter32: 49
.1.3.6.1.2.1.4.31.1.1.45.1 = Counter64: 49
.1.3.6.1.2.1.4.31.1.1.46.1 = 0
.1.3.6.1.2.1.4.31.1.1.46.2 = 0
.1.3.6.1.2.1.4.31.1.1.47.1 = Gauge32: 60000
.1.3.6.1.2.1.4.31.1.1.47.2 = Gauge32: 60000
.1.3.6.1.2.1.4.31.2.0 = 0
.1.3.6.1.2.1.4.31.3.1.3.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.3.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.4.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.4.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.5.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.5.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.6.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.6.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.7.2.1 = Counter32: 82494
.1.3.6.1.2.1.4.31.3.1.7.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.8.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.8.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.9.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.9.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.10.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.10.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.11.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.11.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.12.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.12.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.13.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.13.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.14.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.14.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.15.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.15.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.16.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.16.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.17.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.17.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.18.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.18.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.19.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.19.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.20.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.20.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.21.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.21.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.23.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.23.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.24.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.24.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.25.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.25.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.26.2.1 = Counter32: 82494
.1.3.6.1.2.1.4.31.3.1.26.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.27.2.1 = Counter32: 82494
.1.3.6.1.2.1.4.31.3.1.27.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.28.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.28.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.29.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.29.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.30.2.1 = Counter32: 4294884802
.1.3.6.1.2.1.4.31.3.1.30.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.31.2.1 = Counter64: 18446744073709469122
.1.3.6.1.2.1.4.31.3.1.31.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.32.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.32.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.33.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.33.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.34.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.34.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.35.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.35.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.36.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.36.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.37.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.37.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.38.2.1 = Counter32: 82494
.1.3.6.1.2.1.4.31.3.1.38.2.2 = Counter32: 6
.1.3.6.1.2.1.4.31.3.1.39.2.1 = Counter64: 82494
.1.3.6.1.2.1.4.31.3.1.39.2.2 = Counter64: 6
.1.3.6.1.2.1.4.31.3.1.40.2.1 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.40.2.2 = Counter32: 0
.1.3.6.1.2.1.4.31.3.1.41.2.1 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.41.2.2 = Counter64: 0
.1.3.6.1.2.1.4.31.3.1.46.2.1 = 0
.1.3.6.1.2.1.4.31.3.1.46.2.2 = 0
.1.3.6.1.2.1.4.31.3.1.47.2.1 = Gauge32: 60000
.1.3.6.1.2.1.4.31.3.1.47.2.2 = Gauge32: 60000
.1.3.6.1.2.1.4.33.0 = INTEGER: 465941894
.1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.3.1.4.195.218.254.105 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.3.1.4.195.218.254.255 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.4.1.4.195.218.254.105 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.4.1.4.195.218.254.255 = INTEGER: 3
.1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8
.1.3.6.1.2.1.4.34.1.5.1.4.195.218.254.105 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.195.218.254.0.24
.1.3.6.1.2.1.4.34.1.5.1.4.195.218.254.255 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.195.218.254.0.24
.1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128
.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = OID: .1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
.1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.6.1.4.195.218.254.105 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.6.1.4.195.218.254.255 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 5
.1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.7.1.4.195.218.254.105 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.7.1.4.195.218.254.255 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1 = 0
.1.3.6.1.2.1.4.34.1.8.1.4.195.218.254.105 = 0
.1.3.6.1.2.1.4.34.1.8.1.4.195.218.254.255 = 0
.1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0
.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = 0
.1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1 = 0
.1.3.6.1.2.1.4.34.1.9.1.4.195.218.254.105 = 0
.1.3.6.1.2.1.4.34.1.9.1.4.195.218.254.255 = 0
.1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0
.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = 0
.1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.10.1.4.195.218.254.105 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.10.1.4.195.218.254.255 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 1
.1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.11.1.4.195.218.254.105 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.11.1.4.195.218.254.255 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2
.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 4
.1.3.6.1.2.1.4.35.1.4.2.1.4.195.218.254.97 = STRING: 0:e:84:9f:9c:19
.1.3.6.1.2.1.4.35.1.5.2.1.4.195.218.254.97 = 282
.1.3.6.1.2.1.4.35.1.6.2.1.4.195.218.254.97 = INTEGER: 3
.1.3.6.1.2.1.4.35.1.7.2.1.4.195.218.254.97 = INTEGER: 1
.1.3.6.1.2.1.4.35.1.8.2.1.4.195.218.254.97 = INTEGER: 1
.1.3.6.1.2.1.4.36.1.2.2 = Gauge32: 2
.1.3.6.1.2.1.4.36.1.3.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.4.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.5.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.6.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.7.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.8.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.9.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.10.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.11.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.12.2 = Gauge32: 0
.1.3.6.1.2.1.4.36.1.13.2 = Gauge32: 0
.1.3.6.1.2.1.5.1.0 = Counter32: 63631
.1.3.6.1.2.1.5.2.0 = Counter32: 1153
.1.3.6.1.2.1.5.3.0 = Counter32: 52531
.1.3.6.1.2.1.5.4.0 = Counter32: 9467
.1.3.6.1.2.1.5.5.0 = Counter32: 0
.1.3.6.1.2.1.5.6.0 = Counter32: 0
.1.3.6.1.2.1.5.7.0 = Counter32: 0
.1.3.6.1.2.1.5.8.0 = Counter32: 18
.1.3.6.1.2.1.5.9.0 = Counter32: 1603
.1.3.6.1.2.1.5.10.0 = Counter32: 0
.1.3.6.1.2.1.5.11.0 = Counter32: 0
.1.3.6.1.2.1.5.12.0 = Counter32: 0
.1.3.6.1.2.1.5.13.0 = Counter32: 0
.1.3.6.1.2.1.5.14.0 = Counter32: 113055
.1.3.6.1.2.1.5.15.0 = Counter32: 0
.1.3.6.1.2.1.5.16.0 = Counter32: 111352
.1.3.6.1.2.1.5.17.0 = Counter32: 0
.1.3.6.1.2.1.5.18.0 = Counter32: 0
.1.3.6.1.2.1.5.19.0 = Counter32: 0
.1.3.6.1.2.1.5.20.0 = Counter32: 0
.1.3.6.1.2.1.5.21.0 = Counter32: 1685
.1.3.6.1.2.1.5.22.0 = Counter32: 18
.1.3.6.1.2.1.5.23.0 = Counter32: 0
.1.3.6.1.2.1.5.24.0 = Counter32: 0
.1.3.6.1.2.1.5.25.0 = Counter32: 0
.1.3.6.1.2.1.5.26.0 = Counter32: 0
.1.3.6.1.2.1.5.29.1.2.1 = Counter32: 63631
.1.3.6.1.2.1.5.29.1.2.2 = Counter32: 161
.1.3.6.1.2.1.5.29.1.3.1 = Counter32: 1153
.1.3.6.1.2.1.5.29.1.3.2 = Counter32: 0
.1.3.6.1.2.1.5.29.1.4.1 = Counter32: 113055
.1.3.6.1.2.1.5.29.1.4.2 = Counter32: 167
.1.3.6.1.2.1.5.29.1.5.1 = Counter32: 0
.1.3.6.1.2.1.5.29.1.5.2 = Counter32: 151
.1.3.6.1.2.1.5.30.1.3.1.0 = Counter32: 1603
.1.3.6.1.2.1.5.30.1.3.1.3 = Counter32: 52531
.1.3.6.1.2.1.5.30.1.3.1.8 = Counter32: 18
.1.3.6.1.2.1.5.30.1.3.1.11 = Counter32: 9467
.1.3.6.1.2.1.5.30.1.3.2.1 = Counter32: 151
.1.3.6.1.2.1.5.30.1.3.2.128 = Counter32: 5
.1.3.6.1.2.1.5.30.1.3.2.129 = Counter32: 5
.1.3.6.1.2.1.5.30.1.4.1.0 = Counter32: 18
.1.3.6.1.2.1.5.30.1.4.1.3 = Counter32: 111352
.1.3.6.1.2.1.5.30.1.4.1.8 = Counter32: 1685
.1.3.6.1.2.1.5.30.1.4.2.1 = Counter32: 151
.1.3.6.1.2.1.5.30.1.4.2.128 = Counter32: 5
.1.3.6.1.2.1.5.30.1.4.2.129 = Counter32: 5
.1.3.6.1.2.1.5.30.1.4.2.133 = Counter32: 3
.1.3.6.1.2.1.5.30.1.4.2.135 = Counter32: 1
.1.3.6.1.2.1.5.30.1.4.2.143 = Counter32: 2
.1.3.6.1.2.1.6.1.0 = INTEGER: 1
.1.3.6.1.2.1.6.2.0 = INTEGER: 200
.1.3.6.1.2.1.6.3.0 = INTEGER: 120000
.1.3.6.1.2.1.6.4.0 = INTEGER: -1
.1.3.6.1.2.1.6.5.0 = Counter32: 975732
.1.3.6.1.2.1.6.6.0 = Counter32: 428005
.1.3.6.1.2.1.6.7.0 = Counter32: 3323
.1.3.6.1.2.1.6.8.0 = Counter32: 25964
.1.3.6.1.2.1.6.9.0 = Gauge32: 9
.1.3.6.1.2.1.6.10.0 = Counter32: 328629333
.1.3.6.1.2.1.6.11.0 = Counter32: 247688424
.1.3.6.1.2.1.6.12.0 = Counter32: 85162
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.25.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.37.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.111.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.113.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.587.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.1004.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.2049.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.6000.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.34144.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.47017.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.57163.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.53.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.631.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.953.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.22.195.218.195.227.2583 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.53.0.0.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.32973.194.67.1.250.993 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.33283.10.105.41.24.3389 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.35719.194.67.2.106.5222 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.42313.74.125.143.101.443 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.42383.64.12.30.89.5190 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.49715.173.194.69.125.5222 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.56014.74.125.232.50.443 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.195.218.254.105.57822.194.67.3.9.22 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.25.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.37.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.111.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.113.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.587.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.1004.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.2049.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.6000.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.34144.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.47017.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.57163.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.53.0.0.0.0.0 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.631.0.0.0.0.0 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.953.0.0.0.0.0 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.1024.0.0.0.0.0 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.0 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.22.195.218.195.227.2583 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.53.0.0.0.0.0 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.32973.194.67.1.250.993 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.33283.10.105.41.24.3389 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.35719.194.67.2.106.5222 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.42313.74.125.143.101.443 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.42383.64.12.30.89.5190 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.49715.173.194.69.125.5222 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.56014.74.125.232.50.443 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.2.195.218.254.105.57822.194.67.3.9.22 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.25.0.0.0.0.0 = INTEGER: 25
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.37.0.0.0.0.0 = INTEGER: 37
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.111.0.0.0.0.0 = INTEGER: 111
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.113.0.0.0.0.0 = INTEGER: 113
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.587.0.0.0.0.0 = INTEGER: 587
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.1004.0.0.0.0.0 = INTEGER: 1004
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.2049.0.0.0.0.0 = INTEGER: 2049
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.6000.0.0.0.0.0 = INTEGER: 6000
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.34144.0.0.0.0.0 = INTEGER: 34144
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.47017.0.0.0.0.0 = INTEGER: 47017
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.57163.0.0.0.0.0 = INTEGER: 57163
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.53.0.0.0.0.0 = INTEGER: 53
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.631.0.0.0.0.0 = INTEGER: 631
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.953.0.0.0.0.0 = INTEGER: 953
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 1024
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.0 = INTEGER: 8118
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.22.195.218.195.227.2583 = INTEGER: 22
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.53.0.0.0.0.0 = INTEGER: 53
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.32973.194.67.1.250.993 = INTEGER: 32973
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.33283.10.105.41.24.3389 = INTEGER: 33283
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.35719.194.67.2.106.5222 = INTEGER: 35719
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.42313.74.125.143.101.443 = INTEGER: 42313
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.42383.64.12.30.89.5190 = INTEGER: 42383
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.49715.173.194.69.125.5222 = INTEGER: 49715
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.56014.74.125.232.50.443 = INTEGER: 56014
.1.3.6.1.2.1.6.13.1.3.195.218.254.105.57822.194.67.3.9.22 = INTEGER: 57822
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.25.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.37.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.111.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.113.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.587.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.1004.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.2049.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.6000.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.34144.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.47017.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.57163.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.53.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.631.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.953.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.1024.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.22.195.218.195.227.2583 = IpAddress: 195.218.195.227
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.53.0.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.32973.194.67.1.250.993 = IpAddress: 194.67.1.250
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.33283.10.105.41.24.3389 = IpAddress: 10.105.41.24
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.35719.194.67.2.106.5222 = IpAddress: 194.67.2.106
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.42313.74.125.143.101.443 = IpAddress: 74.125.143.101
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.42383.64.12.30.89.5190 = IpAddress: 64.12.30.89
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.49715.173.194.69.125.5222 = IpAddress: 173.194.69.125
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.56014.74.125.232.50.443 = IpAddress: 74.125.232.50
.1.3.6.1.2.1.6.13.1.4.195.218.254.105.57822.194.67.3.9.22 = IpAddress: 194.67.3.9
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.25.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.37.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.111.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.113.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.587.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.1004.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.2049.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.6000.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.34144.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.47017.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.57163.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.53.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.631.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.953.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.22.195.218.195.227.2583 = INTEGER: 2583
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.53.0.0.0.0.0 = INTEGER: 0
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.32973.194.67.1.250.993 = INTEGER: 993
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.33283.10.105.41.24.3389 = INTEGER: 3389
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.35719.194.67.2.106.5222 = INTEGER: 5222
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.42313.74.125.143.101.443 = INTEGER: 443
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.42383.64.12.30.89.5190 = INTEGER: 5190
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.49715.173.194.69.125.5222 = INTEGER: 5222
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.56014.74.125.232.50.443 = INTEGER: 443
.1.3.6.1.2.1.6.13.1.5.195.218.254.105.57822.194.67.3.9.22 = INTEGER: 22
.1.3.6.1.2.1.6.14.0 = Counter32: 6
.1.3.6.1.2.1.6.15.0 = Counter32: 39280
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.22.1.4.195.218.195.227.2583 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.32973.1.4.194.67.1.250.993 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.33283.1.4.10.105.41.24.3389 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.35719.1.4.194.67.2.106.5222 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.42313.1.4.74.125.143.101.443 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.42383.1.4.64.12.30.89.5190 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.49715.1.4.173.194.69.125.5222 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.56014.1.4.74.125.232.50.443 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.57822.1.4.194.67.3.9.22 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.22.1.4.195.218.195.227.2583 = Gauge32: 30187
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.32973.1.4.194.67.1.250.993 = Gauge32: 21203
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.33283.1.4.10.105.41.24.3389 = Gauge32: 27422
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.35719.1.4.194.67.2.106.5222 = Gauge32: 24819
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.42313.1.4.74.125.143.101.443 = Gauge32: 28010
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.42383.1.4.64.12.30.89.5190 = Gauge32: 24819
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.49715.1.4.173.194.69.125.5222 = Gauge32: 24819
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.56014.1.4.74.125.232.50.443 = Gauge32: 28010
.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.57822.1.4.194.67.3.9.22 = Gauge32: 15251
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22 = Gauge32: 1648
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.25 = Gauge32: 1899
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.37 = Gauge32: 1643
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.111 = Gauge32: 1586
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.113 = Gauge32: 1643
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.587 = Gauge32: 1899
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.1004 = Gauge32: 1672
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.2049 = Gauge32: 0
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.6000 = Gauge32: 6137
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.34144 = Gauge32: 1590
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.47017 = Gauge32: 0
.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.57163 = Gauge32: 1688
.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.53 = Gauge32: 1651
.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.631 = Gauge32: 1889
.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.953 = Gauge32: 1651
.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.1024 = Gauge32: 15251
.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.8118 = Gauge32: 17901
.1.3.6.1.2.1.6.20.1.4.1.4.195.218.254.105.53 = Gauge32: 1651
.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22 = Gauge32: 1648
.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.80 = Gauge32: 1932
.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6000 = Gauge32: 6137
.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.631 = Gauge32: 1889
.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.953 = Gauge32: 1651
.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.1024 = Gauge32: 15251
.1.3.6.1.2.1.7.1.0 = Counter32: 8220816
.1.3.6.1.2.1.7.2.0 = Counter32: 37564
.1.3.6.1.2.1.7.3.0 = Counter32: 1
.1.3.6.1.2.1.7.4.0 = Counter32: 8960543
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.37 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.111 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.123 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.631 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.918 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.1001 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.2049 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.34860 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.40481 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.46090 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.57149 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.127.0.0.1.53 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.7.5.1.1.127.0.0.1.123 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.7.5.1.1.127.0.0.1.161 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.7.5.1.1.195.218.254.105.53 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.7.5.1.1.195.218.254.105.123 = IpAddress: 195.218.254.105
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.37 = INTEGER: 37
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.111 = INTEGER: 111
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.123 = INTEGER: 123
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.631 = INTEGER: 631
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.918 = INTEGER: 918
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.1001 = INTEGER: 1001
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.2049 = INTEGER: 2049
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.34860 = INTEGER: 34860
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.40481 = INTEGER: 40481
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.46090 = INTEGER: 46090
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.57149 = INTEGER: 57149
.1.3.6.1.2.1.7.5.1.2.127.0.0.1.53 = INTEGER: 53
.1.3.6.1.2.1.7.5.1.2.127.0.0.1.123 = INTEGER: 123
.1.3.6.1.2.1.7.5.1.2.127.0.0.1.161 = INTEGER: 161
.1.3.6.1.2.1.7.5.1.2.195.218.254.105.53 = INTEGER: 53
.1.3.6.1.2.1.7.5.1.2.195.218.254.105.123 = INTEGER: 123
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.37.1.4.0.0.0.0.0.5073 = Gauge32: 1643
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.111.1.4.0.0.0.0.0.5127 = Gauge32: 1586
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.123.1.4.0.0.0.0.0.6267 = Gauge32: 1709
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.631.1.4.0.0.0.0.0.93602972 = Gauge32: 1889
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.918.1.4.0.0.0.0.0.5138 = Gauge32: 1590
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.1001.1.4.0.0.0.0.0.6175 = Gauge32: 1672
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.2049.1.4.0.0.0.0.0.5209 = Gauge32: 0
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.34860.1.4.0.0.0.0.0.6207 = Gauge32: 1688
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.40481.1.4.0.0.0.0.0.341634558 = Gauge32: 30254
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.46090.1.4.0.0.0.0.0.5217 = Gauge32: 0
.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.57149.1.4.0.0.0.0.0.5041 = Gauge32: 1590
.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.53.1.4.0.0.0.0.0.5113 = Gauge32: 1651
.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.123.1.4.0.0.0.0.0.6274 = Gauge32: 1709
.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.161.1.4.0.0.0.0.0.320468325 = Gauge32: 28066
.1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.53.1.4.0.0.0.0.0.5115 = Gauge32: 1651
.1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.123.1.4.0.0.0.0.0.6275 = Gauge32: 1709
.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6268 = Gauge32: 1709
.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6277 = Gauge32: 1709
.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.161.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.320468326 = Gauge32: 28066
.1.3.6.1.2.1.7.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6276 = Gauge32: 1709
.1.3.6.1.2.1.11.1.0 = Counter32: 84734
.1.3.6.1.2.1.11.2.0 = Counter32: 84734
.1.3.6.1.2.1.11.3.0 = Counter32: 0
.1.3.6.1.2.1.11.4.0 = Counter32: 0
.1.3.6.1.2.1.11.5.0 = Counter32: 0
.1.3.6.1.2.1.11.6.0 = Counter32: 0
.1.3.6.1.2.1.11.8.0 = Counter32: 0
.1.3.6.1.2.1.11.9.0 = Counter32: 0
.1.3.6.1.2.1.11.10.0 = Counter32: 0
.1.3.6.1.2.1.11.11.0 = Counter32: 0
.1.3.6.1.2.1.11.12.0 = Counter32: 0
.1.3.6.1.2.1.11.13.0 = Counter32: 84744
.1.3.6.1.2.1.11.14.0 = Counter32: 0
.1.3.6.1.2.1.11.15.0 = Counter32: 5
.1.3.6.1.2.1.11.16.0 = Counter32: 84743
.1.3.6.1.2.1.11.17.0 = Counter32: 0
.1.3.6.1.2.1.11.18.0 = Counter32: 0
.1.3.6.1.2.1.11.19.0 = Counter32: 0
.1.3.6.1.2.1.11.20.0 = Counter32: 0
.1.3.6.1.2.1.11.21.0 = Counter32: 0
.1.3.6.1.2.1.11.22.0 = Counter32: 0
.1.3.6.1.2.1.11.24.0 = Counter32: 0
.1.3.6.1.2.1.11.25.0 = Counter32: 0
.1.3.6.1.2.1.11.26.0 = Counter32: 0
.1.3.6.1.2.1.11.27.0 = Counter32: 0
.1.3.6.1.2.1.11.28.0 = Counter32: 84758
.1.3.6.1.2.1.11.29.0 = Counter32: 0
.1.3.6.1.2.1.11.30.0 = INTEGER: 2
.1.3.6.1.2.1.11.31.0 = Counter32: 0
.1.3.6.1.2.1.11.32.0 = Counter32: 0
.1.3.6.1.2.1.25.1.1.0 = 1980283918
.1.3.6.1.2.1.25.1.2.0 = STRING: 2012-10-2,19:27:28.0,-4:0
.1.3.6.1.2.1.25.1.3.0 = INTEGER: 1536
.1.3.6.1.2.1.25.1.4.0 = STRING: "auto BOOT_IMAGE=Linux ro root=801"
.1.3.6.1.2.1.25.1.5.0 = Gauge32: 16
.1.3.6.1.2.1.25.1.7.0 = INTEGER: 0
.1.3.6.1.2.1.25.2.2.0 = INTEGER: 1011344
.1.3.6.1.2.1.25.2.3.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.2.3.1.1.3 = INTEGER: 3
.1.3.6.1.2.1.25.2.3.1.1.6 = INTEGER: 6
.1.3.6.1.2.1.25.2.3.1.1.7 = INTEGER: 7
.1.3.6.1.2.1.25.2.3.1.1.10 = INTEGER: 10
.1.3.6.1.2.1.25.2.3.1.1.31 = INTEGER: 31
.1.3.6.1.2.1.25.2.3.1.1.32 = INTEGER: 32
.1.3.6.1.2.1.25.2.3.1.1.33 = INTEGER: 33
.1.3.6.1.2.1.25.2.3.1.2.1 = OID: .1.3.6.1.2.1.25.2.1.2
.1.3.6.1.2.1.25.2.3.1.2.3 = OID: .1.3.6.1.2.1.25.2.1.3
.1.3.6.1.2.1.25.2.3.1.2.6 = OID: .1.3.6.1.2.1.25.2.1.1
.1.3.6.1.2.1.25.2.3.1.2.7 = OID: .1.3.6.1.2.1.25.2.1.1
.1.3.6.1.2.1.25.2.3.1.2.10 = OID: .1.3.6.1.2.1.25.2.1.3
.1.3.6.1.2.1.25.2.3.1.2.31 = OID: .1.3.6.1.2.1.25.2.1.4
.1.3.6.1.2.1.25.2.3.1.2.32 = OID: .1.3.6.1.2.1.25.2.1.4
.1.3.6.1.2.1.25.2.3.1.2.33 = OID: .1.3.6.1.2.1.25.2.1.4
.1.3.6.1.2.1.25.2.3.1.3.1 = STRING: Physical memory
.1.3.6.1.2.1.25.2.3.1.3.3 = STRING: Virtual memory
.1.3.6.1.2.1.25.2.3.1.3.6 = STRING: Memory buffers
.1.3.6.1.2.1.25.2.3.1.3.7 = STRING: Cached memory
.1.3.6.1.2.1.25.2.3.1.3.10 = STRING: Swap space
.1.3.6.1.2.1.25.2.3.1.3.31 = STRING: /
.1.3.6.1.2.1.25.2.3.1.3.32 = STRING: /usr/local
.1.3.6.1.2.1.25.2.3.1.3.33 = STRING: /export
.1.3.6.1.2.1.25.2.3.1.4.1 = INTEGER: 1024
.1.3.6.1.2.1.25.2.3.1.4.3 = INTEGER: 1024
.1.3.6.1.2.1.25.2.3.1.4.6 = INTEGER: 1024
.1.3.6.1.2.1.25.2.3.1.4.7 = INTEGER: 1024
.1.3.6.1.2.1.25.2.3.1.4.10 = INTEGER: 1024
.1.3.6.1.2.1.25.2.3.1.4.31 = INTEGER: 4096
.1.3.6.1.2.1.25.2.3.1.4.32 = INTEGER: 4096
.1.3.6.1.2.1.25.2.3.1.4.33 = INTEGER: 4096
.1.3.6.1.2.1.25.2.3.1.5.1 = INTEGER: 1011344
.1.3.6.1.2.1.25.2.3.1.5.3 = INTEGER: 1999336
.1.3.6.1.2.1.25.2.3.1.5.6 = INTEGER: 1011344
.1.3.6.1.2.1.25.2.3.1.5.7 = INTEGER: 288160
.1.3.6.1.2.1.25.2.3.1.5.10 = INTEGER: 987992
.1.3.6.1.2.1.25.2.3.1.5.31 = INTEGER: 2164327
.1.3.6.1.2.1.25.2.3.1.5.32 = INTEGER: 16822765
.1.3.6.1.2.1.25.2.3.1.5.33 = INTEGER: 96144541
.1.3.6.1.2.1.25.2.3.1.6.1 = INTEGER: 611892
.1.3.6.1.2.1.25.2.3.1.6.3 = INTEGER: 776480
.1.3.6.1.2.1.25.2.3.1.6.6 = INTEGER: 24024
.1.3.6.1.2.1.25.2.3.1.6.7 = INTEGER: 288160
.1.3.6.1.2.1.25.2.3.1.6.10 = INTEGER: 164588
.1.3.6.1.2.1.25.2.3.1.6.31 = INTEGER: 2031594
.1.3.6.1.2.1.25.2.3.1.6.32 = INTEGER: 13799546
.1.3.6.1.2.1.25.2.3.1.6.33 = INTEGER: 84733159
.1.3.6.1.2.1.25.3.2.1.1.768 = INTEGER: 768
.1.3.6.1.2.1.25.3.2.1.1.769 = INTEGER: 769
.1.3.6.1.2.1.25.3.2.1.1.1025 = INTEGER: 1025
.1.3.6.1.2.1.25.3.2.1.1.1026 = INTEGER: 1026
.1.3.6.1.2.1.25.3.2.1.1.1280 = INTEGER: 1280
.1.3.6.1.2.1.25.3.2.1.1.1281 = INTEGER: 1281
.1.3.6.1.2.1.25.3.2.1.1.1282 = INTEGER: 1282
.1.3.6.1.2.1.25.3.2.1.1.1552 = INTEGER: 1552
.1.3.6.1.2.1.25.3.2.1.1.1553 = INTEGER: 1553
.1.3.6.1.2.1.25.3.2.1.1.3072 = INTEGER: 3072
.1.3.6.1.2.1.25.3.2.1.2.768 = OID: .1.3.6.1.2.1.25.3.1.3
.1.3.6.1.2.1.25.3.2.1.2.769 = OID: .1.3.6.1.2.1.25.3.1.3
.1.3.6.1.2.1.25.3.2.1.2.1025 = OID: .1.3.6.1.2.1.25.3.1.4
.1.3.6.1.2.1.25.3.2.1.2.1026 = OID: .1.3.6.1.2.1.25.3.1.4
.1.3.6.1.2.1.25.3.2.1.2.1280 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.1281 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.1282 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.1552 = OID: .1.3.6.1.2.1.25.3.1.6
.1.3.6.1.2.1.25.3.2.1.2.1553 = OID: .1.3.6.1.2.1.25.3.1.6
.1.3.6.1.2.1.25.3.2.1.2.3072 = OID: .1.3.6.1.2.1.25.3.1.12
.1.3.6.1.2.1.25.3.2.1.3.768 = STRING: GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
.1.3.6.1.2.1.25.3.2.1.3.769 = STRING: GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
.1.3.6.1.2.1.25.3.2.1.3.1025 = STRING: network interface lo
.1.3.6.1.2.1.25.3.2.1.3.1026 = STRING: network interface eth0
.1.3.6.1.2.1.25.3.2.1.3.1280 = STRING: xerox
.1.3.6.1.2.1.25.3.2.1.3.1281 = STRING: lj
.1.3.6.1.2.1.25.3.2.1.3.1282 = STRING: ljc
.1.3.6.1.2.1.25.3.2.1.3.1552 = STRING: SCSI disk (/dev/sda)
.1.3.6.1.2.1.25.3.2.1.3.1553 = STRING: SCSI disk (/dev/sdb)
.1.3.6.1.2.1.25.3.2.1.3.3072 = STRING: Guessing that there's a floating point co-processor
.1.3.6.1.2.1.25.3.2.1.4.768 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.769 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1025 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1026 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1280 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1281 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1282 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1552 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.1553 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.3072 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.5.768 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.769 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.1025 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.1026 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.1280 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.5.1281 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.5.1282 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.6.1025 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.1026 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.1280 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.1281 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.1282 = Counter32: 0
.1.3.6.1.2.1.25.3.3.1.1.768 = OID: .0.0
.1.3.6.1.2.1.25.3.3.1.1.769 = OID: .0.0
.1.3.6.1.2.1.25.3.3.1.2.768 = INTEGER: 6
.1.3.6.1.2.1.25.3.3.1.2.769 = INTEGER: 16
.1.3.6.1.2.1.25.3.4.1.1.1025 = INTEGER: 1
.1.3.6.1.2.1.25.3.4.1.1.1026 = INTEGER: 2
.1.3.6.1.2.1.25.3.5.1.1.1280 = INTEGER: 2
.1.3.6.1.2.1.25.3.5.1.1.1281 = INTEGER: 2
.1.3.6.1.2.1.25.3.5.1.1.1282 = INTEGER: 2
.1.3.6.1.2.1.25.3.6.1.1.1552 = INTEGER: 1
.1.3.6.1.2.1.25.3.6.1.1.1553 = INTEGER: 1
.1.3.6.1.2.1.25.3.6.1.2.1552 = INTEGER: 2
.1.3.6.1.2.1.25.3.6.1.2.1553 = INTEGER: 2
.1.3.6.1.2.1.25.3.6.1.3.1552 = INTEGER: 2
.1.3.6.1.2.1.25.3.6.1.3.1553 = INTEGER: 2
.1.3.6.1.2.1.25.3.6.1.4.1552 = INTEGER: 78150744
.1.3.6.1.2.1.25.3.6.1.4.1553 = INTEGER: 390711384
.1.3.6.1.2.1.25.3.7.1.1.1552.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.7.1.1.1552.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.7.1.1.1552.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.7.1.1.1553.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.7.1.2.1552.1 = STRING: "/dev/sda1"
.1.3.6.1.2.1.25.3.7.1.2.1552.2 = STRING: "/dev/sda2"
.1.3.6.1.2.1.25.3.7.1.2.1552.3 = STRING: "/dev/sda3"
.1.3.6.1.2.1.25.3.7.1.2.1553.1 = STRING: "/dev/sdb1"
.1.3.6.1.2.1.25.3.7.1.3.1552.1 = STRING: "0x801"
.1.3.6.1.2.1.25.3.7.1.3.1552.2 = STRING: "0x802"
.1.3.6.1.2.1.25.3.7.1.3.1552.3 = STRING: "0x803"
.1.3.6.1.2.1.25.3.7.1.3.1553.1 = STRING: "0x811"
.1.3.6.1.2.1.25.3.7.1.4.1552.1 = INTEGER: 0
.1.3.6.1.2.1.25.3.7.1.4.1552.2 = INTEGER: 0
.1.3.6.1.2.1.25.3.7.1.4.1552.3 = INTEGER: 67291060
.1.3.6.1.2.1.25.3.7.1.4.1553.1 = INTEGER: 384578164
.1.3.6.1.2.1.25.3.7.1.5.1552.1 = INTEGER: 0
.1.3.6.1.2.1.25.3.7.1.5.1552.2 = INTEGER: 0
.1.3.6.1.2.1.25.3.7.1.5.1552.3 = INTEGER: 2
.1.3.6.1.2.1.25.3.7.1.5.1553.1 = INTEGER: 3
.1.3.6.1.2.1.25.3.8.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.1.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.8.1.1.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.8.1.2.1 = STRING: "/"
.1.3.6.1.2.1.25.3.8.1.2.2 = STRING: "/usr/local"
.1.3.6.1.2.1.25.3.8.1.2.3 = STRING: "/export"
.1.3.6.1.2.1.25.3.8.1.3.1 = ""
.1.3.6.1.2.1.25.3.8.1.3.2 = ""
.1.3.6.1.2.1.25.3.8.1.3.3 = ""
.1.3.6.1.2.1.25.3.8.1.4.1 = OID: .1.3.6.1.2.1.25.3.9.23
.1.3.6.1.2.1.25.3.8.1.4.2 = OID: .1.3.6.1.2.1.25.3.9.23
.1.3.6.1.2.1.25.3.8.1.4.3 = OID: .1.3.6.1.2.1.25.3.9.23
.1.3.6.1.2.1.25.3.8.1.5.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.5.2 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.5.3 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.6.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.6.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.8.1.6.3 = INTEGER: 2
.1.3.6.1.2.1.25.3.8.1.7.1 = INTEGER: 31
.1.3.6.1.2.1.25.3.8.1.7.2 = INTEGER: 32
.1.3.6.1.2.1.25.3.8.1.7.3 = INTEGER: 33
.1.3.6.1.2.1.25.3.8.1.8.1 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.8.2 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.8.3 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.9.1 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.9.2 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.9.3 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.4.2.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.1.1173 = INTEGER: 1173
.1.3.6.1.2.1.25.4.2.1.1.1456 = INTEGER: 1456
.1.3.6.1.2.1.25.4.2.1.1.1461 = INTEGER: 1461
.1.3.6.1.2.1.25.4.2.1.1.1586 = INTEGER: 1586
.1.3.6.1.2.1.25.4.2.1.1.1590 = INTEGER: 1590
.1.3.6.1.2.1.25.4.2.1.1.1643 = INTEGER: 1643
.1.3.6.1.2.1.25.4.2.1.1.1648 = INTEGER: 1648
.1.3.6.1.2.1.25.4.2.1.1.1651 = INTEGER: 1651
.1.3.6.1.2.1.25.4.2.1.1.1672 = INTEGER: 1672
.1.3.6.1.2.1.25.4.2.1.1.1688 = INTEGER: 1688
.1.3.6.1.2.1.25.4.2.1.1.1698 = INTEGER: 1698
.1.3.6.1.2.1.25.4.2.1.1.1709 = INTEGER: 1709
.1.3.6.1.2.1.25.4.2.1.1.1714 = INTEGER: 1714
.1.3.6.1.2.1.25.4.2.1.1.1731 = INTEGER: 1731
.1.3.6.1.2.1.25.4.2.1.1.1734 = INTEGER: 1734
.1.3.6.1.2.1.25.4.2.1.1.1736 = INTEGER: 1736
.1.3.6.1.2.1.25.4.2.1.1.1803 = INTEGER: 1803
.1.3.6.1.2.1.25.4.2.1.1.1806 = INTEGER: 1806
.1.3.6.1.2.1.25.4.2.1.1.1835 = INTEGER: 1835
.1.3.6.1.2.1.25.4.2.1.1.1847 = INTEGER: 1847
.1.3.6.1.2.1.25.4.2.1.1.1851 = INTEGER: 1851
.1.3.6.1.2.1.25.4.2.1.1.1856 = INTEGER: 1856
.1.3.6.1.2.1.25.4.2.1.1.1866 = INTEGER: 1866
.1.3.6.1.2.1.25.4.2.1.1.1889 = INTEGER: 1889
.1.3.6.1.2.1.25.4.2.1.1.1894 = INTEGER: 1894
.1.3.6.1.2.1.25.4.2.1.1.1896 = INTEGER: 1896
.1.3.6.1.2.1.25.4.2.1.1.1899 = INTEGER: 1899
.1.3.6.1.2.1.25.4.2.1.1.1902 = INTEGER: 1902
.1.3.6.1.2.1.25.4.2.1.1.1932 = INTEGER: 1932
.1.3.6.1.2.1.25.4.2.1.1.1945 = INTEGER: 1945
.1.3.6.1.2.1.25.4.2.1.1.1946 = INTEGER: 1946
.1.3.6.1.2.1.25.4.2.1.1.1947 = INTEGER: 1947
.1.3.6.1.2.1.25.4.2.1.1.1948 = INTEGER: 1948
.1.3.6.1.2.1.25.4.2.1.1.1949 = INTEGER: 1949
.1.3.6.1.2.1.25.4.2.1.1.1954 = INTEGER: 1954
.1.3.6.1.2.1.25.4.2.1.1.1955 = INTEGER: 1955
.1.3.6.1.2.1.25.4.2.1.1.1956 = INTEGER: 1956
.1.3.6.1.2.1.25.4.2.1.1.1957 = INTEGER: 1957
.1.3.6.1.2.1.25.4.2.1.1.1958 = INTEGER: 1958
.1.3.6.1.2.1.25.4.2.1.1.1959 = INTEGER: 1959
.1.3.6.1.2.1.25.4.2.1.1.1960 = INTEGER: 1960
.1.3.6.1.2.1.25.4.2.1.1.2071 = INTEGER: 2071
.1.3.6.1.2.1.25.4.2.1.1.3147 = INTEGER: 3147
.1.3.6.1.2.1.25.4.2.1.1.3198 = INTEGER: 3198
.1.3.6.1.2.1.25.4.2.1.1.4772 = INTEGER: 4772
.1.3.6.1.2.1.25.4.2.1.1.6137 = INTEGER: 6137
.1.3.6.1.2.1.25.4.2.1.1.6144 = INTEGER: 6144
.1.3.6.1.2.1.25.4.2.1.1.6154 = INTEGER: 6154
.1.3.6.1.2.1.25.4.2.1.1.6197 = INTEGER: 6197
.1.3.6.1.2.1.25.4.2.1.1.6200 = INTEGER: 6200
.1.3.6.1.2.1.25.4.2.1.1.6205 = INTEGER: 6205
.1.3.6.1.2.1.25.4.2.1.1.6206 = INTEGER: 6206
.1.3.6.1.2.1.25.4.2.1.1.6208 = INTEGER: 6208
.1.3.6.1.2.1.25.4.2.1.1.6217 = INTEGER: 6217
.1.3.6.1.2.1.25.4.2.1.1.6219 = INTEGER: 6219
.1.3.6.1.2.1.25.4.2.1.1.6224 = INTEGER: 6224
.1.3.6.1.2.1.25.4.2.1.1.6225 = INTEGER: 6225
.1.3.6.1.2.1.25.4.2.1.1.6228 = INTEGER: 6228
.1.3.6.1.2.1.25.4.2.1.1.6229 = INTEGER: 6229
.1.3.6.1.2.1.25.4.2.1.1.6230 = INTEGER: 6230
.1.3.6.1.2.1.25.4.2.1.1.6231 = INTEGER: 6231
.1.3.6.1.2.1.25.4.2.1.1.6238 = INTEGER: 6238
.1.3.6.1.2.1.25.4.2.1.1.6239 = INTEGER: 6239
.1.3.6.1.2.1.25.4.2.1.1.6240 = INTEGER: 6240
.1.3.6.1.2.1.25.4.2.1.1.6241 = INTEGER: 6241
.1.3.6.1.2.1.25.4.2.1.1.6244 = INTEGER: 6244
.1.3.6.1.2.1.25.4.2.1.1.6245 = INTEGER: 6245
.1.3.6.1.2.1.25.4.2.1.1.6246 = INTEGER: 6246
.1.3.6.1.2.1.25.4.2.1.1.6247 = INTEGER: 6247
.1.3.6.1.2.1.25.4.2.1.1.6248 = INTEGER: 6248
.1.3.6.1.2.1.25.4.2.1.1.6249 = INTEGER: 6249
.1.3.6.1.2.1.25.4.2.1.1.6250 = INTEGER: 6250
.1.3.6.1.2.1.25.4.2.1.1.6251 = INTEGER: 6251
.1.3.6.1.2.1.25.4.2.1.1.6252 = INTEGER: 6252
.1.3.6.1.2.1.25.4.2.1.1.6253 = INTEGER: 6253
.1.3.6.1.2.1.25.4.2.1.1.6254 = INTEGER: 6254
.1.3.6.1.2.1.25.4.2.1.1.6255 = INTEGER: 6255
.1.3.6.1.2.1.25.4.2.1.1.6256 = INTEGER: 6256
.1.3.6.1.2.1.25.4.2.1.1.6257 = INTEGER: 6257
.1.3.6.1.2.1.25.4.2.1.1.6258 = INTEGER: 6258
.1.3.6.1.2.1.25.4.2.1.1.6268 = INTEGER: 6268
.1.3.6.1.2.1.25.4.2.1.1.6269 = INTEGER: 6269
.1.3.6.1.2.1.25.4.2.1.1.6270 = INTEGER: 6270
.1.3.6.1.2.1.25.4.2.1.1.6273 = INTEGER: 6273
.1.3.6.1.2.1.25.4.2.1.1.6274 = INTEGER: 6274
.1.3.6.1.2.1.25.4.2.1.1.6275 = INTEGER: 6275
.1.3.6.1.2.1.25.4.2.1.1.6289 = INTEGER: 6289
.1.3.6.1.2.1.25.4.2.1.1.6292 = INTEGER: 6292
.1.3.6.1.2.1.25.4.2.1.1.6293 = INTEGER: 6293
.1.3.6.1.2.1.25.4.2.1.1.6301 = INTEGER: 6301
.1.3.6.1.2.1.25.4.2.1.1.6305 = INTEGER: 6305
.1.3.6.1.2.1.25.4.2.1.1.6307 = INTEGER: 6307
.1.3.6.1.2.1.25.4.2.1.1.6308 = INTEGER: 6308
.1.3.6.1.2.1.25.4.2.1.1.6310 = INTEGER: 6310
.1.3.6.1.2.1.25.4.2.1.1.6321 = INTEGER: 6321
.1.3.6.1.2.1.25.4.2.1.1.7875 = INTEGER: 7875
.1.3.6.1.2.1.25.4.2.1.1.7876 = INTEGER: 7876
.1.3.6.1.2.1.25.4.2.1.1.14038 = INTEGER: 14038
.1.3.6.1.2.1.25.4.2.1.1.15251 = INTEGER: 15251
.1.3.6.1.2.1.25.4.2.1.1.17901 = INTEGER: 17901
.1.3.6.1.2.1.25.4.2.1.1.21203 = INTEGER: 21203
.1.3.6.1.2.1.25.4.2.1.1.21880 = INTEGER: 21880
.1.3.6.1.2.1.25.4.2.1.1.22288 = INTEGER: 22288
.1.3.6.1.2.1.25.4.2.1.1.23625 = INTEGER: 23625
.1.3.6.1.2.1.25.4.2.1.1.24819 = INTEGER: 24819
.1.3.6.1.2.1.25.4.2.1.1.25327 = INTEGER: 25327
.1.3.6.1.2.1.25.4.2.1.1.25672 = INTEGER: 25672
.1.3.6.1.2.1.25.4.2.1.1.27421 = INTEGER: 27421
.1.3.6.1.2.1.25.4.2.1.1.27422 = INTEGER: 27422
.1.3.6.1.2.1.25.4.2.1.1.28010 = INTEGER: 28010
.1.3.6.1.2.1.25.4.2.1.1.28066 = INTEGER: 28066
.1.3.6.1.2.1.25.4.2.1.1.28418 = INTEGER: 28418
.1.3.6.1.2.1.25.4.2.1.1.28680 = INTEGER: 28680
.1.3.6.1.2.1.25.4.2.1.1.30187 = INTEGER: 30187
.1.3.6.1.2.1.25.4.2.1.1.30190 = INTEGER: 30190
.1.3.6.1.2.1.25.4.2.1.1.30191 = INTEGER: 30191
.1.3.6.1.2.1.25.4.2.1.1.30254 = INTEGER: 30254
.1.3.6.1.2.1.25.4.2.1.2.1 = STRING: "init"
.1.3.6.1.2.1.25.4.2.1.2.1173 = STRING: "udevd"
.1.3.6.1.2.1.25.4.2.1.2.1456 = STRING: "syslogd"
.1.3.6.1.2.1.25.4.2.1.2.1461 = STRING: "klogd"
.1.3.6.1.2.1.25.4.2.1.2.1586 = STRING: "rpc.portmap"
.1.3.6.1.2.1.25.4.2.1.2.1590 = STRING: "rpc.statd"
.1.3.6.1.2.1.25.4.2.1.2.1643 = STRING: "inetd"
.1.3.6.1.2.1.25.4.2.1.2.1648 = STRING: "sshd"
.1.3.6.1.2.1.25.4.2.1.2.1651 = STRING: "named"
.1.3.6.1.2.1.25.4.2.1.2.1672 = STRING: "rpc.rquotad"
.1.3.6.1.2.1.25.4.2.1.2.1688 = STRING: "rpc.mountd"
.1.3.6.1.2.1.25.4.2.1.2.1698 = STRING: "automount"
.1.3.6.1.2.1.25.4.2.1.2.1709 = STRING: "ntpd"
.1.3.6.1.2.1.25.4.2.1.2.1714 = STRING: "acpid"
.1.3.6.1.2.1.25.4.2.1.2.1731 = STRING: "dbus-daemon"
.1.3.6.1.2.1.25.4.2.1.2.1734 = STRING: "hald"
.1.3.6.1.2.1.25.4.2.1.2.1736 = STRING: "console-kit-dae"
.1.3.6.1.2.1.25.4.2.1.2.1803 = STRING: "polkitd"
.1.3.6.1.2.1.25.4.2.1.2.1806 = STRING: "hald-runner"
.1.3.6.1.2.1.25.4.2.1.2.1835 = STRING: "hald-addon-inpu"
.1.3.6.1.2.1.25.4.2.1.2.1847 = STRING: "hald-addon-acpi"
.1.3.6.1.2.1.25.4.2.1.2.1851 = STRING: "hald-addon-stor"
.1.3.6.1.2.1.25.4.2.1.2.1856 = STRING: "wicd"
.1.3.6.1.2.1.25.4.2.1.2.1866 = STRING: "wicd-monitor"
.1.3.6.1.2.1.25.4.2.1.2.1889 = STRING: "cupsd"
.1.3.6.1.2.1.25.4.2.1.2.1894 = STRING: "crond"
.1.3.6.1.2.1.25.4.2.1.2.1896 = STRING: "atd"
.1.3.6.1.2.1.25.4.2.1.2.1899 = STRING: "sendmail"
.1.3.6.1.2.1.25.4.2.1.2.1902 = STRING: "sendmail"
.1.3.6.1.2.1.25.4.2.1.2.1932 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.1945 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.1946 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.1947 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.1948 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.1949 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.1954 = STRING: "agetty"
.1.3.6.1.2.1.25.4.2.1.2.1955 = STRING: "agetty"
.1.3.6.1.2.1.25.4.2.1.2.1956 = STRING: "agetty"
.1.3.6.1.2.1.25.4.2.1.2.1957 = STRING: "agetty"
.1.3.6.1.2.1.25.4.2.1.2.1958 = STRING: "agetty"
.1.3.6.1.2.1.25.4.2.1.2.1959 = STRING: "agetty"
.1.3.6.1.2.1.25.4.2.1.2.1960 = STRING: "xdm"
.1.3.6.1.2.1.25.4.2.1.2.2071 = STRING: "gam_server"
.1.3.6.1.2.1.25.4.2.1.2.3147 = STRING: "knotify4"
.1.3.6.1.2.1.25.4.2.1.2.3198 = STRING: "kio_http_cache_"
.1.3.6.1.2.1.25.4.2.1.2.4772 = STRING: "xfce4-notifyd"
.1.3.6.1.2.1.25.4.2.1.2.6137 = STRING: "X"
.1.3.6.1.2.1.25.4.2.1.2.6144 = STRING: "xdm"
.1.3.6.1.2.1.25.4.2.1.2.6154 = STRING: "xinitrc"
.1.3.6.1.2.1.25.4.2.1.2.6197 = STRING: "xscreensaver"
.1.3.6.1.2.1.25.4.2.1.2.6200 = STRING: "ssh-agent"
.1.3.6.1.2.1.25.4.2.1.2.6205 = STRING: "dbus-launch"
.1.3.6.1.2.1.25.4.2.1.2.6206 = STRING: "dbus-daemon"
.1.3.6.1.2.1.25.4.2.1.2.6208 = STRING: "ck-launch-sessi"
.1.3.6.1.2.1.25.4.2.1.2.6217 = STRING: "xfce4-session"
.1.3.6.1.2.1.25.4.2.1.2.6219 = STRING: "xfconfd"
.1.3.6.1.2.1.25.4.2.1.2.6224 = STRING: "xfwm4"
.1.3.6.1.2.1.25.4.2.1.2.6225 = STRING: "xfsettingsd"
.1.3.6.1.2.1.25.4.2.1.2.6228 = STRING: "xfce4-panel"
.1.3.6.1.2.1.25.4.2.1.2.6229 = STRING: "xfdesktop"
.1.3.6.1.2.1.25.4.2.1.2.6230 = STRING: "xfce4-power-man"
.1.3.6.1.2.1.25.4.2.1.2.6231 = STRING: "xfce4-settings-"
.1.3.6.1.2.1.25.4.2.1.2.6238 = STRING: "Thunar"
.1.3.6.1.2.1.25.4.2.1.2.6239 = STRING: "xfce4-menu-plug"
.1.3.6.1.2.1.25.4.2.1.2.6240 = STRING: "xfce4-screensho"
.1.3.6.1.2.1.25.4.2.1.2.6241 = STRING: "xfce4-xmms-plug"
.1.3.6.1.2.1.25.4.2.1.2.6244 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6245 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6246 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6247 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6248 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6249 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6250 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6251 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6252 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6253 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6254 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6255 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6256 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6257 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6258 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.2.6268 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6269 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6270 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6273 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6274 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6275 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6289 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6292 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6293 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6301 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6305 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6307 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6308 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6310 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.6321 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.7875 = STRING: "udevd"
.1.3.6.1.2.1.25.4.2.1.2.7876 = STRING: "udevd"
.1.3.6.1.2.1.25.4.2.1.2.14038 = STRING: "ssh-agent"
.1.3.6.1.2.1.25.4.2.1.2.15251 = STRING: "ssh"
.1.3.6.1.2.1.25.4.2.1.2.17901 = STRING: "privoxy"
.1.3.6.1.2.1.25.4.2.1.2.21203 = STRING: "alpine"
.1.3.6.1.2.1.25.4.2.1.2.21880 = STRING: "mocp"
.1.3.6.1.2.1.25.4.2.1.2.22288 = STRING: "mocp"
.1.3.6.1.2.1.25.4.2.1.2.23625 = STRING: "httpd"
.1.3.6.1.2.1.25.4.2.1.2.24819 = STRING: "pidgin"
.1.3.6.1.2.1.25.4.2.1.2.25327 = STRING: "vi"
.1.3.6.1.2.1.25.4.2.1.2.25672 = STRING: "python2.4"
.1.3.6.1.2.1.25.4.2.1.2.27421 = STRING: "lotus"
.1.3.6.1.2.1.25.4.2.1.2.27422 = STRING: "rdesktop"
.1.3.6.1.2.1.25.4.2.1.2.28010 = STRING: "firefox"
.1.3.6.1.2.1.25.4.2.1.2.28066 = STRING: "snmpd"
.1.3.6.1.2.1.25.4.2.1.2.28418 = STRING: "plugin-containe"
.1.3.6.1.2.1.25.4.2.1.2.28680 = STRING: "in.identd"
.1.3.6.1.2.1.25.4.2.1.2.30187 = STRING: "sshd"
.1.3.6.1.2.1.25.4.2.1.2.30190 = STRING: "sshd"
.1.3.6.1.2.1.25.4.2.1.2.30191 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.2.30254 = STRING: "snmpwalk"
.1.3.6.1.2.1.25.4.2.1.3.1 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1173 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1456 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1461 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1586 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1590 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1643 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1648 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1651 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1672 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1688 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1698 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1709 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1714 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1731 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1734 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1736 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1803 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1806 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1835 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1847 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1851 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1856 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1866 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1889 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1894 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1896 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1899 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1902 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1932 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1945 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1946 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1947 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1948 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1949 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1954 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1955 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1956 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1957 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1958 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1959 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1960 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.2071 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.3147 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.3198 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.4772 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6137 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6144 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6154 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6197 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6200 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6205 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6206 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6208 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6217 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6219 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6224 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6225 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6228 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6229 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6230 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6231 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6238 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6239 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6240 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6241 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6244 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6245 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6246 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6247 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6248 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6249 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6250 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6251 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6252 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6253 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6254 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6255 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6256 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6257 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6258 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6268 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6269 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6270 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6273 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6274 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6275 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6289 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6292 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6293 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6301 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6305 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6307 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6308 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6310 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.6321 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.7875 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.7876 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.14038 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.15251 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.17901 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.21203 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.21880 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.22288 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.23625 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.24819 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.25327 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.25672 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.27421 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.27422 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.28010 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.28066 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.28418 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.28680 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.30187 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.30190 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.30191 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.30254 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.4.1 = STRING: "init [4]"
.1.3.6.1.2.1.25.4.2.1.4.1173 = STRING: "/sbin/udevd"
.1.3.6.1.2.1.25.4.2.1.4.1456 = STRING: "/usr/sbin/syslogd"
.1.3.6.1.2.1.25.4.2.1.4.1461 = STRING: "/usr/sbin/klogd"
.1.3.6.1.2.1.25.4.2.1.4.1586 = STRING: "/sbin/rpc.portmap"
.1.3.6.1.2.1.25.4.2.1.4.1590 = STRING: "/sbin/rpc.statd"
.1.3.6.1.2.1.25.4.2.1.4.1643 = STRING: "/usr/sbin/inetd"
.1.3.6.1.2.1.25.4.2.1.4.1648 = STRING: "/usr/sbin/sshd"
.1.3.6.1.2.1.25.4.2.1.4.1651 = STRING: "/usr/sbin/named"
.1.3.6.1.2.1.25.4.2.1.4.1672 = STRING: "/usr/sbin/rpc.rquotad"
.1.3.6.1.2.1.25.4.2.1.4.1688 = STRING: "/usr/sbin/rpc.mountd"
.1.3.6.1.2.1.25.4.2.1.4.1698 = STRING: "automount"
.1.3.6.1.2.1.25.4.2.1.4.1709 = STRING: "/usr/sbin/ntpd"
.1.3.6.1.2.1.25.4.2.1.4.1714 = STRING: "/usr/sbin/acpid"
.1.3.6.1.2.1.25.4.2.1.4.1731 = STRING: "/usr/bin/dbus-daemon"
.1.3.6.1.2.1.25.4.2.1.4.1734 = STRING: "/usr/sbin/hald"
.1.3.6.1.2.1.25.4.2.1.4.1736 = STRING: "/usr/sbin/console-kit-daemon"
.1.3.6.1.2.1.25.4.2.1.4.1803 = STRING: "/usr/libexec/polkitd"
.1.3.6.1.2.1.25.4.2.1.4.1806 = STRING: "hald-runner"
.1.3.6.1.2.1.25.4.2.1.4.1835 = STRING: "hald-addon-input: Listening on /dev/input/event0 /dev/input/event1 /dev/input/event2 /dev/input/event3"
.1.3.6.1.2.1.25.4.2.1.4.1847 = STRING: "hald-addon-acpi: listening on acpid socket /var/run/acpid.socket"
.1.3.6.1.2.1.25.4.2.1.4.1851 = STRING: "hald-addon-storage: polling /dev/sr0 (every 2 sec)"
.1.3.6.1.2.1.25.4.2.1.4.1856 = STRING: "/usr/bin/python"
.1.3.6.1.2.1.25.4.2.1.4.1866 = STRING: "/usr/bin/python"
.1.3.6.1.2.1.25.4.2.1.4.1889 = STRING: "/usr/sbin/cupsd"
.1.3.6.1.2.1.25.4.2.1.4.1894 = STRING: "/usr/sbin/crond"
.1.3.6.1.2.1.25.4.2.1.4.1896 = STRING: "/usr/sbin/atd"
.1.3.6.1.2.1.25.4.2.1.4.1899 = STRING: "sendmail: accepting connections"
.1.3.6.1.2.1.25.4.2.1.4.1902 = STRING: "sendmail: Queue runner@00:25:00 for /var/spool/clientmqueue"
.1.3.6.1.2.1.25.4.2.1.4.1932 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.1945 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.1946 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.1947 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.1948 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.1949 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.1954 = STRING: "/sbin/agetty"
.1.3.6.1.2.1.25.4.2.1.4.1955 = STRING: "/sbin/agetty"
.1.3.6.1.2.1.25.4.2.1.4.1956 = STRING: "/sbin/agetty"
.1.3.6.1.2.1.25.4.2.1.4.1957 = STRING: "/sbin/agetty"
.1.3.6.1.2.1.25.4.2.1.4.1958 = STRING: "/sbin/agetty"
.1.3.6.1.2.1.25.4.2.1.4.1959 = STRING: "/sbin/agetty"
.1.3.6.1.2.1.25.4.2.1.4.1960 = STRING: "/usr/bin/xdm"
.1.3.6.1.2.1.25.4.2.1.4.2071 = STRING: "/usr/libexec/gam_server"
.1.3.6.1.2.1.25.4.2.1.4.3147 = STRING: "/usr/bin/knotify4"
.1.3.6.1.2.1.25.4.2.1.4.3198 = STRING: "kdeinit4: kio_http_cache_cleaner [kdeinit]"
.1.3.6.1.2.1.25.4.2.1.4.4772 = STRING: "/usr/libexec/xfce4-notifyd"
.1.3.6.1.2.1.25.4.2.1.4.6137 = STRING: "/usr/bin/X"
.1.3.6.1.2.1.25.4.2.1.4.6144 = STRING: "-:0 "
.1.3.6.1.2.1.25.4.2.1.4.6154 = STRING: "/bin/sh"
.1.3.6.1.2.1.25.4.2.1.4.6197 = STRING: "xscreensaver"
.1.3.6.1.2.1.25.4.2.1.4.6200 = STRING: "/usr/bin/ssh-agent"
.1.3.6.1.2.1.25.4.2.1.4.6205 = STRING: "/usr/bin/dbus-launch"
.1.3.6.1.2.1.25.4.2.1.4.6206 = STRING: "/usr/bin/dbus-daemon"
.1.3.6.1.2.1.25.4.2.1.4.6208 = STRING: "ck-launch-session"
.1.3.6.1.2.1.25.4.2.1.4.6217 = STRING: "/usr/bin/xfce4-session"
.1.3.6.1.2.1.25.4.2.1.4.6219 = STRING: "/usr/libexec/xfconfd"
.1.3.6.1.2.1.25.4.2.1.4.6224 = STRING: "xfwm4"
.1.3.6.1.2.1.25.4.2.1.4.6225 = STRING: "xfsettingsd"
.1.3.6.1.2.1.25.4.2.1.4.6228 = STRING: "xfce4-panel"
.1.3.6.1.2.1.25.4.2.1.4.6229 = STRING: "xfdesktop"
.1.3.6.1.2.1.25.4.2.1.4.6230 = STRING: "xfce4-power-manager"
.1.3.6.1.2.1.25.4.2.1.4.6231 = STRING: "xfce4-settings-helper"
.1.3.6.1.2.1.25.4.2.1.4.6238 = STRING: "/usr/bin/Thunar"
.1.3.6.1.2.1.25.4.2.1.4.6239 = STRING: "/usr/libexec/xfce4/panel-plugins/xfce4-menu-plugin"
.1.3.6.1.2.1.25.4.2.1.4.6240 = STRING: "/usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin"
.1.3.6.1.2.1.25.4.2.1.4.6241 = STRING: "/usr/libexec/xfce4/panel-plugins/xfce4-xmms-plugin"
.1.3.6.1.2.1.25.4.2.1.4.6244 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6245 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6246 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6247 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6248 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6249 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6250 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6251 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6252 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6253 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6254 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6255 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6256 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6257 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6258 = STRING: "xterm"
.1.3.6.1.2.1.25.4.2.1.4.6268 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6269 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6270 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6273 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6274 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6275 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6289 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6292 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6293 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6301 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6305 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6307 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6308 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6310 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.6321 = STRING: "bash"
.1.3.6.1.2.1.25.4.2.1.4.7875 = STRING: "/sbin/udevd"
.1.3.6.1.2.1.25.4.2.1.4.7876 = STRING: "/sbin/udevd"
.1.3.6.1.2.1.25.4.2.1.4.14038 = STRING: "ssh-agent"
.1.3.6.1.2.1.25.4.2.1.4.15251 = STRING: "ssh"
.1.3.6.1.2.1.25.4.2.1.4.17901 = STRING: "/usr/sbin/privoxy"
.1.3.6.1.2.1.25.4.2.1.4.21203 = STRING: "alpine"
.1.3.6.1.2.1.25.4.2.1.4.21880 = STRING: "mocp"
.1.3.6.1.2.1.25.4.2.1.4.22288 = STRING: "mocp"
.1.3.6.1.2.1.25.4.2.1.4.23625 = STRING: "/usr/sbin/httpd"
.1.3.6.1.2.1.25.4.2.1.4.24819 = STRING: "/usr/bin/pidgin"
.1.3.6.1.2.1.25.4.2.1.4.25327 = STRING: "vi"
.1.3.6.1.2.1.25.4.2.1.4.25672 = STRING: "python2.4"
.1.3.6.1.2.1.25.4.2.1.4.27421 = STRING: "/bin/bash"
.1.3.6.1.2.1.25.4.2.1.4.27422 = STRING: "rdesktop"
.1.3.6.1.2.1.25.4.2.1.4.28010 = STRING: "/usr/bin/firefox"
.1.3.6.1.2.1.25.4.2.1.4.28066 = STRING: "/usr/sbin/snmpd"
.1.3.6.1.2.1.25.4.2.1.4.28418 = STRING: "/usr/lib/firefox-15.0.1/plugin-container"
.1.3.6.1.2.1.25.4.2.1.4.28680 = STRING: "in.identd"
.1.3.6.1.2.1.25.4.2.1.4.30187 = STRING: "sshd: dopusk [priv]"
.1.3.6.1.2.1.25.4.2.1.4.30190 = STRING: "sshd: dopusk@pts/15"
.1.3.6.1.2.1.25.4.2.1.4.30191 = STRING: "-bash"
.1.3.6.1.2.1.25.4.2.1.4.30254 = STRING: "snmpwalk"
.1.3.6.1.2.1.25.4.2.1.5.1 = ""
.1.3.6.1.2.1.25.4.2.1.5.1173 = STRING: "--daemon"
.1.3.6.1.2.1.25.4.2.1.5.1456 = ""
.1.3.6.1.2.1.25.4.2.1.5.1461 = STRING: "-c 3 -x"
.1.3.6.1.2.1.25.4.2.1.5.1586 = ""
.1.3.6.1.2.1.25.4.2.1.5.1590 = ""
.1.3.6.1.2.1.25.4.2.1.5.1643 = ""
.1.3.6.1.2.1.25.4.2.1.5.1648 = ""
.1.3.6.1.2.1.25.4.2.1.5.1651 = ""
.1.3.6.1.2.1.25.4.2.1.5.1672 = ""
.1.3.6.1.2.1.25.4.2.1.5.1688 = ""
.1.3.6.1.2.1.25.4.2.1.5.1698 = ""
.1.3.6.1.2.1.25.4.2.1.5.1709 = STRING: "-g -p /var/run/ntpd.pid"
.1.3.6.1.2.1.25.4.2.1.5.1714 = ""
.1.3.6.1.2.1.25.4.2.1.5.1731 = STRING: "--system"
.1.3.6.1.2.1.25.4.2.1.5.1734 = STRING: "--daemon=yes"
.1.3.6.1.2.1.25.4.2.1.5.1736 = STRING: "--no-daemon"
.1.3.6.1.2.1.25.4.2.1.5.1803 = ""
.1.3.6.1.2.1.25.4.2.1.5.1806 = ""
.1.3.6.1.2.1.25.4.2.1.5.1835 = ""
.1.3.6.1.2.1.25.4.2.1.5.1847 = ""
.1.3.6.1.2.1.25.4.2.1.5.1851 = ""
.1.3.6.1.2.1.25.4.2.1.5.1856 = STRING: "-O /usr/share/wicd/daemon/wicd-daemon.py"
.1.3.6.1.2.1.25.4.2.1.5.1866 = STRING: "-O /usr/share/wicd/daemon/monitor.py"
.1.3.6.1.2.1.25.4.2.1.5.1889 = STRING: "-C /etc/cups/cupsd.conf"
.1.3.6.1.2.1.25.4.2.1.5.1894 = STRING: "-l notice"
.1.3.6.1.2.1.25.4.2.1.5.1896 = STRING: "-b 15 -l 1"
.1.3.6.1.2.1.25.4.2.1.5.1899 = ""
.1.3.6.1.2.1.25.4.2.1.5.1902 = ""
.1.3.6.1.2.1.25.4.2.1.5.1932 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.1945 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.1946 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.1947 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.1948 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.1949 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.1954 = STRING: "38400 tty1 linux"
.1.3.6.1.2.1.25.4.2.1.5.1955 = STRING: "38400 tty2 linux"
.1.3.6.1.2.1.25.4.2.1.5.1956 = STRING: "38400 tty3 linux"
.1.3.6.1.2.1.25.4.2.1.5.1957 = STRING: "38400 tty4 linux"
.1.3.6.1.2.1.25.4.2.1.5.1958 = STRING: "38400 tty5 linux"
.1.3.6.1.2.1.25.4.2.1.5.1959 = STRING: "38400 tty6 linux"
.1.3.6.1.2.1.25.4.2.1.5.1960 = STRING: "-nodaemon"
.1.3.6.1.2.1.25.4.2.1.5.2071 = ""
.1.3.6.1.2.1.25.4.2.1.5.3147 = ""
.1.3.6.1.2.1.25.4.2.1.5.3198 = ""
.1.3.6.1.2.1.25.4.2.1.5.4772 = ""
.1.3.6.1.2.1.25.4.2.1.5.6137 = STRING: ":0 -auth /var/lib/xdm/authdir/authfiles/A:0-aG97gL"
.1.3.6.1.2.1.25.4.2.1.5.6144 = ""
.1.3.6.1.2.1.25.4.2.1.5.6154 = STRING: "/etc/X11/xinit/xinitrc"
.1.3.6.1.2.1.25.4.2.1.5.6197 = STRING: "-no-splash"
.1.3.6.1.2.1.25.4.2.1.5.6200 = STRING: "-s"
.1.3.6.1.2.1.25.4.2.1.5.6205 = STRING: "--sh-syntax --exit-with-session"
.1.3.6.1.2.1.25.4.2.1.5.6206 = STRING: "--fork --print-pid 5 --print-address 7 --session"
.1.3.6.1.2.1.25.4.2.1.5.6208 = STRING: "/usr/bin/xfce4-session"
.1.3.6.1.2.1.25.4.2.1.5.6217 = ""
.1.3.6.1.2.1.25.4.2.1.5.6219 = ""
.1.3.6.1.2.1.25.4.2.1.5.6224 = STRING: "--display :0.0 --sm-client-id 11c3dafe69000115209737700000029700000"
.1.3.6.1.2.1.25.4.2.1.5.6225 = ""
.1.3.6.1.2.1.25.4.2.1.5.6228 = STRING: "--sm-client-id 11c3dafe69000115209737700000029700001"
.1.3.6.1.2.1.25.4.2.1.5.6229 = STRING: "--display :0.0 --sm-client-id 11c3dafe69000115209737700000029700003"
.1.3.6.1.2.1.25.4.2.1.5.6230 = STRING: "--restart --sm-client-id 2ed126790-4e4d-4adb-9f4e-d77ca20838fc"
.1.3.6.1.2.1.25.4.2.1.5.6231 = STRING: "--display :0.0 --sm-client-id 29733d25f-afc0-4b88-b0d6-0688a43f4976"
.1.3.6.1.2.1.25.4.2.1.5.6238 = STRING: "--daemon"
.1.3.6.1.2.1.25.4.2.1.5.6239 = STRING: "socket_id 16777252 name xfce4-menu id 5 display_name Xfce Menu size 36 screen_position 11"
.1.3.6.1.2.1.25.4.2.1.5.6240 = STRING: "socket_id 16777253 name screenshooter id 13333796140 display_name Screenshot size 36 screen_position 11"
.1.3.6.1.2.1.25.4.2.1.5.6241 = STRING: "socket_id 16777254 name xfce4-xmms-plugin id 11946297210 display_name Xfce4 XMMS Plugin size 36 screen_position 11"
.1.3.6.1.2.1.25.4.2.1.5.6244 = STRING: "-xtsessionID 11c3dafe69000115225556500000050600004 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6245 = STRING: "-xtsessionID 11c3dafe69000115225555600000050600003 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6246 = STRING: "-xtsessionID 11c3dafe69000115225555000000050600002 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6247 = STRING: "-xtsessionID 11c3dafe69000115211623900000081180004 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6248 = STRING: "-xtsessionID 11c3dafe69000115211110100000064280005 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6249 = STRING: "-xtsessionID 11c3dafe69000115211106700000064280002 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6250 = STRING: "-xtsessionID 11c3dafe69000115211106800000064280003 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6251 = STRING: "-xtsessionID 11c3dafe69000115211110000000064280004 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6252 = STRING: "-xtsessionID 11c3dafe69000115211110300000064280006 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6253 = STRING: "-xtsessionID 11c3dafe69000115211106500000064280001 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6254 = STRING: "-xtsessionID 11c3dafe69000115209747200000029700005 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6255 = STRING: "-xtsessionID 11c3dafe69000115209986400000029700006 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6256 = STRING: "-xtsessionID 11c3dafe69000115210961600000061770006 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6257 = STRING: "-xtsessionID 11c3dafe69000115210972100000061770008 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6258 = STRING: "-xtsessionID 11c3dafe69000115210965900000061770007 -title Terminal"
.1.3.6.1.2.1.25.4.2.1.5.6268 = ""
.1.3.6.1.2.1.25.4.2.1.5.6269 = ""
.1.3.6.1.2.1.25.4.2.1.5.6270 = ""
.1.3.6.1.2.1.25.4.2.1.5.6273 = ""
.1.3.6.1.2.1.25.4.2.1.5.6274 = ""
.1.3.6.1.2.1.25.4.2.1.5.6275 = ""
.1.3.6.1.2.1.25.4.2.1.5.6289 = ""
.1.3.6.1.2.1.25.4.2.1.5.6292 = ""
.1.3.6.1.2.1.25.4.2.1.5.6293 = ""
.1.3.6.1.2.1.25.4.2.1.5.6301 = ""
.1.3.6.1.2.1.25.4.2.1.5.6305 = ""
.1.3.6.1.2.1.25.4.2.1.5.6307 = ""
.1.3.6.1.2.1.25.4.2.1.5.6308 = ""
.1.3.6.1.2.1.25.4.2.1.5.6310 = ""
.1.3.6.1.2.1.25.4.2.1.5.6321 = ""
.1.3.6.1.2.1.25.4.2.1.5.7875 = STRING: "--daemon"
.1.3.6.1.2.1.25.4.2.1.5.7876 = STRING: "--daemon"
.1.3.6.1.2.1.25.4.2.1.5.14038 = ""
.1.3.6.1.2.1.25.4.2.1.5.15251 = STRING: "-CN -L 1024:127.0.0.1:80 tt"
.1.3.6.1.2.1.25.4.2.1.5.17901 = STRING: "--user privoxy privoxy --pidfile /var/run/privoxy/privoxy.pid /etc/privoxy/config"
.1.3.6.1.2.1.25.4.2.1.5.21203 = ""
.1.3.6.1.2.1.25.4.2.1.5.21880 = STRING: "-Tgreen_theme"
.1.3.6.1.2.1.25.4.2.1.5.22288 = ""
.1.3.6.1.2.1.25.4.2.1.5.23625 = STRING: "-k start"
.1.3.6.1.2.1.25.4.2.1.5.24819 = ""
.1.3.6.1.2.1.25.4.2.1.5.25327 = STRING: "walk2dev.py"
.1.3.6.1.2.1.25.4.2.1.5.25672 = ""
.1.3.6.1.2.1.25.4.2.1.5.27421 = STRING: "/home/ilya/bin/lotus"
.1.3.6.1.2.1.25.4.2.1.5.27422 = STRING: "-r disk:floppy /home/ilya/pp -r sound -g 1200x700 -d VIMPELCOM_MAIN -r printer:lj -u ietingof -p XXXXXXXXXXXX 10.105.41.24"
.1.3.6.1.2.1.25.4.2.1.5.28010 = ""
.1.3.6.1.2.1.25.4.2.1.5.28066 = STRING: "-A -p /var/run/snmpd -a -c /etc/snmp/snmpd.conf udp:127.0.0.1:161 udp6:[::1]:161 unix:/var/run/snmp-agent"
.1.3.6.1.2.1.25.4.2.1.5.28418 = STRING: "/usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox-15.0.1/omni.ja 28010 true plugin"
.1.3.6.1.2.1.25.4.2.1.5.28680 = ""
.1.3.6.1.2.1.25.4.2.1.5.30187 = ""
.1.3.6.1.2.1.25.4.2.1.5.30190 = ""
.1.3.6.1.2.1.25.4.2.1.5.30191 = ""
.1.3.6.1.2.1.25.4.2.1.5.30254 = STRING: "-ObentU -v2c -c"
.1.3.6.1.2.1.25.4.2.1.6.1 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1173 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1456 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1461 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1586 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1590 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1643 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1648 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1651 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1672 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1688 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1698 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1709 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1714 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1731 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1734 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1736 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1803 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1806 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1835 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1847 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1851 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1856 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1866 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1889 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1894 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1896 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1899 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1902 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1932 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1945 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1946 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1947 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1948 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1949 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1954 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1955 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1956 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1957 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1958 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1959 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1960 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.2071 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.3147 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.3198 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.4772 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6137 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6144 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6154 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6197 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6200 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6205 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6206 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6208 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6217 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6219 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6224 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6225 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6228 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6229 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6230 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6231 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6238 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6239 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6240 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6241 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6244 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6245 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6246 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6247 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6248 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6249 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6250 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6251 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6252 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6253 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6254 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6255 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6256 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6257 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6258 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6268 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6269 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6270 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6273 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6274 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6275 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6289 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6292 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6293 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6301 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6305 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6307 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6308 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6310 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.6321 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.7875 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.7876 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.14038 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.15251 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.17901 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.21203 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.21880 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.22288 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.23625 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.24819 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.25327 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.25672 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.27421 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.27422 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.28010 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.28066 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.28418 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.28680 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.30187 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.30190 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.30191 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.30254 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.7.1 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1173 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1456 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1461 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1586 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1590 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1643 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1648 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1651 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1672 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1688 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1698 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1709 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1714 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1731 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1734 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1736 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1803 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1806 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1835 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1847 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1851 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1856 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1866 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1889 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1894 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1896 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1899 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1902 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1932 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1945 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1946 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1947 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1948 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1949 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1954 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1955 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1956 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1957 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1958 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1959 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.1960 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.2071 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.3147 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.3198 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.4772 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6137 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6144 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6154 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6197 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6200 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6205 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6206 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6208 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6217 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6219 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6224 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6225 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6228 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6229 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6230 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6231 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6238 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6239 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6240 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6241 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6244 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6245 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6246 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6247 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6248 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6249 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6250 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6251 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6252 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6253 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6254 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6255 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6256 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6257 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6258 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6268 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6269 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6270 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6273 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6274 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6275 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6289 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6292 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6293 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6301 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6305 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6307 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6308 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6310 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.6321 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.7875 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.7876 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.14038 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.15251 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.17901 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.21203 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.21880 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.22288 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.23625 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.24819 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.25327 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.25672 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.27421 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.27422 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.28010 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.28066 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.28418 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.28680 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.30187 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.30190 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.30191 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.7.30254 = INTEGER: 2
.1.3.6.1.2.1.25.5.1.1.1.1 = INTEGER: 73594
.1.3.6.1.2.1.25.5.1.1.1.1173 = INTEGER: 57
.1.3.6.1.2.1.25.5.1.1.1.1456 = INTEGER: 932
.1.3.6.1.2.1.25.5.1.1.1.1461 = INTEGER: 264
.1.3.6.1.2.1.25.5.1.1.1.1586 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.1590 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1643 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1648 = INTEGER: 733
.1.3.6.1.2.1.25.5.1.1.1.1651 = INTEGER: 41630
.1.3.6.1.2.1.25.5.1.1.1.1672 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1688 = INTEGER: 12
.1.3.6.1.2.1.25.5.1.1.1.1698 = INTEGER: 6675
.1.3.6.1.2.1.25.5.1.1.1.1709 = INTEGER: 24878
.1.3.6.1.2.1.25.5.1.1.1.1714 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1731 = INTEGER: 575694
.1.3.6.1.2.1.25.5.1.1.1.1734 = INTEGER: 13376
.1.3.6.1.2.1.25.5.1.1.1.1736 = INTEGER: 9
.1.3.6.1.2.1.25.5.1.1.1.1803 = INTEGER: 30
.1.3.6.1.2.1.25.5.1.1.1.1806 = INTEGER: 50
.1.3.6.1.2.1.25.5.1.1.1.1835 = INTEGER: 20040
.1.3.6.1.2.1.25.5.1.1.1.1847 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1851 = INTEGER: 36336
.1.3.6.1.2.1.25.5.1.1.1.1856 = INTEGER: 59195
.1.3.6.1.2.1.25.5.1.1.1.1866 = INTEGER: 780028
.1.3.6.1.2.1.25.5.1.1.1.1889 = INTEGER: 59
.1.3.6.1.2.1.25.5.1.1.1.1894 = INTEGER: 705
.1.3.6.1.2.1.25.5.1.1.1.1896 = INTEGER: 14
.1.3.6.1.2.1.25.5.1.1.1.1899 = INTEGER: 3055
.1.3.6.1.2.1.25.5.1.1.1.1902 = INTEGER: 39
.1.3.6.1.2.1.25.5.1.1.1.1932 = INTEGER: 27088
.1.3.6.1.2.1.25.5.1.1.1.1945 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1946 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.1947 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1948 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1949 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1954 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1955 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1956 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1957 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1958 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1959 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.1960 = INTEGER: 4488
.1.3.6.1.2.1.25.5.1.1.1.2071 = INTEGER: 74714
.1.3.6.1.2.1.25.5.1.1.1.3147 = INTEGER: 60938
.1.3.6.1.2.1.25.5.1.1.1.3198 = INTEGER: 696
.1.3.6.1.2.1.25.5.1.1.1.4772 = INTEGER: 30
.1.3.6.1.2.1.25.5.1.1.1.6137 = INTEGER: 26429108
.1.3.6.1.2.1.25.5.1.1.1.6144 = INTEGER: 10
.1.3.6.1.2.1.25.5.1.1.1.6154 = INTEGER: 2
.1.3.6.1.2.1.25.5.1.1.1.6197 = INTEGER: 8724
.1.3.6.1.2.1.25.5.1.1.1.6200 = INTEGER: 196
.1.3.6.1.2.1.25.5.1.1.1.6205 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.6206 = INTEGER: 34334
.1.3.6.1.2.1.25.5.1.1.1.6208 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.6217 = INTEGER: 514
.1.3.6.1.2.1.25.5.1.1.1.6219 = INTEGER: 10
.1.3.6.1.2.1.25.5.1.1.1.6224 = INTEGER: 7033
.1.3.6.1.2.1.25.5.1.1.1.6225 = INTEGER: 10
.1.3.6.1.2.1.25.5.1.1.1.6228 = INTEGER: 871
.1.3.6.1.2.1.25.5.1.1.1.6229 = INTEGER: 6202
.1.3.6.1.2.1.25.5.1.1.1.6230 = INTEGER: 16
.1.3.6.1.2.1.25.5.1.1.1.6231 = INTEGER: 8918
.1.3.6.1.2.1.25.5.1.1.1.6238 = INTEGER: 3568
.1.3.6.1.2.1.25.5.1.1.1.6239 = INTEGER: 646
.1.3.6.1.2.1.25.5.1.1.1.6240 = INTEGER: 52
.1.3.6.1.2.1.25.5.1.1.1.6241 = INTEGER: 290846
.1.3.6.1.2.1.25.5.1.1.1.6244 = INTEGER: 12472
.1.3.6.1.2.1.25.5.1.1.1.6245 = INTEGER: 112
.1.3.6.1.2.1.25.5.1.1.1.6246 = INTEGER: 48
.1.3.6.1.2.1.25.5.1.1.1.6247 = INTEGER: 1550
.1.3.6.1.2.1.25.5.1.1.1.6248 = INTEGER: 320
.1.3.6.1.2.1.25.5.1.1.1.6249 = INTEGER: 500
.1.3.6.1.2.1.25.5.1.1.1.6250 = INTEGER: 2210
.1.3.6.1.2.1.25.5.1.1.1.6251 = INTEGER: 198
.1.3.6.1.2.1.25.5.1.1.1.6252 = INTEGER: 76
.1.3.6.1.2.1.25.5.1.1.1.6253 = INTEGER: 2570
.1.3.6.1.2.1.25.5.1.1.1.6254 = INTEGER: 3220
.1.3.6.1.2.1.25.5.1.1.1.6255 = INTEGER: 954
.1.3.6.1.2.1.25.5.1.1.1.6256 = INTEGER: 200
.1.3.6.1.2.1.25.5.1.1.1.6257 = INTEGER: 2278
.1.3.6.1.2.1.25.5.1.1.1.6258 = INTEGER: 3502
.1.3.6.1.2.1.25.5.1.1.1.6268 = INTEGER: 10
.1.3.6.1.2.1.25.5.1.1.1.6269 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.6270 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.6273 = INTEGER: 12
.1.3.6.1.2.1.25.5.1.1.1.6274 = INTEGER: 3
.1.3.6.1.2.1.25.5.1.1.1.6275 = INTEGER: 5043
.1.3.6.1.2.1.25.5.1.1.1.6289 = INTEGER: 170
.1.3.6.1.2.1.25.5.1.1.1.6292 = INTEGER: 35
.1.3.6.1.2.1.25.5.1.1.1.6293 = INTEGER: 512
.1.3.6.1.2.1.25.5.1.1.1.6301 = INTEGER: 47
.1.3.6.1.2.1.25.5.1.1.1.6305 = INTEGER: 97
.1.3.6.1.2.1.25.5.1.1.1.6307 = INTEGER: 30
.1.3.6.1.2.1.25.5.1.1.1.6308 = INTEGER: 299
.1.3.6.1.2.1.25.5.1.1.1.6310 = INTEGER: 820
.1.3.6.1.2.1.25.5.1.1.1.6321 = INTEGER: 64
.1.3.6.1.2.1.25.5.1.1.1.7875 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.7876 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.14038 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.15251 = INTEGER: 5
.1.3.6.1.2.1.25.5.1.1.1.17901 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.21203 = INTEGER: 100
.1.3.6.1.2.1.25.5.1.1.1.21880 = INTEGER: 44218
.1.3.6.1.2.1.25.5.1.1.1.22288 = INTEGER: 240064
.1.3.6.1.2.1.25.5.1.1.1.23625 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.24819 = INTEGER: 79480
.1.3.6.1.2.1.25.5.1.1.1.25327 = INTEGER: 838
.1.3.6.1.2.1.25.5.1.1.1.25672 = INTEGER: 76
.1.3.6.1.2.1.25.5.1.1.1.27421 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.27422 = INTEGER: 1524
.1.3.6.1.2.1.25.5.1.1.1.28010 = INTEGER: 39021
.1.3.6.1.2.1.25.5.1.1.1.28066 = INTEGER: 8935
.1.3.6.1.2.1.25.5.1.1.1.28418 = INTEGER: 4194
.1.3.6.1.2.1.25.5.1.1.1.28680 = INTEGER: 0
.1.3.6.1.2.1.25.5.1.1.1.30187 = INTEGER: 3
.1.3.6.1.2.1.25.5.1.1.1.30190 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.30191 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.30254 = INTEGER: 12
.1.3.6.1.2.1.25.5.1.1.2.1 = INTEGER: 3375104
.1.3.6.1.2.1.25.5.1.1.2.1173 = INTEGER: 96
.1.3.6.1.2.1.25.5.1.1.2.1456 = INTEGER: 1452
.1.3.6.1.2.1.25.5.1.1.2.1461 = INTEGER: 1716
.1.3.6.1.2.1.25.5.1.1.2.1586 = INTEGER: 2644
.1.3.6.1.2.1.25.5.1.1.2.1590 = INTEGER: 2660
.1.3.6.1.2.1.25.5.1.1.2.1643 = INTEGER: 3080
.1.3.6.1.2.1.25.5.1.1.2.1648 = INTEGER: 3368
.1.3.6.1.2.1.25.5.1.1.2.1651 = INTEGER: 3696
.1.3.6.1.2.1.25.5.1.1.2.1672 = INTEGER: 576
.1.3.6.1.2.1.25.5.1.1.2.1688 = INTEGER: 608
.1.3.6.1.2.1.25.5.1.1.2.1698 = INTEGER: 1124
.1.3.6.1.2.1.25.5.1.1.2.1709 = INTEGER: 1320
.1.3.6.1.2.1.25.5.1.1.2.1714 = INTEGER: 1400
.1.3.6.1.2.1.25.5.1.1.2.1731 = INTEGER: 3512
.1.3.6.1.2.1.25.5.1.1.2.1734 = INTEGER: 24
.1.3.6.1.2.1.25.5.1.1.2.1736 = INTEGER: 24
.1.3.6.1.2.1.25.5.1.1.2.1803 = INTEGER: 100
.1.3.6.1.2.1.25.5.1.1.2.1806 = INTEGER: 272
.1.3.6.1.2.1.25.5.1.1.2.1835 = INTEGER: 692
.1.3.6.1.2.1.25.5.1.1.2.1847 = INTEGER: 896
.1.3.6.1.2.1.25.5.1.1.2.1851 = INTEGER: 908
.1.3.6.1.2.1.25.5.1.1.2.1856 = INTEGER: 1904
.1.3.6.1.2.1.25.5.1.1.2.1866 = INTEGER: 2152
.1.3.6.1.2.1.25.5.1.1.2.1889 = INTEGER: 3304
.1.3.6.1.2.1.25.5.1.1.2.1894 = INTEGER: 3608
.1.3.6.1.2.1.25.5.1.1.2.1896 = INTEGER: 3632
.1.3.6.1.2.1.25.5.1.1.2.1899 = INTEGER: 3740
.1.3.6.1.2.1.25.5.1.1.2.1902 = INTEGER: 3752
.1.3.6.1.2.1.25.5.1.1.2.1932 = INTEGER: 468
.1.3.6.1.2.1.25.5.1.1.2.1945 = INTEGER: 856
.1.3.6.1.2.1.25.5.1.1.2.1946 = INTEGER: 856
.1.3.6.1.2.1.25.5.1.1.2.1947 = INTEGER: 856
.1.3.6.1.2.1.25.5.1.1.2.1948 = INTEGER: 856
.1.3.6.1.2.1.25.5.1.1.2.1949 = INTEGER: 856
.1.3.6.1.2.1.25.5.1.1.2.1954 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.1955 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.1956 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.1957 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.1958 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.1959 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.1960 = INTEGER: 904
.1.3.6.1.2.1.25.5.1.1.2.2071 = INTEGER: 768
.1.3.6.1.2.1.25.5.1.1.2.3147 = INTEGER: 349517092
.1.3.6.1.2.1.25.5.1.1.2.3198 = INTEGER: 349544004
.1.3.6.1.2.1.25.5.1.1.2.4772 = INTEGER: -1582650044
.1.3.6.1.2.1.25.5.1.1.2.6137 = INTEGER: -1624332492
.1.3.6.1.2.1.25.5.1.1.2.6144 = INTEGER: -1624331632
.1.3.6.1.2.1.25.5.1.1.2.6154 = INTEGER: -1624328704
.1.3.6.1.2.1.25.5.1.1.2.6197 = INTEGER: -1624328288
.1.3.6.1.2.1.25.5.1.1.2.6200 = INTEGER: -1624328288
.1.3.6.1.2.1.25.5.1.1.2.6205 = INTEGER: -1624328276
.1.3.6.1.2.1.25.5.1.1.2.6206 = INTEGER: -1624328180
.1.3.6.1.2.1.25.5.1.1.2.6208 = INTEGER: -1624328140
.1.3.6.1.2.1.25.5.1.1.2.6217 = INTEGER: -1624328092
.1.3.6.1.2.1.25.5.1.1.2.6219 = INTEGER: -1624327992
.1.3.6.1.2.1.25.5.1.1.2.6224 = INTEGER: -1624327928
.1.3.6.1.2.1.25.5.1.1.2.6225 = INTEGER: -1624327904
.1.3.6.1.2.1.25.5.1.1.2.6228 = INTEGER: -1624327712
.1.3.6.1.2.1.25.5.1.1.2.6229 = INTEGER: -1624327712
.1.3.6.1.2.1.25.5.1.1.2.6230 = INTEGER: -1624327676
.1.3.6.1.2.1.25.5.1.1.2.6231 = INTEGER: -1624327548
.1.3.6.1.2.1.25.5.1.1.2.6238 = INTEGER: -1624327260
.1.3.6.1.2.1.25.5.1.1.2.6239 = INTEGER: -1624327084
.1.3.6.1.2.1.25.5.1.1.2.6240 = INTEGER: -1624327008
.1.3.6.1.2.1.25.5.1.1.2.6241 = INTEGER: -1624326860
.1.3.6.1.2.1.25.5.1.1.2.6244 = INTEGER: -1624324508
.1.3.6.1.2.1.25.5.1.1.2.6245 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6246 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6247 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6248 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6249 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6250 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6251 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6252 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6253 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6254 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6255 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6256 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6257 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6258 = INTEGER: -1624324504
.1.3.6.1.2.1.25.5.1.1.2.6268 = INTEGER: -1624323800
.1.3.6.1.2.1.25.5.1.1.2.6269 = INTEGER: -1624323800
.1.3.6.1.2.1.25.5.1.1.2.6270 = INTEGER: -1624323800
.1.3.6.1.2.1.25.5.1.1.2.6273 = INTEGER: -1624323796
.1.3.6.1.2.1.25.5.1.1.2.6274 = INTEGER: -1624323788
.1.3.6.1.2.1.25.5.1.1.2.6275 = INTEGER: -1624323784
.1.3.6.1.2.1.25.5.1.1.2.6289 = INTEGER: -1624323692
.1.3.6.1.2.1.25.5.1.1.2.6292 = INTEGER: -1624323688
.1.3.6.1.2.1.25.5.1.1.2.6293 = INTEGER: -1624323688
.1.3.6.1.2.1.25.5.1.1.2.6301 = INTEGER: -1624323652
.1.3.6.1.2.1.25.5.1.1.2.6305 = INTEGER: -1624323644
.1.3.6.1.2.1.25.5.1.1.2.6307 = INTEGER: -1624323644
.1.3.6.1.2.1.25.5.1.1.2.6308 = INTEGER: -1624323640
.1.3.6.1.2.1.25.5.1.1.2.6310 = INTEGER: -1624323632
.1.3.6.1.2.1.25.5.1.1.2.6321 = INTEGER: -1624323576
.1.3.6.1.2.1.25.5.1.1.2.7875 = INTEGER: -1622391620
.1.3.6.1.2.1.25.5.1.1.2.7876 = INTEGER: -1622391620
.1.3.6.1.2.1.25.5.1.1.2.14038 = INTEGER: -936638064
.1.3.6.1.2.1.25.5.1.1.2.15251 = INTEGER: -935064036
.1.3.6.1.2.1.25.5.1.1.2.17901 = INTEGER: -706169884
.1.3.6.1.2.1.25.5.1.1.2.21203 = INTEGER: -384654656
.1.3.6.1.2.1.25.5.1.1.2.21880 = INTEGER: -1517042024
.1.3.6.1.2.1.25.5.1.1.2.22288 = INTEGER: -1557181104
.1.3.6.1.2.1.25.5.1.1.2.23625 = INTEGER: 1708223840
.1.3.6.1.2.1.25.5.1.1.2.24819 = INTEGER: -825759732
.1.3.6.1.2.1.25.5.1.1.2.25327 = INTEGER: -381534356
.1.3.6.1.2.1.25.5.1.1.2.25672 = INTEGER: -380970912
.1.3.6.1.2.1.25.5.1.1.2.27421 = INTEGER: -378173492
.1.3.6.1.2.1.25.5.1.1.2.27422 = INTEGER: -378173472
.1.3.6.1.2.1.25.5.1.1.2.28010 = INTEGER: -377228088
.1.3.6.1.2.1.25.5.1.1.2.28066 = INTEGER: -860723488
.1.3.6.1.2.1.25.5.1.1.2.28418 = INTEGER: -376674868
.1.3.6.1.2.1.25.5.1.1.2.28680 = INTEGER: 53070224
.1.3.6.1.2.1.25.5.1.1.2.30187 = INTEGER: -373899312
.1.3.6.1.2.1.25.5.1.1.2.30190 = INTEGER: -373898812
.1.3.6.1.2.1.25.5.1.1.2.30191 = INTEGER: -373898784
.1.3.6.1.2.1.25.5.1.1.2.30254 = INTEGER: -373831868
.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: lo
.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: eth0
.1.3.6.1.2.1.31.1.1.1.2.1 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.2.2 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.3.1 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.3.2 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.4.1 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.4.2 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.5.1 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.5.2 = Counter32: 0
.1.3.6.1.2.1.31.1.1.1.6.1 = Counter64: 12240978269
.1.3.6.1.2.1.31.1.1.1.6.2 = Counter64: 272497428662
.1.3.6.1.2.1.31.1.1.1.7.1 = Counter64: 17979662
.1.3.6.1.2.1.31.1.1.1.7.2 = Counter64: 326497672
.1.3.6.1.2.1.31.1.1.1.8.1 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.8.2 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.9.1 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.9.2 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.10.1 = Counter64: 12240978269
.1.3.6.1.2.1.31.1.1.1.10.2 = Counter64: 40950413065
.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 17979662
.1.3.6.1.2.1.31.1.1.1.11.2 = Counter64: 240979609
.1.3.6.1.2.1.31.1.1.1.12.1 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.12.2 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.13.1 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.13.2 = Counter64: 0
.1.3.6.1.2.1.31.1.1.1.15.1 = Gauge32: 10
.1.3.6.1.2.1.31.1.1.1.15.2 = Gauge32: 100
.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: 2
.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: 2
.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: 1
.1.3.6.1.2.1.31.1.1.1.18.1 = STRING:
.1.3.6.1.2.1.31.1.1.1.18.2 = STRING:
.1.3.6.1.2.1.31.1.1.1.19.1 = 0
.1.3.6.1.2.1.31.1.1.1.19.2 = 0
.1.3.6.1.2.1.31.1.5.0 = 0
.1.3.6.1.2.1.55.1.1.0 = INTEGER: 2
.1.3.6.1.2.1.55.1.2.0 = INTEGER: 64
.1.3.6.1.2.1.55.1.3.0 = Gauge32: 2
.1.3.6.1.2.1.55.1.5.1.2.1 = STRING: lo
.1.3.6.1.2.1.55.1.5.1.2.2 = STRING: eth0
.1.3.6.1.2.1.55.1.5.1.3.1 = OID: .0.0
.1.3.6.1.2.1.55.1.5.1.3.2 = OID: .0.0
.1.3.6.1.2.1.55.1.5.1.4.1 = Gauge32: 16436
.1.3.6.1.2.1.55.1.5.1.4.2 = Gauge32: 1500
.1.3.6.1.2.1.55.1.5.1.8.1 = STRING:
.1.3.6.1.2.1.55.1.5.1.8.2 = STRING: 0:12:79:62:f9:40
.1.3.6.1.2.1.55.1.5.1.9.1 = INTEGER: 1
.1.3.6.1.2.1.55.1.5.1.9.2 = INTEGER: 1
.1.3.6.1.2.1.55.1.5.1.10.1 = INTEGER: 1
.1.3.6.1.2.1.55.1.5.1.10.2 = INTEGER: 1
.1.3.6.1.2.1.88.1.1.1.0 = INTEGER: 1
.1.3.6.1.2.1.88.1.1.2.0 = Gauge32: 0
.1.3.6.1.2.1.88.1.1.3.0 = Gauge32: 0
.1.3.6.1.2.1.88.1.1.4.0 = Gauge32: 0
.1.3.6.1.2.1.88.1.1.5.0 = Counter32: 0
.1.3.6.1.2.1.88.1.2.1.0 = Counter32: 0
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = OID: .1.3.6.1.2.1.2.2.1.1
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = OID: .1.3.6.1.2.1.2.2.1.7
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = OID: .1.3.6.1.2.1.2.2.1.8
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = OID: .1.3.6.1.2.1.88.2.1.1
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = OID: .1.3.6.1.2.1.88.2.1.2
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = OID: .1.3.6.1.2.1.88.2.1.3
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = OID: .1.3.6.1.2.1.88.2.1.4
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = OID: .1.3.6.1.2.1.88.2.1.6
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = OID: .1.3.6.1.2.1.88.2.1.1
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = OID: .1.3.6.1.2.1.88.2.1.2
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = OID: .1.3.6.1.2.1.88.2.1.3
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = OID: .1.3.6.1.2.1.88.2.1.4
.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = OID: .1.3.6.1.2.1.88.2.1.5
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 2
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 1
.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING:
.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING:
.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING:
.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING:
.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING:
.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING:
.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = BITS: 80 0
.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = BITS: 80 0
.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = BITS: 80 0
.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = BITS: 80 0
.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = BITS: 80 0
.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = BITS: 80 0
.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1
.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = OID: .1.3.6.1.6.3.1.1.5.3
.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = OID: .1.3.6.1.6.3.1.1.5.4
.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = OID: .1.3.6.1.2.1.88.2.0.4
.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.3
.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = OID: .1.3.6.1.2.1.88.2.0.1
.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.2
.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: _snmpd
.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: _snmpd
.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: _snmpd
.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: _snmpd
.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: _snmpd
.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: _snmpd
.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: _linkUpDown
.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: _linkUpDown
.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: _triggerFail
.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: _triggerFire
.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: _triggerFire
.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: _triggerFire
.1.3.6.1.2.1.92.1.1.1.0 = Gauge32: 1000
.1.3.6.1.2.1.92.1.1.2.0 = Gauge32: 1440
.1.3.6.1.2.1.92.1.2.1.0 = Counter32: 0
.1.3.6.1.2.1.92.1.2.2.0 = Counter32: 0
.1.3.6.1.4.1.2021.4.1.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.2.0 = STRING: swap
.1.3.6.1.4.1.2021.4.3.0 = INTEGER: 987992
.1.3.6.1.4.1.2021.4.4.0 = INTEGER: 823404
.1.3.6.1.4.1.2021.4.5.0 = INTEGER: 1011344
.1.3.6.1.4.1.2021.4.6.0 = INTEGER: 399452
.1.3.6.1.4.1.2021.4.11.0 = INTEGER: 1222856
.1.3.6.1.4.1.2021.4.12.0 = INTEGER: 16000
.1.3.6.1.4.1.2021.4.14.0 = INTEGER: 24024
.1.3.6.1.4.1.2021.4.15.0 = INTEGER: 288160
.1.3.6.1.4.1.2021.4.100.0 = INTEGER: 0
.1.3.6.1.4.1.2021.4.101.0 = STRING:
.1.3.6.1.4.1.2021.10.1.1.1 = INTEGER: 1
.1.3.6.1.4.1.2021.10.1.1.2 = INTEGER: 2
.1.3.6.1.4.1.2021.10.1.1.3 = INTEGER: 3
.1.3.6.1.4.1.2021.10.1.2.1 = STRING: Load-1
.1.3.6.1.4.1.2021.10.1.2.2 = STRING: Load-5
.1.3.6.1.4.1.2021.10.1.2.3 = STRING: Load-15
.1.3.6.1.4.1.2021.10.1.3.1 = STRING: 0.05
.1.3.6.1.4.1.2021.10.1.3.2 = STRING: 0.13
.1.3.6.1.4.1.2021.10.1.3.3 = STRING: 0.18
.1.3.6.1.4.1.2021.10.1.4.1 = STRING: 12.00
.1.3.6.1.4.1.2021.10.1.4.2 = STRING: 12.00
.1.3.6.1.4.1.2021.10.1.4.3 = STRING: 12.00
.1.3.6.1.4.1.2021.10.1.5.1 = INTEGER: 5
.1.3.6.1.4.1.2021.10.1.5.2 = INTEGER: 13
.1.3.6.1.4.1.2021.10.1.5.3 = INTEGER: 17
.1.3.6.1.4.1.2021.10.1.6.1 = Opaque: Float: 0.050000
.1.3.6.1.4.1.2021.10.1.6.2 = Opaque: Float: 0.130000
.1.3.6.1.4.1.2021.10.1.6.3 = Opaque: Float: 0.180000
.1.3.6.1.4.1.2021.10.1.100.1 = INTEGER: 0
.1.3.6.1.4.1.2021.10.1.100.2 = INTEGER: 0
.1.3.6.1.4.1.2021.10.1.100.3 = INTEGER: 0
.1.3.6.1.4.1.2021.10.1.101.1 = STRING:
.1.3.6.1.4.1.2021.10.1.101.2 = STRING:
.1.3.6.1.4.1.2021.10.1.101.3 = STRING:
.1.3.6.1.4.1.2021.11.1.0 = INTEGER: 1
.1.3.6.1.4.1.2021.11.2.0 = STRING: systemStats
.1.3.6.1.4.1.2021.11.3.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.4.0 = INTEGER: 0
.1.3.6.1.4.1.2021.11.5.0 = INTEGER: 4
.1.3.6.1.4.1.2021.11.6.0 = INTEGER: 1
.1.3.6.1.4.1.2021.11.7.0 = INTEGER: 592
.1.3.6.1.4.1.2021.11.8.0 = INTEGER: 694
.1.3.6.1.4.1.2021.11.9.0 = INTEGER: 9
.1.3.6.1.4.1.2021.11.10.0 = INTEGER: 1
.1.3.6.1.4.1.2021.11.11.0 = INTEGER: 89
.1.3.6.1.4.1.2021.11.50.0 = Counter32: 430808302
.1.3.6.1.4.1.2021.11.51.0 = Counter32: 19832237
.1.3.6.1.4.1.2021.11.52.0 = Counter32: 128229404
.1.3.6.1.4.1.2021.11.53.0 = Counter32: 3372536426
.1.3.6.1.4.1.2021.11.54.0 = Counter32: 7100603
.1.3.6.1.4.1.2021.11.55.0 = Counter32: 0
.1.3.6.1.4.1.2021.11.56.0 = Counter32: 4284
.1.3.6.1.4.1.2021.11.57.0 = Counter32: 488030848
.1.3.6.1.4.1.2021.11.58.0 = Counter32: 331975270
.1.3.6.1.4.1.2021.11.59.0 = Counter32: 1573722881
.1.3.6.1.4.1.2021.11.60.0 = Counter32: 3518068325
.1.3.6.1.4.1.2021.11.61.0 = Counter32: 605394
.1.3.6.1.4.1.2021.11.62.0 = Counter32: 1505892
.1.3.6.1.4.1.2021.11.63.0 = Counter32: 1815591
.1.3.6.1.4.1.2021.13.14.1.0 = INTEGER: 1
.1.3.6.1.4.1.2021.16.1.0 = INTEGER: 250
.1.3.6.1.4.1.2021.100.1.0 = INTEGER: 1
.1.3.6.1.4.1.2021.100.2.0 = STRING: 5.6.1
.1.3.6.1.4.1.2021.100.3.0 = STRING: $Date: 2013/03/12 19:26:12 $
.1.3.6.1.4.1.2021.100.4.0 = STRING: Tue Oct 2 19:27:28 2012
.1.3.6.1.4.1.2021.100.5.0 = STRING: $Id: linux.snmpwalk,v 1.1 2013/03/12 19:26:12 elie Exp $
.1.3.6.1.4.1.2021.100.6.0 = STRING: '--prefix=/usr' '--libdir=/usr/lib' '--sysconfdir=/etc/snmp' '--mandir=/usr/man' '--enable-ipv6' '--disable-debugging' '--enable-static=no' '--with-libwrap' '--with-perl-modules' '--with-default-snmp-version=3' '--with-sys-contact=root@example.org' '--with-sys-location=unknown' '--with-logfile=/var/log/snmpd.log' '--with-persistent-directory=/var/lib/net-snmp' '--without-rpm' '--program-suffix=' '--program-prefix=' '--build=i486-slackware-linux' 'build_alias=i486-slackware-linux' 'CFLAGS=-O2 -march=i486 -mtune=i686'
.1.3.6.1.4.1.2021.100.10.0 = INTEGER: 0
.1.3.6.1.4.1.2021.100.11.0 = INTEGER: 0
.1.3.6.1.4.1.2021.100.12.0 = INTEGER: 0
.1.3.6.1.4.1.2021.100.13.0 = INTEGER: 0
.1.3.6.1.4.1.2021.100.20.0 = INTEGER: 0
.1.3.6.1.4.1.2021.101.1.0 = INTEGER: 0
.1.3.6.1.4.1.2021.101.2.0 = STRING: snmp
.1.3.6.1.4.1.2021.101.100.0 = INTEGER: 0
.1.3.6.1.4.1.2021.101.101.0 = STRING:
.1.3.6.1.4.1.8072.1.2.1.1.4.0.1.0.0 = STRING:
.1.3.6.1.4.1.8072.1.2.1.1.4.0.1.1.0 = STRING:
.1.3.6.1.4.1.8072.1.2.1.1.4.0.1.2.0 = STRING:
.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.4.127 = STRING: ip
.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.5.127 = STRING: icmp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.6.127 = STRING: tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.7.127 = STRING: udp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.11.127 = STRING: mibII/snmp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.1.127 = STRING: mibII/sysDescr
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.2.127 = STRING: mibII/sysObjectID
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.3.127 = STRING: mibII/sysUpTime
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.4.127 = STRING: mibII/sysContact
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.5.127 = STRING: mibII/sysName
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.6.127 = STRING: mibII/sysLocation
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.7.127 = STRING: mibII/sysServices
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.8.127 = STRING: mibII/sysORLastChange
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.9.127 = STRING: mibII/sysORTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.1.127 = STRING: if number
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.2.127 = STRING: ifTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.1.127 = STRING: ipForwarding
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.25.127 = STRING: ipv6IpForwarding
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.33.127 = STRING: ipAddressSpinLock
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.34.127 = STRING: ipAddressTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.35.127 = STRING: inetNetToMediaTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.36.127 = STRING: ipv6ScopeZoneIndexTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.5.29.127 = STRING: icmpStatsTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.5.30.127 = STRING: icmpMsgStatsTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.13.127 = STRING: tcpTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.19.127 = STRING: tcpConnectionTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.20.127 = STRING: tcpListenerTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.5.127 = STRING: udpTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.7.127 = STRING: udpEndpointTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.4.127 = STRING: memory
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.11.127 = STRING: vmstat
.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.6.3.12.1.127 = STRING: target_counters
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.2.0.127 = STRING: ipDefaultTTL
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.13.0.127 = STRING: ipReasmTimeout
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.4.127 = STRING: ipCidrRouteTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.7.127 = STRING: inetCidrRouteTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.26.0.127 = STRING: ipv6IpDefaultHopLimit
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.1.127 = STRING: ipSystemStatsTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.2.127 = STRING: ipIfStatsTableLastChanged
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.3.127 = STRING: ipIfStatsTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.11.30.0.127 = STRING: mibII/snmpEnableAuthenTraps
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.1.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.2.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.3.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.4.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.5.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.6.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.7.127 = STRING: host/hr_system
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.2.2.127 = STRING: host/hrMemorySize
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.4.2.127 = STRING: hrSWRunTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.5.1.127 = STRING: hrSWRunPerfTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.6.3.127 = STRING: hrSWInstalledTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.1.127 = STRING: ifXTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.5.127 = STRING: ifTableLastChanged
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.1.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.2.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.3.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.4.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.63.1.2.127 = STRING: schedTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.88.1.1.127 = STRING: mteResource
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.100.127 = STRING: memSwapError
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.101.127 = STRING: memSwapErrMsg
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.16.1.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.1.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.2.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.3.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.4.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.5.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.6.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.10.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.11.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.12.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.13.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.20.127 = STRING: ucd-snmp/versioninfo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.1.127 = STRING: ucd-snmp/errormib
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.2.127 = STRING: ucd-snmp/errormib
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.100.127 = STRING: ucd-snmp/errormib
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.101.127 = STRING: ucd-snmp/errormib
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.4413.4.1.127 = STRING: pass
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.11.2.1.127 = STRING: snmpMPDStats
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.1.127 = STRING: target/snmpTargetSpinLock
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.13.1.3.127 = STRING: snmpNotifyFilterTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.15.1.1.127 = STRING: usmStats
.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.16.1.1.127 = STRING: vacm_context
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.1.127 = STRING: mibII/at
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.2.127 = STRING: mibII/at
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.3.127 = STRING: mibII/at
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.1.127 = STRING: mibII/ipaddr
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.2.127 = STRING: mibII/ipaddr
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.3.127 = STRING: mibII/ipaddr
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.4.127 = STRING: mibII/ipaddr
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.5.127 = STRING: mibII/ipaddr
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.1.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.2.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.3.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.4.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.5.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.6.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.7.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.8.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.9.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.10.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.11.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.12.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.13.127 = STRING: mibII/iproute
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.1.127 = STRING: mibII/ipmedia
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.2.127 = STRING: mibII/ipmedia
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.3.127 = STRING: mibII/ipmedia
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.4.127 = STRING: mibII/ipmedia
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.24.6.0.127 = STRING: route number
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.1.127 = STRING: mibII/ipv6tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.2.127 = STRING: mibII/ipv6tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.3.127 = STRING: mibII/ipv6tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.4.127 = STRING: mibII/ipv6tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.5.127 = STRING: mibII/ipv6tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.6.127 = STRING: mibII/ipv6tcp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.1.127 = STRING: mibII/ipv6udp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.2.127 = STRING: mibII/ipv6udp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.3.127 = STRING: mibII/ipv6udp
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.1.127 = STRING: mteTriggerFailures
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.2.127 = STRING: mteTriggerTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.3.127 = STRING: mteTriggerDeltaTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.4.127 = STRING: mteTriggerExistenceTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.5.127 = STRING: mteTriggerBooleanTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.6.127 = STRING: mteTriggerThresholdTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.3.1.127 = STRING: mteObjectsTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.2.127 = STRING: mteEventTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.3.127 = STRING: mteEventNotificationTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.4.127 = STRING: mteEventSetTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.1.127 = STRING: nlmLogTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.2.127 = STRING: nlmLogVariableTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.1.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.2.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.3.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.4.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.5.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.100.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.101.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.102.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.103.127 = STRING: ucd-snmp/proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.1.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.2.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.3.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.100.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.101.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.102.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.103.127 = STRING: ucd-extensible
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.1.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.2.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.3.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.4.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.5.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.6.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.7.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.8.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.9.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.10.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.11.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.12.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.13.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.14.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.15.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.16.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.100.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.101.127 = STRING: ucd-snmp/disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.1.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.2.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.3.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.4.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.5.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.6.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.100.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.101.127 = STRING: ucd-snmp/loadave
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.13.14.1.127 = STRING: dlmod
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.1.127 = STRING: ucd-snmp/file
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.2.127 = STRING: ucd-snmp/file
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.3.127 = STRING: ucd-snmp/file
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.4.127 = STRING: ucd-snmp/file
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.100.127 = STRING: ucd-snmp/file
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.101.127 = STRING: ucd-snmp/file
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.2.1.127 = STRING: nsModuleTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.1.127 = STRING: nsCacheTimeout
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.2.127 = STRING: nsCacheEnabled
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.3.127 = STRING: tzCacheTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.8.1.127 = STRING: nsTransactionTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.9.1.127 = STRING: nsVacmAccessTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.1.1.6.1.127 = STRING: snmpSetSerialNo
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.1.127 = STRING: snmpv3/snmpEngine
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.2.127 = STRING: snmpv3/snmpEngine
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.3.127 = STRING: snmpv3/snmpEngine
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.4.127 = STRING: snmpv3/snmpEngine
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.2.1.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.16.1.5.1.127 = STRING: mibII/vacm:view
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.1.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.2.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.3.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.4.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.5.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.6.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.7.127 = STRING: host/hr_storage
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.1.127 = STRING: host/hr_device
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.2.127 = STRING: host/hr_device
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.3.127 = STRING: host/hr_device
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.4.127 = STRING: host/hr_device
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.5.127 = STRING: host/hr_device
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.6.127 = STRING: host/hr_device
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.1.127 = STRING: host/hr_proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.2.127 = STRING: host/hr_proc
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.4.1.1.127 = STRING: host/hr_network
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.1.127 = STRING: host/hr_print
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.2.127 = STRING: host/hr_print
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.1.127 = STRING: host/hr_disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.2.127 = STRING: host/hr_disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.3.127 = STRING: host/hr_disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.4.127 = STRING: host/hr_disk
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.1.127 = STRING: host/hr_partition
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.2.127 = STRING: host/hr_partition
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.3.127 = STRING: host/hr_partition
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.4.127 = STRING: host/hr_partition
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.5.127 = STRING: host/hr_partition
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.1.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.2.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.3.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.4.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.5.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.6.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.7.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.8.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.9.127 = STRING: host/hr_filesys
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.2.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.3.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.4.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.5.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.6.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.7.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.8.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.9.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.10.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.11.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.1.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.2.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.3.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.4.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.5.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.6.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.7.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.8.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.9.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.10.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.11.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.12.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.13.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.14.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.15.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.16.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.17.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.18.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.19.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.20.127 = STRING: mibII/ipv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.1.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.2.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.3.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.4.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.5.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.6.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.7.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.8.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.9.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.10.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.11.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.12.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.13.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.14.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.15.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.16.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.17.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.18.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.19.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.20.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.21.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.22.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.23.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.24.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.25.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.26.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.27.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.28.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.29.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.30.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.31.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.32.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.33.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.34.127 = STRING: mibII/icmpv6
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.1.0.127 = STRING: nlmConfigGlobalEntryLimit
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.2.0.127 = STRING: nlmConfigGlobalAgeOut
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.1.0.127 = STRING: nlmStatsGlobalNotificationsLogged
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.2.0.127 = STRING: nlmStatsGlobalNotificationsBumped
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.1.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.2.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.3.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.4.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.5.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.6.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.7.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.8.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.9.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.10.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.11.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.100.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.101.127 = STRING: ucd-snmp/logmatch
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.1.127 = STRING: nsExtendNumEntries
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.2.127 = STRING: nsExtendConfigTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.3.127 = STRING: nsExtendOut1Table
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.4.127 = STRING: nsExtendOut2Table
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.2.1.127 = STRING: tzLoggingTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.2.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.3.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.4.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.5.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.6.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.7.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.8.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.9.127 = STRING: target/snmpTargetAddrEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.2.127 = STRING: target/snmpTargetParamsEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.3.127 = STRING: target/snmpTargetParamsEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.4.127 = STRING: target/snmpTargetParamsEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.5.127 = STRING: target/snmpTargetParamsEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.6.127 = STRING: target/snmpTargetParamsEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.7.127 = STRING: target/snmpTargetParamsEntry
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.2.127 = STRING: snmpNotifyTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.3.127 = STRING: snmpNotifyTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.4.127 = STRING: snmpNotifyTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.5.127 = STRING: snmpNotifyTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.1.127 = STRING: snmpNotifyFilterProfileTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.2.127 = STRING: snmpNotifyFilterProfileTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.3.127 = STRING: snmpNotifyFilterProfileTable
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.3.127 = STRING: mibII/vacm:sec2group
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.4.127 = STRING: mibII/vacm:sec2group
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.5.127 = STRING: mibII/vacm:sec2group
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.4.127 = STRING: mibII/vacm:access
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.5.127 = STRING: mibII/vacm:access
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.6.127 = STRING: mibII/vacm:access
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.7.127 = STRING: mibII/vacm:access
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.8.127 = STRING: mibII/vacm:access
.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.9.127 = STRING: mibII/vacm:access
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127 = STRING: dlmod
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127 = STRING: dlmod
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127 = STRING: dlmod
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127 = STRING: dlmod
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127 = STRING: snmpv3/usmUser
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127 = STRING: mibII/vacm:view
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127 = STRING: mibII/vacm:view
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127 = STRING: mibII/vacm:view
.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127 = STRING: mibII/vacm:view
.1.3.6.1.4.1.8072.1.2.1.1.5.0.1.0.0 = BITS: A0 0 2
.1.3.6.1.4.1.8072.1.2.1.1.5.0.1.1.0 = BITS: A0 0 2
.1.3.6.1.4.1.8072.1.2.1.1.5.0.1.2.0 = BITS: A0 0 2
.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.4.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.5.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.6.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.7.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.11.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.2.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.3.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.7.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.8.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.9.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.25.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.33.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.34.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.35.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.36.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.5.29.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.5.30.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.13.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.19.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.20.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.5.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.7.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.4.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.11.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.6.3.12.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.2.0.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.13.0.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.4.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.26.0.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.2.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.3.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.11.30.0.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.2.2.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.4.2.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.5.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.6.3.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.5.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.63.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.88.1.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.100.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.101.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.16.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.12.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.13.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.20.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.4413.4.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.11.2.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.13.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.15.1.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.16.1.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.12.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.13.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.24.6.0.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.3.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.102.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.103.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.102.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.103.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.12.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.13.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.14.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.15.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.16.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.13.14.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.2.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.8.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.9.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.1.1.6.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.2.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.16.1.5.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.4.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.12.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.13.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.14.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.15.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.16.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.17.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.18.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.19.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.20.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.12.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.13.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.14.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.15.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.16.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.17.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.18.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.19.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.20.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.21.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.22.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.23.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.24.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.25.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.26.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.27.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.28.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.29.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.30.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.31.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.32.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.33.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.34.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.1.0.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.2.0.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.1.0.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.2.0.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.100.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.101.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.1.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.3.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.4.127 = BITS: 80 0
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.2.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.1.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127 = BITS: C0 0 1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.1.0.0 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.1.1.0 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.1.2.0 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.5.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.6.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.7.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.11.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.5.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.6.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.7.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.8.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.9.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.25.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.33.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.34.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.35.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.36.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.5.29.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.5.30.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.13.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.19.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.20.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.5.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.7.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.11.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.6.3.12.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.2.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.13.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.7.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.26.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.11.30.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.2.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.4.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.5.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.6.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.5.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.63.1.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.88.1.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.100.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.101.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.16.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.12.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.13.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.20.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.4413.4.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.11.2.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.13.1.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.15.1.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.16.1.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.12.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.13.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.24.6.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.5.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.6.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.3.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.102.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.103.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.102.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.103.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.12.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.13.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.14.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.15.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.16.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.13.14.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.2.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.8.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.9.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.1.1.6.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.2.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.16.1.5.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.4.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.12.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.13.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.14.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.15.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.16.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.17.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.18.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.19.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.20.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.12.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.13.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.14.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.15.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.16.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.17.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.18.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.19.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.20.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.21.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.22.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.23.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.24.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.25.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.26.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.27.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.28.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.29.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.30.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.31.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.32.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.33.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.34.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.1.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.2.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.1.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.2.0.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.100.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.101.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.2.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.3.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.4.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.2.1.127 = INTEGER: 0
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.1.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127 = INTEGER: -1
.1.3.6.1.4.1.8072.1.3.2.1.0 = INTEGER: 0
.1.3.6.1.4.1.8072.1.5.1.0 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.2.0 = INTEGER: 2
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.2.2 = INTEGER: 3
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.4 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.7 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.31.1 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.31.3 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.34 = INTEGER: 30
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.35 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.36 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5.29 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5.30 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.13 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.19 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.20 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.5 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.7 = INTEGER: 60
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.25.4.2 = INTEGER: 30
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.25.6.3 = INTEGER: 30
.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.4.1.8072.1.31 = INTEGER: 5
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.2.2 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.4 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.7 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.31.1 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.31.3 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.34 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.35 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.36 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5.29 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5.30 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.13 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.19 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.20 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.5 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.7 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.25.4.2 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.25.6.3 = INTEGER: 4
.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.4.1.8072.1.31 = INTEGER: 4
.1.3.6.1.4.1.8072.1.7.2.1.1.3.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103 = INTEGER: 3
.1.3.6.1.4.1.8072.1.7.2.1.1.4.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103 = INTEGER: 0
.1.3.6.1.4.1.8072.1.7.2.1.1.5.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = INTEGER: 2
.1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = INTEGER: 2
.1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = INTEGER: 2
.1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = STRING: all
.1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = STRING: all
.1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = STRING: all
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = STRING: pysnmpview
.1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = STRING: _all_
.1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = STRING: _all_
.1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = STRING: _all_
.1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = INTEGER: 4
.1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = INTEGER: 1
.1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = INTEGER: 1
.1.3.6.1.6.3.1.1.6.1.0 = INTEGER: 989152241
.1.3.6.1.6.3.10.2.1.1.0 = Hex-STRING: 80 00 1F 88 80 92 C3 70 21 52 9F 46 47
.1.3.6.1.6.3.10.2.1.2.0 = INTEGER: 121
.1.3.6.1.6.3.10.2.1.3.0 = INTEGER: 1217046
.1.3.6.1.6.3.10.2.1.4.0 = INTEGER: 1500
.1.3.6.1.6.3.11.2.1.1.0 = Counter32: 0
.1.3.6.1.6.3.11.2.1.2.0 = Counter32: 0
.1.3.6.1.6.3.11.2.1.3.0 = Counter32: 0
.1.3.6.1.6.3.12.1.1.0 = INTEGER: 0
.1.3.6.1.6.3.12.1.4.0 = Counter32: 0
.1.3.6.1.6.3.12.1.5.0 = Counter32: 0
.1.3.6.1.6.3.15.1.1.1.0 = Counter32: 0
.1.3.6.1.6.3.15.1.1.2.0 = Counter32: 0
.1.3.6.1.6.3.15.1.1.3.0 = Counter32: 0
.1.3.6.1.6.3.15.1.1.4.0 = Counter32: 0
.1.3.6.1.6.3.15.1.1.5.0 = Counter32: 0
.1.3.6.1.6.3.15.1.1.6.0 = Counter32: 0
.1.3.6.1.6.3.15.1.2.1.0 = INTEGER: 0
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = STRING: test-user
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = STRING: usr-md5-aes
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = STRING: usr-md5-des
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = STRING: usr-sha-aes
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = STRING: usr-sha-des
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = STRING: usr-md5-none
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = STRING: usr-sha-none
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = STRING: test-user-aes
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = STRING: usr-none-none
.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = STRING: usr-sha-aes128
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = OID: .0.0
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = OID: .1.3.6.1.6.3.10.1.1.2
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.1.2
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.1.2
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.1.3
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.1.3
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.1.2
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.1.3
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.1.2
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.1.1
.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = OID: .1.3.6.1.6.3.10.1.1.3
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = ""
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = OID: .1.3.6.1.6.3.10.1.2.2
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.2.4
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.2.2
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.2.4
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.2.2
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.2.1
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.2.1
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.2.4
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.2.1
.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = OID: .1.3.6.1.6.3.10.1.2.4
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = Hex-STRING: 00
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = Hex-STRING: 00
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = ""
.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = ""
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 3
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 1
.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 1
.1.3.6.1.6.3.16.1.1.1.1.0 = STRING:
.1.3.6.1.6.3.16.1.2.1.3.1.5.108.111.99.97.108 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.1.6.108.111.99.97.108.54 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.1.9.108.111.99.97.108.117.110.105.120 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.2.5.108.111.99.97.108 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.2.6.108.111.99.97.108.54 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.2.9.108.111.99.97.108.117.110.105.120 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.109.100.53.45.97.101.115 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.109.100.53.45.100.101.115 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.115.104.97.45.97.101.115 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.115.104.97.45.100.101.115 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.12.117.115.114.45.109.100.53.45.110.111.110.101 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.12.117.115.114.45.115.104.97.45.110.111.110.101 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = STRING: grptest_user_aes
.1.3.6.1.6.3.16.1.2.1.3.3.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.14.117.115.114.45.109.100.53.45.97.101.115.49.50.56 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.3.3.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = STRING: PySNMPGroup
.1.3.6.1.6.3.16.1.2.1.4.1.5.108.111.99.97.108 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.1.6.108.111.99.97.108.54 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.1.9.108.111.99.97.108.117.110.105.120 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.2.5.108.111.99.97.108 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.2.6.108.111.99.97.108.54 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.2.9.108.111.99.97.108.117.110.105.120 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.14.117.115.114.45.109.100.53.45.97.101.115.49.50.56 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.4.3.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 4
.1.3.6.1.6.3.16.1.2.1.5.1.5.108.111.99.97.108 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.1.6.108.111.99.97.108.54 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.1.9.108.111.99.97.108.117.110.105.120 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.2.5.108.111.99.97.108 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.2.6.108.111.99.97.108.54 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.2.9.108.111.99.97.108.117.110.105.120 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.14.117.115.114.45.109.100.53.45.97.101.115.49.50.56 = INTEGER: 1
.1.3.6.1.6.3.16.1.2.1.5.3.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = INTEGER: 2
.1.3.6.1.6.3.16.1.4.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1 = STRING: all
.1.3.6.1.6.3.16.1.4.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = STRING: _all_
.1.3.6.1.6.3.16.1.4.1.6.9.77.121.82.87.71.114.111.117.112.0.0.1 = STRING: all
.1.3.6.1.6.3.16.1.4.1.6.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.6.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.6.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.6.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = STRING: _all_
.1.3.6.1.6.3.16.1.4.1.7.9.77.121.82.87.71.114.111.117.112.0.0.1 = STRING: all
.1.3.6.1.6.3.16.1.4.1.7.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.7.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.7.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = STRING: pysnmpview
.1.3.6.1.6.3.16.1.4.1.7.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = STRING: _all_
.1.3.6.1.6.3.16.1.4.1.8.9.77.121.82.87.71.114.111.117.112.0.0.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.4.1.8.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.4.1.8.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = INTEGER: 4
.1.3.6.1.6.3.16.1.4.1.8.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = INTEGER: 4
.1.3.6.1.6.3.16.1.4.1.8.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = INTEGER: 4
.1.3.6.1.6.3.16.1.4.1.9.9.77.121.82.87.71.114.111.117.112.0.0.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.9.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.9.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.9.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = INTEGER: 1
.1.3.6.1.6.3.16.1.4.1.9.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.1.0 = INTEGER: 0
.1.3.6.1.6.3.16.1.5.2.1.3.3.97.108.108.1.1 = Hex-STRING: 80
.1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.0 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.1 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.2 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.0 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.1 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.2 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.10.112.121.115.110.109.112.118.105.101.119.1.1 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = ""
.1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = ""
.1.3.6.1.6.3.16.1.5.2.1.4.3.97.108.108.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.0 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.2 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.0 = INTEGER: 2
.1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.1 = INTEGER: 2
.1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.2 = INTEGER: 2
.1.3.6.1.6.3.16.1.5.2.1.4.10.112.121.115.110.109.112.118.105.101.119.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.5.3.97.108.108.1.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.0 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.2 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.0 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.2 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.10.112.121.115.110.109.112.118.105.101.119.1.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = INTEGER: 4
.1.3.6.1.6.3.16.1.5.2.1.6.3.97.108.108.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.0 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.2 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.0 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.2 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.10.112.121.115.110.109.112.118.105.101.119.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = INTEGER: 1
.1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = No more variables left in this MIB View (It is past the end of the MIB tree)
snmpsim-0.4.5/data/foreignformats/winxp2.sapwalk 0000664 0063214 0063214 00000410626 13051045252 022167 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0 , OctetString , Hardware: x86 Family 6 Model 9 Stepping 5 AT/AT COMPATIBLE - Software: Windows 2000 Version 5.1 (Build 2600 Uniprocessor Free)
1.3.6.1.2.1.1.2.0 , ObjectID , 1.3.6.1.4.1.311.1.1.3.1.1
1.3.6.1.2.1.1.3.0 , TimeTicks , 200846
1.3.6.1.2.1.1.4.0 , OctetString , info@snmplabs.com
1.3.6.1.2.1.1.5.0 , OctetString , CRAY
1.3.6.1.2.1.1.6.0 , OctetString , Moscow, Russia
1.3.6.1.2.1.1.7.0 , Integer , 76
1.3.6.1.2.1.2.1.0 , Integer , 3
1.3.6.1.2.1.2.2.1.1.1 , Integer , 1
1.3.6.1.2.1.2.2.1.1.65539 , Integer , 65539
1.3.6.1.2.1.2.2.1.1.65540 , Integer , 65540
1.3.6.1.2.1.2.2.1.2.1 , OctetString , MS TCP Loopback interface
1.3.6.1.2.1.2.2.1.2.65539 , OctetString , Intel(R) PRO/Wireless 2200BG Network Connection
1.3.6.1.2.1.2.2.1.2.65540 , OctetString , Bluetooth Device (Personal Area Network)
1.3.6.1.2.1.2.2.1.3.1 , Integer , 24
1.3.6.1.2.1.2.2.1.3.65539 , Integer , 6
1.3.6.1.2.1.2.2.1.3.65540 , Integer , 6
1.3.6.1.2.1.2.2.1.4.1 , Integer , 1520
1.3.6.1.2.1.2.2.1.4.65539 , Integer , 1500
1.3.6.1.2.1.2.2.1.4.65540 , Integer , 1500
1.3.6.1.2.1.2.2.1.5.1 , Gauge , 10000000
1.3.6.1.2.1.2.2.1.5.65539 , Gauge , 54000000
1.3.6.1.2.1.2.2.1.5.65540 , Gauge , 1000000
1.3.6.1.2.1.2.2.1.6.1 , OctetString ,
1.3.6.1.2.1.2.2.1.6.65539 , OctetString , 0x000e35d33d53
1.3.6.1.2.1.2.2.1.6.65540 , OctetString , 0x00158307d419
1.3.6.1.2.1.2.2.1.7.1 , Integer , 1
1.3.6.1.2.1.2.2.1.7.65539 , Integer , 1
1.3.6.1.2.1.2.2.1.7.65540 , Integer , 1
1.3.6.1.2.1.2.2.1.8.1 , Integer , 1
1.3.6.1.2.1.2.2.1.8.65539 , Integer , 1
1.3.6.1.2.1.2.2.1.8.65540 , Integer , 2
1.3.6.1.2.1.2.2.1.9.1 , TimeTicks , 0
1.3.6.1.2.1.2.2.1.9.65539 , TimeTicks , 0
1.3.6.1.2.1.2.2.1.9.65540 , TimeTicks , 0
1.3.6.1.2.1.2.2.1.10.1 , Counter , 1896349
1.3.6.1.2.1.2.2.1.10.65539 , Counter , 46643223
1.3.6.1.2.1.2.2.1.10.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.11.1 , Counter , 31178
1.3.6.1.2.1.2.2.1.11.65539 , Counter , 35012
1.3.6.1.2.1.2.2.1.11.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.12.1 , Counter , 0
1.3.6.1.2.1.2.2.1.12.65539 , Counter , 980
1.3.6.1.2.1.2.2.1.12.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.13.1 , Counter , 0
1.3.6.1.2.1.2.2.1.13.65539 , Counter , 0
1.3.6.1.2.1.2.2.1.13.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.14.1 , Counter , 0
1.3.6.1.2.1.2.2.1.14.65539 , Counter , 0
1.3.6.1.2.1.2.2.1.14.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.15.1 , Counter , 0
1.3.6.1.2.1.2.2.1.15.65539 , Counter , 2
1.3.6.1.2.1.2.2.1.15.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.16.1 , Counter , 1896349
1.3.6.1.2.1.2.2.1.16.65539 , Counter , 2373231
1.3.6.1.2.1.2.2.1.16.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.17.1 , Counter , 31178
1.3.6.1.2.1.2.2.1.17.65539 , Counter , 20942
1.3.6.1.2.1.2.2.1.17.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.18.1 , Counter , 0
1.3.6.1.2.1.2.2.1.18.65539 , Counter , 32
1.3.6.1.2.1.2.2.1.18.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.19.1 , Counter , 0
1.3.6.1.2.1.2.2.1.19.65539 , Counter , 0
1.3.6.1.2.1.2.2.1.19.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.20.1 , Counter , 0
1.3.6.1.2.1.2.2.1.20.65539 , Counter , 0
1.3.6.1.2.1.2.2.1.20.65540 , Counter , 0
1.3.6.1.2.1.2.2.1.21.1 , Gauge , 0
1.3.6.1.2.1.2.2.1.21.65539 , Gauge , 0
1.3.6.1.2.1.2.2.1.21.65540 , Gauge , 0
1.3.6.1.2.1.2.2.1.22.1 , ObjectID , 0.0
1.3.6.1.2.1.2.2.1.22.65539 , ObjectID , 0.0
1.3.6.1.2.1.2.2.1.22.65540 , ObjectID , 0.0
1.3.6.1.2.1.4.1.0 , Integer , 2
1.3.6.1.2.1.4.2.0 , Integer , 128
1.3.6.1.2.1.4.3.0 , Counter , 67156
1.3.6.1.2.1.4.4.0 , Counter , 0
1.3.6.1.2.1.4.5.0 , Counter , 3
1.3.6.1.2.1.4.6.0 , Counter , 0
1.3.6.1.2.1.4.7.0 , Counter , 0
1.3.6.1.2.1.4.8.0 , Counter , 963
1.3.6.1.2.1.4.9.0 , Counter , 66205
1.3.6.1.2.1.4.10.0 , Counter , 52242
1.3.6.1.2.1.4.11.0 , Counter , 0
1.3.6.1.2.1.4.12.0 , Counter , 0
1.3.6.1.2.1.4.13.0 , Integer , 60
1.3.6.1.2.1.4.14.0 , Counter , 0
1.3.6.1.2.1.4.15.0 , Counter , 0
1.3.6.1.2.1.4.16.0 , Counter , 0
1.3.6.1.2.1.4.17.0 , Counter , 0
1.3.6.1.2.1.4.18.0 , Counter , 0
1.3.6.1.2.1.4.19.0 , Counter , 0
1.3.6.1.2.1.4.20.1.1.0.0.0.0 , IpAddress , 0.0.0.0
1.3.6.1.2.1.4.20.1.1.127.0.0.1, IpAddress , 127.0.0.1
1.3.6.1.2.1.4.20.1.1.192.168.1.9, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.20.1.2.0.0.0.0 , Integer , 65540
1.3.6.1.2.1.4.20.1.2.127.0.0.1, Integer , 1
1.3.6.1.2.1.4.20.1.2.192.168.1.9, Integer , 65539
1.3.6.1.2.1.4.20.1.3.0.0.0.0 , IpAddress , 0.0.0.0
1.3.6.1.2.1.4.20.1.3.127.0.0.1, IpAddress , 255.0.0.0
1.3.6.1.2.1.4.20.1.3.192.168.1.9, IpAddress , 255.255.255.0
1.3.6.1.2.1.4.20.1.4.0.0.0.0 , Integer , 1
1.3.6.1.2.1.4.20.1.4.127.0.0.1, Integer , 1
1.3.6.1.2.1.4.20.1.4.192.168.1.9, Integer , 1
1.3.6.1.2.1.4.20.1.5.0.0.0.0 , Integer , 65535
1.3.6.1.2.1.4.20.1.5.127.0.0.1, Integer , 65535
1.3.6.1.2.1.4.20.1.5.192.168.1.9, Integer , 65535
1.3.6.1.2.1.4.21.1.1.0.0.0.0 , IpAddress , 0.0.0.0
1.3.6.1.2.1.4.21.1.1.127.0.0.0, IpAddress , 127.0.0.0
1.3.6.1.2.1.4.21.1.1.192.168.1.0, IpAddress , 192.168.1.0
1.3.6.1.2.1.4.21.1.1.192.168.1.9, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.21.1.1.192.168.1.255, IpAddress , 192.168.1.255
1.3.6.1.2.1.4.21.1.1.224.0.0.0, IpAddress , 224.0.0.0
1.3.6.1.2.1.4.21.1.1.255.255.255.255, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.21.1.2.0.0.0.0 , Integer , 65539
1.3.6.1.2.1.4.21.1.2.127.0.0.0, Integer , 1
1.3.6.1.2.1.4.21.1.2.192.168.1.0, Integer , 65539
1.3.6.1.2.1.4.21.1.2.192.168.1.9, Integer , 1
1.3.6.1.2.1.4.21.1.2.192.168.1.255, Integer , 65539
1.3.6.1.2.1.4.21.1.2.224.0.0.0, Integer , 65539
1.3.6.1.2.1.4.21.1.2.255.255.255.255, Integer , 65540
1.3.6.1.2.1.4.21.1.3.0.0.0.0 , Integer , 25
1.3.6.1.2.1.4.21.1.3.127.0.0.0, Integer , 1
1.3.6.1.2.1.4.21.1.3.192.168.1.0, Integer , 25
1.3.6.1.2.1.4.21.1.3.192.168.1.9, Integer , 25
1.3.6.1.2.1.4.21.1.3.192.168.1.255, Integer , 25
1.3.6.1.2.1.4.21.1.3.224.0.0.0, Integer , 25
1.3.6.1.2.1.4.21.1.3.255.255.255.255, Integer , 1
1.3.6.1.2.1.4.21.1.4.0.0.0.0 , Integer , -1
1.3.6.1.2.1.4.21.1.4.127.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.4.192.168.1.0, Integer , -1
1.3.6.1.2.1.4.21.1.4.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.21.1.4.192.168.1.255, Integer , -1
1.3.6.1.2.1.4.21.1.4.224.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.4.255.255.255.255, Integer , -1
1.3.6.1.2.1.4.21.1.5.0.0.0.0 , Integer , -1
1.3.6.1.2.1.4.21.1.5.127.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.5.192.168.1.0, Integer , -1
1.3.6.1.2.1.4.21.1.5.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.21.1.5.192.168.1.255, Integer , -1
1.3.6.1.2.1.4.21.1.5.224.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.5.255.255.255.255, Integer , -1
1.3.6.1.2.1.4.21.1.6.0.0.0.0 , Integer , -1
1.3.6.1.2.1.4.21.1.6.127.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.6.192.168.1.0, Integer , -1
1.3.6.1.2.1.4.21.1.6.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.21.1.6.192.168.1.255, Integer , -1
1.3.6.1.2.1.4.21.1.6.224.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.6.255.255.255.255, Integer , -1
1.3.6.1.2.1.4.21.1.7.0.0.0.0 , IpAddress , 192.168.1.1
1.3.6.1.2.1.4.21.1.7.127.0.0.0, IpAddress , 127.0.0.1
1.3.6.1.2.1.4.21.1.7.192.168.1.0, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.21.1.7.192.168.1.9, IpAddress , 127.0.0.1
1.3.6.1.2.1.4.21.1.7.192.168.1.255, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.21.1.7.224.0.0.0, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.21.1.7.255.255.255.255, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.21.1.8.0.0.0.0 , Integer , 4
1.3.6.1.2.1.4.21.1.8.127.0.0.0, Integer , 3
1.3.6.1.2.1.4.21.1.8.192.168.1.0, Integer , 3
1.3.6.1.2.1.4.21.1.8.192.168.1.9, Integer , 3
1.3.6.1.2.1.4.21.1.8.192.168.1.255, Integer , 3
1.3.6.1.2.1.4.21.1.8.224.0.0.0, Integer , 3
1.3.6.1.2.1.4.21.1.8.255.255.255.255, Integer , 3
1.3.6.1.2.1.4.21.1.9.0.0.0.0 , Integer , 3
1.3.6.1.2.1.4.21.1.9.127.0.0.0, Integer , 2
1.3.6.1.2.1.4.21.1.9.192.168.1.0, Integer , 2
1.3.6.1.2.1.4.21.1.9.192.168.1.9, Integer , 2
1.3.6.1.2.1.4.21.1.9.192.168.1.255, Integer , 2
1.3.6.1.2.1.4.21.1.9.224.0.0.0, Integer , 2
1.3.6.1.2.1.4.21.1.9.255.255.255.255, Integer , 2
1.3.6.1.2.1.4.21.1.10.0.0.0.0 , Integer , 9531
1.3.6.1.2.1.4.21.1.10.127.0.0.0, Integer , 9734
1.3.6.1.2.1.4.21.1.10.192.168.1.0, Integer , 9534
1.3.6.1.2.1.4.21.1.10.192.168.1.9, Integer , 9534
1.3.6.1.2.1.4.21.1.10.192.168.1.255, Integer , 9534
1.3.6.1.2.1.4.21.1.10.224.0.0.0, Integer , 9534
1.3.6.1.2.1.4.21.1.10.255.255.255.255, Integer , 9733
1.3.6.1.2.1.4.21.1.11.0.0.0.0 , IpAddress , 0.0.0.0
1.3.6.1.2.1.4.21.1.11.127.0.0.0, IpAddress , 255.0.0.0
1.3.6.1.2.1.4.21.1.11.192.168.1.0, IpAddress , 255.255.255.0
1.3.6.1.2.1.4.21.1.11.192.168.1.9, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.21.1.11.192.168.1.255, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.21.1.11.224.0.0.0, IpAddress , 240.0.0.0
1.3.6.1.2.1.4.21.1.11.255.255.255.255, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.21.1.12.0.0.0.0 , Integer , -1
1.3.6.1.2.1.4.21.1.12.127.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.12.192.168.1.0, Integer , -1
1.3.6.1.2.1.4.21.1.12.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.21.1.12.192.168.1.255, Integer , -1
1.3.6.1.2.1.4.21.1.12.224.0.0.0, Integer , -1
1.3.6.1.2.1.4.21.1.12.255.255.255.255, Integer , -1
1.3.6.1.2.1.4.21.1.13.0.0.0.0 , ObjectID , 0.0
1.3.6.1.2.1.4.21.1.13.127.0.0.0, ObjectID , 0.0
1.3.6.1.2.1.4.21.1.13.192.168.1.0, ObjectID , 0.0
1.3.6.1.2.1.4.21.1.13.192.168.1.9, ObjectID , 0.0
1.3.6.1.2.1.4.21.1.13.192.168.1.255, ObjectID , 0.0
1.3.6.1.2.1.4.21.1.13.224.0.0.0, ObjectID , 0.0
1.3.6.1.2.1.4.21.1.13.255.255.255.255, ObjectID , 0.0
1.3.6.1.2.1.4.23.0 , Counter , 0
1.3.6.1.2.1.4.24.1.0 , Gauge , 8
1.3.6.1.2.1.4.24.2.1.1.0.0.0.0.3.0.192.168.1.1, IpAddress , 0.0.0.0
1.3.6.1.2.1.4.24.2.1.1.127.0.0.0.2.0.127.0.0.1, IpAddress , 127.0.0.0
1.3.6.1.2.1.4.24.2.1.1.192.168.1.0.2.0.192.168.1.9, IpAddress , 192.168.1.0
1.3.6.1.2.1.4.24.2.1.1.192.168.1.9.2.0.127.0.0.1, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.24.2.1.1.192.168.1.255.2.0.192.168.1.9, IpAddress , 192.168.1.255
1.3.6.1.2.1.4.24.2.1.1.224.0.0.0.2.0.192.168.1.9, IpAddress , 224.0.0.0
1.3.6.1.2.1.4.24.2.1.1.255.255.255.255.2.0.192.168.1.9, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.24.2.1.2.0.0.0.0.3.0.192.168.1.1, IpAddress , 0.0.0.0
1.3.6.1.2.1.4.24.2.1.2.127.0.0.0.2.0.127.0.0.1, IpAddress , 255.0.0.0
1.3.6.1.2.1.4.24.2.1.2.192.168.1.0.2.0.192.168.1.9, IpAddress , 255.255.255.0
1.3.6.1.2.1.4.24.2.1.2.192.168.1.9.2.0.127.0.0.1, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.24.2.1.2.192.168.1.255.2.0.192.168.1.9, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.24.2.1.2.224.0.0.0.2.0.192.168.1.9, IpAddress , 240.0.0.0
1.3.6.1.2.1.4.24.2.1.2.255.255.255.255.2.0.192.168.1.9, IpAddress , 255.255.255.255
1.3.6.1.2.1.4.24.2.1.3.0.0.0.0.3.0.192.168.1.1, Integer , 0
1.3.6.1.2.1.4.24.2.1.3.127.0.0.0.2.0.127.0.0.1, Integer , 0
1.3.6.1.2.1.4.24.2.1.3.192.168.1.0.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.3.192.168.1.9.2.0.127.0.0.1, Integer , 0
1.3.6.1.2.1.4.24.2.1.3.192.168.1.255.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.3.224.0.0.0.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.3.255.255.255.255.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.4.0.0.0.0.3.0.192.168.1.1, IpAddress , 192.168.1.1
1.3.6.1.2.1.4.24.2.1.4.127.0.0.0.2.0.127.0.0.1, IpAddress , 127.0.0.1
1.3.6.1.2.1.4.24.2.1.4.192.168.1.0.2.0.192.168.1.9, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.24.2.1.4.192.168.1.9.2.0.127.0.0.1, IpAddress , 127.0.0.1
1.3.6.1.2.1.4.24.2.1.4.192.168.1.255.2.0.192.168.1.9, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.24.2.1.4.224.0.0.0.2.0.192.168.1.9, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.24.2.1.4.255.255.255.255.2.0.192.168.1.9, IpAddress , 192.168.1.9
1.3.6.1.2.1.4.24.2.1.5.0.0.0.0.3.0.192.168.1.1, Integer , 65539
1.3.6.1.2.1.4.24.2.1.5.127.0.0.0.2.0.127.0.0.1, Integer , 1
1.3.6.1.2.1.4.24.2.1.5.192.168.1.0.2.0.192.168.1.9, Integer , 65539
1.3.6.1.2.1.4.24.2.1.5.192.168.1.9.2.0.127.0.0.1, Integer , 1
1.3.6.1.2.1.4.24.2.1.5.192.168.1.255.2.0.192.168.1.9, Integer , 65539
1.3.6.1.2.1.4.24.2.1.5.224.0.0.0.2.0.192.168.1.9, Integer , 65539
1.3.6.1.2.1.4.24.2.1.5.255.255.255.255.2.0.192.168.1.9, Integer , 65540
1.3.6.1.2.1.4.24.2.1.6.0.0.0.0.3.0.192.168.1.1, Integer , 4
1.3.6.1.2.1.4.24.2.1.6.127.0.0.0.2.0.127.0.0.1, Integer , 3
1.3.6.1.2.1.4.24.2.1.6.192.168.1.0.2.0.192.168.1.9, Integer , 3
1.3.6.1.2.1.4.24.2.1.6.192.168.1.9.2.0.127.0.0.1, Integer , 3
1.3.6.1.2.1.4.24.2.1.6.192.168.1.255.2.0.192.168.1.9, Integer , 3
1.3.6.1.2.1.4.24.2.1.6.224.0.0.0.2.0.192.168.1.9, Integer , 3
1.3.6.1.2.1.4.24.2.1.6.255.255.255.255.2.0.192.168.1.9, Integer , 3
1.3.6.1.2.1.4.24.2.1.7.0.0.0.0.3.0.192.168.1.1, Integer , 3
1.3.6.1.2.1.4.24.2.1.7.127.0.0.0.2.0.127.0.0.1, Integer , 2
1.3.6.1.2.1.4.24.2.1.7.192.168.1.0.2.0.192.168.1.9, Integer , 2
1.3.6.1.2.1.4.24.2.1.7.192.168.1.9.2.0.127.0.0.1, Integer , 2
1.3.6.1.2.1.4.24.2.1.7.192.168.1.255.2.0.192.168.1.9, Integer , 2
1.3.6.1.2.1.4.24.2.1.7.224.0.0.0.2.0.192.168.1.9, Integer , 2
1.3.6.1.2.1.4.24.2.1.7.255.255.255.255.2.0.192.168.1.9, Integer , 2
1.3.6.1.2.1.4.24.2.1.8.0.0.0.0.3.0.192.168.1.1, Integer , 9531
1.3.6.1.2.1.4.24.2.1.8.127.0.0.0.2.0.127.0.0.1, Integer , 9734
1.3.6.1.2.1.4.24.2.1.8.192.168.1.0.2.0.192.168.1.9, Integer , 9534
1.3.6.1.2.1.4.24.2.1.8.192.168.1.9.2.0.127.0.0.1, Integer , 9534
1.3.6.1.2.1.4.24.2.1.8.192.168.1.255.2.0.192.168.1.9, Integer , 9534
1.3.6.1.2.1.4.24.2.1.8.224.0.0.0.2.0.192.168.1.9, Integer , 9534
1.3.6.1.2.1.4.24.2.1.8.255.255.255.255.2.0.192.168.1.9, Integer , 9733
1.3.6.1.2.1.4.24.2.1.9.0.0.0.0.3.0.192.168.1.1, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.9.127.0.0.0.2.0.127.0.0.1, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.9.192.168.1.0.2.0.192.168.1.9, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.9.192.168.1.9.2.0.127.0.0.1, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.9.192.168.1.255.2.0.192.168.1.9, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.9.224.0.0.0.2.0.192.168.1.9, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.9.255.255.255.255.2.0.192.168.1.9, ObjectID , 0.0
1.3.6.1.2.1.4.24.2.1.10.0.0.0.0.3.0.192.168.1.1, Integer , 0
1.3.6.1.2.1.4.24.2.1.10.127.0.0.0.2.0.127.0.0.1, Integer , 0
1.3.6.1.2.1.4.24.2.1.10.192.168.1.0.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.10.192.168.1.9.2.0.127.0.0.1, Integer , 0
1.3.6.1.2.1.4.24.2.1.10.192.168.1.255.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.10.224.0.0.0.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.10.255.255.255.255.2.0.192.168.1.9, Integer , 0
1.3.6.1.2.1.4.24.2.1.11.0.0.0.0.3.0.192.168.1.1, Integer , 25
1.3.6.1.2.1.4.24.2.1.11.127.0.0.0.2.0.127.0.0.1, Integer , 1
1.3.6.1.2.1.4.24.2.1.11.192.168.1.0.2.0.192.168.1.9, Integer , 25
1.3.6.1.2.1.4.24.2.1.11.192.168.1.9.2.0.127.0.0.1, Integer , 25
1.3.6.1.2.1.4.24.2.1.11.192.168.1.255.2.0.192.168.1.9, Integer , 25
1.3.6.1.2.1.4.24.2.1.11.224.0.0.0.2.0.192.168.1.9, Integer , 25
1.3.6.1.2.1.4.24.2.1.11.255.255.255.255.2.0.192.168.1.9, Integer , 1
1.3.6.1.2.1.4.24.2.1.12.0.0.0.0.3.0.192.168.1.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.12.127.0.0.0.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.12.192.168.1.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.12.192.168.1.9.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.12.192.168.1.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.12.224.0.0.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.12.255.255.255.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.0.0.0.0.3.0.192.168.1.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.127.0.0.0.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.192.168.1.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.192.168.1.9.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.192.168.1.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.224.0.0.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.13.255.255.255.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.0.0.0.0.3.0.192.168.1.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.127.0.0.0.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.192.168.1.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.192.168.1.9.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.192.168.1.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.224.0.0.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.14.255.255.255.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.0.0.0.0.3.0.192.168.1.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.127.0.0.0.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.192.168.1.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.192.168.1.9.2.0.127.0.0.1, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.192.168.1.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.224.0.0.0.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.4.24.2.1.15.255.255.255.255.2.0.192.168.1.9, Integer , -1
1.3.6.1.2.1.5.1.0 , Counter , 1
1.3.6.1.2.1.5.2.0 , Counter , 0
1.3.6.1.2.1.5.3.0 , Counter , 1
1.3.6.1.2.1.5.4.0 , Counter , 0
1.3.6.1.2.1.5.5.0 , Counter , 0
1.3.6.1.2.1.5.6.0 , Counter , 0
1.3.6.1.2.1.5.7.0 , Counter , 0
1.3.6.1.2.1.5.8.0 , Counter , 0
1.3.6.1.2.1.5.9.0 , Counter , 0
1.3.6.1.2.1.5.10.0 , Counter , 0
1.3.6.1.2.1.5.11.0 , Counter , 0
1.3.6.1.2.1.5.12.0 , Counter , 0
1.3.6.1.2.1.5.13.0 , Counter , 0
1.3.6.1.2.1.5.14.0 , Counter , 1
1.3.6.1.2.1.5.15.0 , Counter , 0
1.3.6.1.2.1.5.16.0 , Counter , 1
1.3.6.1.2.1.5.17.0 , Counter , 0
1.3.6.1.2.1.5.18.0 , Counter , 0
1.3.6.1.2.1.5.19.0 , Counter , 0
1.3.6.1.2.1.5.20.0 , Counter , 0
1.3.6.1.2.1.5.21.0 , Counter , 0
1.3.6.1.2.1.5.22.0 , Counter , 0
1.3.6.1.2.1.5.23.0 , Counter , 0
1.3.6.1.2.1.5.24.0 , Counter , 0
1.3.6.1.2.1.5.25.0 , Counter , 0
1.3.6.1.2.1.5.26.0 , Counter , 0
1.3.6.1.2.1.6.1.0 , Integer , 4
1.3.6.1.2.1.6.2.0 , Integer , 300
1.3.6.1.2.1.6.3.0 , Integer , 120000
1.3.6.1.2.1.6.4.0 , Integer , -1
1.3.6.1.2.1.6.5.0 , Counter , 632
1.3.6.1.2.1.6.6.0 , Counter , 3
1.3.6.1.2.1.6.7.0 , Counter , 1
1.3.6.1.2.1.6.8.0 , Counter , 56
1.3.6.1.2.1.6.9.0 , Gauge , 2
1.3.6.1.2.1.6.10.0 , Counter , 49017
1.3.6.1.2.1.6.11.0 , Counter , 35044
1.3.6.1.2.1.6.12.0 , Counter , 3
1.3.6.1.2.1.6.13.1.1.0.0.0.0.135.0.0.0.0.6220, Integer , 2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.445.0.0.0.0.39166, Integer , 2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1025.0.0.0.0.24745, Integer , 2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1146.127.0.0.1.1147, Integer , 5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1147.127.0.0.1.1146, Integer , 5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.20619, Integer , 2
1.3.6.1.2.1.6.13.1.1.192.168.1.9.139.0.0.0.0.61692, Integer , 2
1.3.6.1.2.1.6.13.1.2.0.0.0.0.135.0.0.0.0.6220, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.2.0.0.0.0.445.0.0.0.0.39166, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1025.0.0.0.0.24745, IpAddress , 127.0.0.1
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1146.127.0.0.1.1147, IpAddress , 127.0.0.1
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1147.127.0.0.1.1146, IpAddress , 127.0.0.1
1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.20619, IpAddress , 127.0.0.1
1.3.6.1.2.1.6.13.1.2.192.168.1.9.139.0.0.0.0.61692, IpAddress , 192.168.1.9
1.3.6.1.2.1.6.13.1.3.0.0.0.0.135.0.0.0.0.6220, Integer , 135
1.3.6.1.2.1.6.13.1.3.0.0.0.0.445.0.0.0.0.39166, Integer , 445
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1025.0.0.0.0.24745, Integer , 1025
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1146.127.0.0.1.1147, Integer , 1146
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1147.127.0.0.1.1146, Integer , 1147
1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.20619, Integer , 8118
1.3.6.1.2.1.6.13.1.3.192.168.1.9.139.0.0.0.0.61692, Integer , 139
1.3.6.1.2.1.6.13.1.4.0.0.0.0.135.0.0.0.0.6220, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.4.0.0.0.0.445.0.0.0.0.39166, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1025.0.0.0.0.24745, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1146.127.0.0.1.1147, IpAddress , 127.0.0.1
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1147.127.0.0.1.1146, IpAddress , 127.0.0.1
1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.20619, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.4.192.168.1.9.139.0.0.0.0.61692, IpAddress , 0.0.0.0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.135.0.0.0.0.6220, Integer , 6220
1.3.6.1.2.1.6.13.1.5.0.0.0.0.445.0.0.0.0.39166, Integer , 39166
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1025.0.0.0.0.24745, Integer , 24745
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1146.127.0.0.1.1147, Integer , 1147
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1147.127.0.0.1.1146, Integer , 1146
1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.20619, Integer , 20619
1.3.6.1.2.1.6.13.1.5.192.168.1.9.139.0.0.0.0.61692, Integer , 61692
1.3.6.1.2.1.6.14.0 , Counter , 0
1.3.6.1.2.1.6.15.0 , Counter , 47
1.3.6.1.2.1.6.19.1.7.1.4.0.0.0.0.135.1.4.0.0.0.0.6220, Integer , 2
1.3.6.1.2.1.6.19.1.7.1.4.0.0.0.0.445.1.4.0.0.0.0.39166, Integer , 2
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1025.1.4.0.0.0.0.24745, Integer , 2
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1146.1.4.127.0.0.1.1147, Integer , 5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1147.1.4.127.0.0.1.1146, Integer , 5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.8118.1.4.0.0.0.0.20619, Integer , 2
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.139.1.4.0.0.0.0.61692, Integer , 2
1.3.6.1.2.1.7.1.0 , Counter , 17798
1.3.6.1.2.1.7.2.0 , Counter , 3
1.3.6.1.2.1.7.3.0 , Counter , 0
1.3.6.1.2.1.7.4.0 , Counter , 17807
1.3.6.1.2.1.7.5.1.1.0.0.0.0.161, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.162, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.445, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.500, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.1488, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.1679, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.4500, IpAddress , 0.0.0.0
1.3.6.1.2.1.7.5.1.1.127.0.0.1.123, IpAddress , 127.0.0.1
1.3.6.1.2.1.7.5.1.1.127.0.0.1.1900, IpAddress , 127.0.0.1
1.3.6.1.2.1.7.5.1.1.192.168.1.9.123, IpAddress , 192.168.1.9
1.3.6.1.2.1.7.5.1.1.192.168.1.9.137, IpAddress , 192.168.1.9
1.3.6.1.2.1.7.5.1.1.192.168.1.9.138, IpAddress , 192.168.1.9
1.3.6.1.2.1.7.5.1.1.192.168.1.9.1900, IpAddress , 192.168.1.9
1.3.6.1.2.1.7.5.1.2.0.0.0.0.161, Integer , 161
1.3.6.1.2.1.7.5.1.2.0.0.0.0.162, Integer , 162
1.3.6.1.2.1.7.5.1.2.0.0.0.0.445, Integer , 445
1.3.6.1.2.1.7.5.1.2.0.0.0.0.500, Integer , 500
1.3.6.1.2.1.7.5.1.2.0.0.0.0.1488, Integer , 1488
1.3.6.1.2.1.7.5.1.2.0.0.0.0.1679, Integer , 1679
1.3.6.1.2.1.7.5.1.2.0.0.0.0.4500, Integer , 4500
1.3.6.1.2.1.7.5.1.2.127.0.0.1.123, Integer , 123
1.3.6.1.2.1.7.5.1.2.127.0.0.1.1900, Integer , 1900
1.3.6.1.2.1.7.5.1.2.192.168.1.9.123, Integer , 123
1.3.6.1.2.1.7.5.1.2.192.168.1.9.137, Integer , 137
1.3.6.1.2.1.7.5.1.2.192.168.1.9.138, Integer , 138
1.3.6.1.2.1.7.5.1.2.192.168.1.9.1900, Integer , 1900
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.161, Integer , 161
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.162, Integer , 162
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.445, Integer , 445
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.500, Integer , 500
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.1488, Integer , 1488
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.1679, Integer , 1679
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.4500, Integer , 4500
1.3.6.1.2.1.7.7.1.3.1.4.127.0.0.1.123, Integer , 123
1.3.6.1.2.1.7.7.1.3.1.4.127.0.0.1.1900, Integer , 1900
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.123, Integer , 123
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.137, Integer , 137
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.138, Integer , 138
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.1900, Integer , 1900
1.3.6.1.2.1.11.1.0 , Counter , 8650
1.3.6.1.2.1.11.2.0 , Counter , 8648
1.3.6.1.2.1.11.3.0 , Counter , 2
1.3.6.1.2.1.11.4.0 , Counter , 0
1.3.6.1.2.1.11.5.0 , Counter , 4
1.3.6.1.2.1.11.6.0 , Counter , 2
1.3.6.1.2.1.11.8.0 , Counter , 0
1.3.6.1.2.1.11.9.0 , Counter , 0
1.3.6.1.2.1.11.10.0 , Counter , 0
1.3.6.1.2.1.11.11.0 , Counter , 0
1.3.6.1.2.1.11.12.0 , Counter , 0
1.3.6.1.2.1.11.13.0 , Counter , 8638
1.3.6.1.2.1.11.14.0 , Counter , 0
1.3.6.1.2.1.11.15.0 , Counter , 0
1.3.6.1.2.1.11.16.0 , Counter , 8657
1.3.6.1.2.1.11.17.0 , Counter , 0
1.3.6.1.2.1.11.18.0 , Counter , 0
1.3.6.1.2.1.11.19.0 , Counter , 0
1.3.6.1.2.1.11.20.0 , Counter , 0
1.3.6.1.2.1.11.21.0 , Counter , 32
1.3.6.1.2.1.11.22.0 , Counter , 0
1.3.6.1.2.1.11.24.0 , Counter , 0
1.3.6.1.2.1.11.25.0 , Counter , 0
1.3.6.1.2.1.11.26.0 , Counter , 0
1.3.6.1.2.1.11.27.0 , Counter , 0
1.3.6.1.2.1.11.28.0 , Counter , 8668
1.3.6.1.2.1.11.29.0 , Counter , 4
1.3.6.1.2.1.11.30.0 , Integer , 1
1.3.6.1.2.1.25.1.1.0 , TimeTicks , 9738140
1.3.6.1.2.1.25.1.2.0 , OctetString , 0x07dd030a10121f07
1.3.6.1.2.1.25.1.3.0 , Integer , 0
1.3.6.1.2.1.25.1.4.0 , OctetString ,
1.3.6.1.2.1.25.1.5.0 , Gauge , 2
1.3.6.1.2.1.25.1.6.0 , Gauge , 34
1.3.6.1.2.1.25.1.7.0 , Integer , 0
1.3.6.1.2.1.25.2.2.0 , Integer , 1014576
1.3.6.1.2.1.25.2.3.1.1.1 , Integer , 1
1.3.6.1.2.1.25.2.3.1.1.2 , Integer , 2
1.3.6.1.2.1.25.2.3.1.1.3 , Integer , 3
1.3.6.1.2.1.25.2.3.1.1.4 , Integer , 4
1.3.6.1.2.1.25.2.3.1.1.5 , Integer , 5
1.3.6.1.2.1.25.2.3.1.2.1 , ObjectID , 1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.2 , ObjectID , 1.3.6.1.2.1.25.2.1.7
1.3.6.1.2.1.25.2.3.1.2.3 , ObjectID , 1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.4 , ObjectID , 1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.5 , ObjectID , 1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.3.1 , OctetString , C:\ Label: Serial Number 1848504c
1.3.6.1.2.1.25.2.3.1.3.2 , OctetString , D:\
1.3.6.1.2.1.25.2.3.1.3.3 , OctetString , Z:\ Label: Serial Number ba85e1bf
1.3.6.1.2.1.25.2.3.1.3.4 , OctetString , Virtual Memory
1.3.6.1.2.1.25.2.3.1.3.5 , OctetString , Physical Memory
1.3.6.1.2.1.25.2.3.1.4.1 , Integer , 16384
1.3.6.1.2.1.25.2.3.1.4.2 , Integer , 0
1.3.6.1.2.1.25.2.3.1.4.3 , Integer , 4096
1.3.6.1.2.1.25.2.3.1.4.4 , Integer , 65536
1.3.6.1.2.1.25.2.3.1.4.5 , Integer , 65536
1.3.6.1.2.1.25.2.3.1.5.1 , Integer , 1952447
1.3.6.1.2.1.25.2.3.1.5.2 , Integer , 0
1.3.6.1.2.1.25.2.3.1.5.3 , Integer , 21304198
1.3.6.1.2.1.25.2.3.1.5.4 , Integer , 20377
1.3.6.1.2.1.25.2.3.1.5.5 , Integer , 15852
1.3.6.1.2.1.25.2.3.1.6.1 , Integer , 1945965
1.3.6.1.2.1.25.2.3.1.6.2 , Integer , 0
1.3.6.1.2.1.25.2.3.1.6.3 , Integer , 20191655
1.3.6.1.2.1.25.2.3.1.6.4 , Integer , 6457
1.3.6.1.2.1.25.2.3.1.6.5 , Integer , 8352
1.3.6.1.2.1.25.2.3.1.7.1 , Counter , 0
1.3.6.1.2.1.25.2.3.1.7.2 , Counter , 0
1.3.6.1.2.1.25.2.3.1.7.3 , Counter , 0
1.3.6.1.2.1.25.2.3.1.7.4 , Counter , 0
1.3.6.1.2.1.25.2.3.1.7.5 , Counter , 0
1.3.6.1.2.1.25.3.2.1.1.1 , Integer , 1
1.3.6.1.2.1.25.3.2.1.1.2 , Integer , 2
1.3.6.1.2.1.25.3.2.1.1.3 , Integer , 3
1.3.6.1.2.1.25.3.2.1.1.4 , Integer , 4
1.3.6.1.2.1.25.3.2.1.1.5 , Integer , 5
1.3.6.1.2.1.25.3.2.1.1.6 , Integer , 6
1.3.6.1.2.1.25.3.2.1.1.7 , Integer , 7
1.3.6.1.2.1.25.3.2.1.1.8 , Integer , 8
1.3.6.1.2.1.25.3.2.1.1.9 , Integer , 9
1.3.6.1.2.1.25.3.2.1.1.10 , Integer , 10
1.3.6.1.2.1.25.3.2.1.1.11 , Integer , 11
1.3.6.1.2.1.25.3.2.1.1.12 , Integer , 12
1.3.6.1.2.1.25.3.2.1.1.13 , Integer , 13
1.3.6.1.2.1.25.3.2.1.2.1 , ObjectID , 1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.2 , ObjectID , 1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.3 , ObjectID , 1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.4 , ObjectID , 1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.5 , ObjectID , 1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.6 , ObjectID , 1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.7 , ObjectID , 1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.8 , ObjectID , 1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.9 , ObjectID , 1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.10 , ObjectID , 1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.11 , ObjectID , 1.3.6.1.2.1.25.3.1.13
1.3.6.1.2.1.25.3.2.1.2.12 , ObjectID , 1.3.6.1.2.1.25.3.1.16
1.3.6.1.2.1.25.3.2.1.2.13 , ObjectID , 1.3.6.1.2.1.25.3.1.15
1.3.6.1.2.1.25.3.2.1.3.1 , OctetString , Microsoft XPS Document Writer
1.3.6.1.2.1.25.3.2.1.3.2 , OctetString , Microsoft Office Document Image Writer Driver
1.3.6.1.2.1.25.3.2.1.3.3 , OctetString , HP Officejet 6500 E710a-f
1.3.6.1.2.1.25.3.2.1.3.4 , OctetString , Fax - HP Officejet 6500 E710a-f
1.3.6.1.2.1.25.3.2.1.3.5 , OctetString , Intel
1.3.6.1.2.1.25.3.2.1.3.6 , OctetString , MS TCP Loopback interface
1.3.6.1.2.1.25.3.2.1.3.7 , OctetString , Intel(R) PRO/Wireless 2200BG Network Connection
1.3.6.1.2.1.25.3.2.1.3.8 , OctetString , Bluetooth Device (Personal Area Network)
1.3.6.1.2.1.25.3.2.1.3.9 , OctetString , D:\
1.3.6.1.2.1.25.3.2.1.3.10 , OctetString , Fixed Disk
1.3.6.1.2.1.25.3.2.1.3.11 , OctetString , IBM enhanced (101- or 102-key) keyboard, Subtype=(0)
1.3.6.1.2.1.25.3.2.1.3.12 , OctetString , 5-Buttons (with wheel)
1.3.6.1.2.1.25.3.2.1.3.13 , OctetString , LPT1:
1.3.6.1.2.1.25.3.2.1.4.1 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.2 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.3 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.4 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.5 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.6 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.7 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.8 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.9 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.10 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.11 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.12 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.4.13 , ObjectID , 0.0
1.3.6.1.2.1.25.3.2.1.5.1 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.2 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.3 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.4 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.5 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.6 , Integer , 1
1.3.6.1.2.1.25.3.2.1.5.7 , Integer , 1
1.3.6.1.2.1.25.3.2.1.5.8 , Integer , 1
1.3.6.1.2.1.25.3.2.1.5.9 , Integer , 1
1.3.6.1.2.1.25.3.2.1.5.10 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.11 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.12 , Integer , 2
1.3.6.1.2.1.25.3.2.1.5.13 , Integer , 1
1.3.6.1.2.1.25.3.2.1.6.1 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.2 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.3 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.4 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.5 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.6 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.7 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.8 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.9 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.10 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.11 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.12 , Counter , 0
1.3.6.1.2.1.25.3.2.1.6.13 , Counter , 0
1.3.6.1.2.1.25.3.3.1.1.5 , ObjectID , 0.0
1.3.6.1.2.1.25.3.3.1.2.5 , Integer , 0
1.3.6.1.2.1.25.3.4.1.1.6 , Integer , 1
1.3.6.1.2.1.25.3.4.1.1.7 , Integer , 65539
1.3.6.1.2.1.25.3.4.1.1.8 , Integer , 65540
1.3.6.1.2.1.25.3.5.1.1.1 , Integer , 1
1.3.6.1.2.1.25.3.5.1.1.2 , Integer , 1
1.3.6.1.2.1.25.3.5.1.1.3 , Integer , 1
1.3.6.1.2.1.25.3.5.1.1.4 , Integer , 1
1.3.6.1.2.1.25.3.5.1.2.1 , OctetString ,
1.3.6.1.2.1.25.3.5.1.2.2 , OctetString ,
1.3.6.1.2.1.25.3.5.1.2.3 , OctetString ,
1.3.6.1.2.1.25.3.5.1.2.4 , OctetString ,
1.3.6.1.2.1.25.3.6.1.1.9 , Integer , 2
1.3.6.1.2.1.25.3.6.1.1.10 , Integer , 1
1.3.6.1.2.1.25.3.6.1.2.9 , Integer , 5
1.3.6.1.2.1.25.3.6.1.2.10 , Integer , 3
1.3.6.1.2.1.25.3.6.1.3.9 , Integer , 1
1.3.6.1.2.1.25.3.6.1.3.10 , Integer , 0
1.3.6.1.2.1.25.3.6.1.4.9 , Integer , 0
1.3.6.1.2.1.25.3.6.1.4.10 , Integer , 3972064
1.3.6.1.2.1.25.3.7.1.1.10.1 , Integer , 1
1.3.6.1.2.1.25.3.7.1.1.10.2 , Integer , 2
1.3.6.1.2.1.25.3.7.1.1.10.3 , Integer , 3
1.3.6.1.2.1.25.3.7.1.2.10.1 , OctetString ,
1.3.6.1.2.1.25.3.7.1.2.10.2 , OctetString ,
1.3.6.1.2.1.25.3.7.1.2.10.3 , OctetString ,
1.3.6.1.2.1.25.3.7.1.3.10.1 , OctetString , 0x01000000
1.3.6.1.2.1.25.3.7.1.3.10.2 , OctetString , 0x02000000
1.3.6.1.2.1.25.3.7.1.3.10.3 , OctetString , 0x03000000
1.3.6.1.2.1.25.3.7.1.4.10.1 , Integer , 1894298
1.3.6.1.2.1.25.3.7.1.4.10.2 , Integer , 1330712
1.3.6.1.2.1.25.3.7.1.4.10.3 , Integer , 747022
1.3.6.1.2.1.25.3.7.1.5.10.1 , Integer , 1
1.3.6.1.2.1.25.3.7.1.5.10.2 , Integer , 3
1.3.6.1.2.1.25.3.7.1.5.10.3 , Integer , 3
1.3.6.1.2.1.25.3.8.1.1.1 , Integer , 1
1.3.6.1.2.1.25.3.8.1.1.2 , Integer , 2
1.3.6.1.2.1.25.3.8.1.1.3 , Integer , 3
1.3.6.1.2.1.25.3.8.1.2.1 , OctetString ,
1.3.6.1.2.1.25.3.8.1.2.2 , OctetString ,
1.3.6.1.2.1.25.3.8.1.2.3 , OctetString ,
1.3.6.1.2.1.25.3.8.1.3.1 , OctetString ,
1.3.6.1.2.1.25.3.8.1.3.2 , OctetString ,
1.3.6.1.2.1.25.3.8.1.3.3 , OctetString ,
1.3.6.1.2.1.25.3.8.1.4.1 , ObjectID , 1.3.6.1.2.1.25.3.9.5
1.3.6.1.2.1.25.3.8.1.4.2 , ObjectID , 1.3.6.1.2.1.25.3.9.5
1.3.6.1.2.1.25.3.8.1.4.3 , ObjectID , 1.3.6.1.2.1.25.3.9.2
1.3.6.1.2.1.25.3.8.1.5.1 , Integer , 1
1.3.6.1.2.1.25.3.8.1.5.2 , Integer , 2
1.3.6.1.2.1.25.3.8.1.5.3 , Integer , 1
1.3.6.1.2.1.25.3.8.1.6.1 , Integer , 0
1.3.6.1.2.1.25.3.8.1.6.2 , Integer , 0
1.3.6.1.2.1.25.3.8.1.6.3 , Integer , 0
1.3.6.1.2.1.25.3.8.1.7.1 , Integer , 1
1.3.6.1.2.1.25.3.8.1.7.2 , Integer , 2
1.3.6.1.2.1.25.3.8.1.7.3 , Integer , 3
1.3.6.1.2.1.25.3.8.1.8.1 , OctetString , 0x0000010100000000
1.3.6.1.2.1.25.3.8.1.8.2 , OctetString , 0x0000010100000000
1.3.6.1.2.1.25.3.8.1.8.3 , OctetString , 0x0000010100000000
1.3.6.1.2.1.25.3.8.1.9.1 , OctetString , 0x0000010100000000
1.3.6.1.2.1.25.3.8.1.9.2 , OctetString , 0x0000010100000000
1.3.6.1.2.1.25.3.8.1.9.3 , OctetString , 0x0000010100000000
1.3.6.1.2.1.25.4.1.0 , Integer , 4
1.3.6.1.2.1.25.4.2.1.1.1 , Integer , 1
1.3.6.1.2.1.25.4.2.1.1.4 , Integer , 4
1.3.6.1.2.1.25.4.2.1.1.384 , Integer , 384
1.3.6.1.2.1.25.4.2.1.1.436 , Integer , 436
1.3.6.1.2.1.25.4.2.1.1.468 , Integer , 468
1.3.6.1.2.1.25.4.2.1.1.596 , Integer , 596
1.3.6.1.2.1.25.4.2.1.1.620 , Integer , 620
1.3.6.1.2.1.25.4.2.1.1.664 , Integer , 664
1.3.6.1.2.1.25.4.2.1.1.676 , Integer , 676
1.3.6.1.2.1.25.4.2.1.1.820 , Integer , 820
1.3.6.1.2.1.25.4.2.1.1.880 , Integer , 880
1.3.6.1.2.1.25.4.2.1.1.936 , Integer , 936
1.3.6.1.2.1.25.4.2.1.1.996 , Integer , 996
1.3.6.1.2.1.25.4.2.1.1.1104 , Integer , 1104
1.3.6.1.2.1.25.4.2.1.1.1132 , Integer , 1132
1.3.6.1.2.1.25.4.2.1.1.1144 , Integer , 1144
1.3.6.1.2.1.25.4.2.1.1.1188 , Integer , 1188
1.3.6.1.2.1.25.4.2.1.1.1304 , Integer , 1304
1.3.6.1.2.1.25.4.2.1.1.1320 , Integer , 1320
1.3.6.1.2.1.25.4.2.1.1.1328 , Integer , 1328
1.3.6.1.2.1.25.4.2.1.1.1396 , Integer , 1396
1.3.6.1.2.1.25.4.2.1.1.1492 , Integer , 1492
1.3.6.1.2.1.25.4.2.1.1.1680 , Integer , 1680
1.3.6.1.2.1.25.4.2.1.1.1692 , Integer , 1692
1.3.6.1.2.1.25.4.2.1.1.1728 , Integer , 1728
1.3.6.1.2.1.25.4.2.1.1.1816 , Integer , 1816
1.3.6.1.2.1.25.4.2.1.1.1856 , Integer , 1856
1.3.6.1.2.1.25.4.2.1.1.1860 , Integer , 1860
1.3.6.1.2.1.25.4.2.1.1.2596 , Integer , 2596
1.3.6.1.2.1.25.4.2.1.1.2720 , Integer , 2720
1.3.6.1.2.1.25.4.2.1.1.2872 , Integer , 2872
1.3.6.1.2.1.25.4.2.1.1.2880 , Integer , 2880
1.3.6.1.2.1.25.4.2.1.1.2980 , Integer , 2980
1.3.6.1.2.1.25.4.2.1.1.3268 , Integer , 3268
1.3.6.1.2.1.25.4.2.1.2.1 , OctetString , System Idle Process
1.3.6.1.2.1.25.4.2.1.2.4 , OctetString , System
1.3.6.1.2.1.25.4.2.1.2.384 , OctetString , SynTPLpr.exe
1.3.6.1.2.1.25.4.2.1.2.436 , OctetString , explorer.exe
1.3.6.1.2.1.25.4.2.1.2.468 , OctetString , smss.exe
1.3.6.1.2.1.25.4.2.1.2.596 , OctetString , csrss.exe
1.3.6.1.2.1.25.4.2.1.2.620 , OctetString , winlogon.exe
1.3.6.1.2.1.25.4.2.1.2.664 , OctetString , services.exe
1.3.6.1.2.1.25.4.2.1.2.676 , OctetString , lsass.exe
1.3.6.1.2.1.25.4.2.1.2.820 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.880 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.936 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.996 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1104 , OctetString , alg.exe
1.3.6.1.2.1.25.4.2.1.2.1132 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1144 , OctetString , SOUNDMAN.EXE
1.3.6.1.2.1.25.4.2.1.2.1188 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1304 , OctetString , igfxtray.exe
1.3.6.1.2.1.25.4.2.1.2.1320 , OctetString , hkcmd.exe
1.3.6.1.2.1.25.4.2.1.2.1328 , OctetString , ctfmon.exe
1.3.6.1.2.1.25.4.2.1.2.1396 , OctetString , spoolsv.exe
1.3.6.1.2.1.25.4.2.1.2.1492 , OctetString , privoxy.exe
1.3.6.1.2.1.25.4.2.1.2.1680 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1692 , OctetString , SynTPEnh.exe
1.3.6.1.2.1.25.4.2.1.2.1728 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1816 , OctetString , MDM.EXE
1.3.6.1.2.1.25.4.2.1.2.1856 , OctetString , wscntfy.exe
1.3.6.1.2.1.25.4.2.1.2.1860 , OctetString , svchost.exe
1.3.6.1.2.1.25.4.2.1.2.2596 , OctetString , snmp.exe
1.3.6.1.2.1.25.4.2.1.2.2720 , OctetString , cmd.exe
1.3.6.1.2.1.25.4.2.1.2.2872 , OctetString , sapwalk.exe
1.3.6.1.2.1.25.4.2.1.2.2880 , OctetString , snmptrap.exe
1.3.6.1.2.1.25.4.2.1.2.2980 , OctetString , firefox.exe
1.3.6.1.2.1.25.4.2.1.2.3268 , OctetString , Far.exe
1.3.6.1.2.1.25.4.2.1.3.1 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.4 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.384 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.436 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.468 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.596 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.620 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.664 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.676 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.820 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.880 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.936 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.996 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1104 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1132 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1144 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1188 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1304 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1320 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1328 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1396 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1492 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1680 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1692 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1728 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1816 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1856 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.1860 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.2596 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.2720 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.2872 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.2880 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.2980 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.3.3268 , ObjectID , 0.0
1.3.6.1.2.1.25.4.2.1.4.1 , OctetString ,
1.3.6.1.2.1.25.4.2.1.4.4 , OctetString ,
1.3.6.1.2.1.25.4.2.1.4.384 , OctetString , C:\Program Files\Synaptics\SynTP\
1.3.6.1.2.1.25.4.2.1.4.436 , OctetString , C:\WINDOWS\
1.3.6.1.2.1.25.4.2.1.4.468 , OctetString , \SystemRoot\System32\
1.3.6.1.2.1.25.4.2.1.4.596 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.620 , OctetString ,
1.3.6.1.2.1.25.4.2.1.4.664 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.676 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.820 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.880 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.936 , OctetString , C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.996 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1104 , OctetString , C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.1132 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1144 , OctetString , C:\WINDOWS\
1.3.6.1.2.1.25.4.2.1.4.1188 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1304 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1320 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1328 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1396 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1492 , OctetString , C:\Program Files\Privoxy\
1.3.6.1.2.1.25.4.2.1.4.1680 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1692 , OctetString , C:\Program Files\Synaptics\SynTP\
1.3.6.1.2.1.25.4.2.1.4.1728 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1816 , OctetString , C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\
1.3.6.1.2.1.25.4.2.1.4.1856 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1860 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.2596 , OctetString , C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.2720 , OctetString , C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.2872 , OctetString , C:\Documents and Settings\ilya\Desktop\
1.3.6.1.2.1.25.4.2.1.4.2880 , OctetString , C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.2980 , OctetString , C:\Program Files\Mozilla Firefox\
1.3.6.1.2.1.25.4.2.1.4.3268 , OctetString , C:\Program Files\Far2\
1.3.6.1.2.1.25.4.2.1.5.1 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.4 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.384 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.436 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.468 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.596 , OctetString , ObjectDirectory=\Windows SharedSection=1024,3072,512 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserS
1.3.6.1.2.1.25.4.2.1.5.620 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.664 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.676 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.820 , OctetString , -k DcomLaunch
1.3.6.1.2.1.25.4.2.1.5.880 , OctetString , -k rpcss
1.3.6.1.2.1.25.4.2.1.5.936 , OctetString , -k netsvcs
1.3.6.1.2.1.25.4.2.1.5.996 , OctetString , -k WudfServiceGroup
1.3.6.1.2.1.25.4.2.1.5.1104 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1132 , OctetString , -k NetworkService
1.3.6.1.2.1.25.4.2.1.5.1144 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1188 , OctetString , -k LocalService
1.3.6.1.2.1.25.4.2.1.5.1304 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1320 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1328 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1396 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1492 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1680 , OctetString , -k LocalService
1.3.6.1.2.1.25.4.2.1.5.1692 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1728 , OctetString , -k bthsvcs
1.3.6.1.2.1.25.4.2.1.5.1816 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1856 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.1860 , OctetString , -k imgsvc
1.3.6.1.2.1.25.4.2.1.5.2596 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.2720 , OctetString , /C ""C:\Documents and Settings\ilya\Desktop\sapwalk.exe" 127.0.0.1 public 1.3 > winxp.sapwalk"
1.3.6.1.2.1.25.4.2.1.5.2872 , OctetString , 127.0.0.1 public 1.3
1.3.6.1.2.1.25.4.2.1.5.2880 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.2980 , OctetString ,
1.3.6.1.2.1.25.4.2.1.5.3268 , OctetString ,
1.3.6.1.2.1.25.4.2.1.6.1 , Integer , 2
1.3.6.1.2.1.25.4.2.1.6.4 , Integer , 2
1.3.6.1.2.1.25.4.2.1.6.384 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.436 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.468 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.596 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.620 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.664 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.676 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.820 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.880 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.936 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.996 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1104 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1132 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1144 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1188 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1304 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1320 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1328 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1396 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1492 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1680 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1692 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1728 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1816 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1856 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.1860 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.2596 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.2720 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.2872 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.2880 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.2980 , Integer , 4
1.3.6.1.2.1.25.4.2.1.6.3268 , Integer , 4
1.3.6.1.2.1.25.4.2.1.7.1 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.4 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.384 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.436 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.468 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.596 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.620 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.664 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.676 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.820 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.880 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.936 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.996 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1104 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1132 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1144 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1188 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1304 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1320 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1328 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1396 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1492 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1680 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1692 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1728 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1816 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1856 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.1860 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.2596 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.2720 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.2872 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.2880 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.2980 , Integer , 1
1.3.6.1.2.1.25.4.2.1.7.3268 , Integer , 1
1.3.6.1.2.1.25.5.1.1.1.1 , Integer , 921193
1.3.6.1.2.1.25.5.1.1.1.4 , Integer , 1162
1.3.6.1.2.1.25.5.1.1.1.384 , Integer , 4
1.3.6.1.2.1.25.5.1.1.1.436 , Integer , 925
1.3.6.1.2.1.25.5.1.1.1.468 , Integer , 7
1.3.6.1.2.1.25.5.1.1.1.596 , Integer , 3298
1.3.6.1.2.1.25.5.1.1.1.620 , Integer , 328
1.3.6.1.2.1.25.5.1.1.1.664 , Integer , 470
1.3.6.1.2.1.25.5.1.1.1.676 , Integer , 159
1.3.6.1.2.1.25.5.1.1.1.820 , Integer , 23
1.3.6.1.2.1.25.5.1.1.1.880 , Integer , 67
1.3.6.1.2.1.25.5.1.1.1.936 , Integer , 943
1.3.6.1.2.1.25.5.1.1.1.996 , Integer , 3
1.3.6.1.2.1.25.5.1.1.1.1104 , Integer , 4
1.3.6.1.2.1.25.5.1.1.1.1132 , Integer , 31
1.3.6.1.2.1.25.5.1.1.1.1144 , Integer , 7
1.3.6.1.2.1.25.5.1.1.1.1188 , Integer , 9
1.3.6.1.2.1.25.5.1.1.1.1304 , Integer , 7
1.3.6.1.2.1.25.5.1.1.1.1320 , Integer , 17
1.3.6.1.2.1.25.5.1.1.1.1328 , Integer , 17
1.3.6.1.2.1.25.5.1.1.1.1396 , Integer , 17
1.3.6.1.2.1.25.5.1.1.1.1492 , Integer , 4
1.3.6.1.2.1.25.5.1.1.1.1680 , Integer , 6
1.3.6.1.2.1.25.5.1.1.1.1692 , Integer , 748
1.3.6.1.2.1.25.5.1.1.1.1728 , Integer , 3
1.3.6.1.2.1.25.5.1.1.1.1816 , Integer , 9
1.3.6.1.2.1.25.5.1.1.1.1856 , Integer , 1
1.3.6.1.2.1.25.5.1.1.1.1860 , Integer , 32
1.3.6.1.2.1.25.5.1.1.1.2596 , Integer , 101
1.3.6.1.2.1.25.5.1.1.1.2720 , Integer , 1
1.3.6.1.2.1.25.5.1.1.1.2872 , Integer , 6
1.3.6.1.2.1.25.5.1.1.1.2880 , Integer , 4
1.3.6.1.2.1.25.5.1.1.1.2980 , Integer , 15023
1.3.6.1.2.1.25.5.1.1.1.3268 , Integer , 278
1.3.6.1.2.1.25.5.1.1.2.1 , Integer , 16
1.3.6.1.2.1.25.5.1.1.2.4 , Integer , 220
1.3.6.1.2.1.25.5.1.1.2.384 , Integer , 2428
1.3.6.1.2.1.25.5.1.1.2.436 , Integer , 24308
1.3.6.1.2.1.25.5.1.1.2.468 , Integer , 412
1.3.6.1.2.1.25.5.1.1.2.596 , Integer , 4156
1.3.6.1.2.1.25.5.1.1.2.620 , Integer , 12368
1.3.6.1.2.1.25.5.1.1.2.664 , Integer , 4932
1.3.6.1.2.1.25.5.1.1.2.676 , Integer , 1112
1.3.6.1.2.1.25.5.1.1.2.820 , Integer , 5108
1.3.6.1.2.1.25.5.1.1.2.880 , Integer , 4420
1.3.6.1.2.1.25.5.1.1.2.936 , Integer , 35956
1.3.6.1.2.1.25.5.1.1.2.996 , Integer , 3340
1.3.6.1.2.1.25.5.1.1.2.1104 , Integer , 3656
1.3.6.1.2.1.25.5.1.1.2.1132 , Integer , 3912
1.3.6.1.2.1.25.5.1.1.2.1144 , Integer , 2700
1.3.6.1.2.1.25.5.1.1.2.1188 , Integer , 3888
1.3.6.1.2.1.25.5.1.1.2.1304 , Integer , 3688
1.3.6.1.2.1.25.5.1.1.2.1320 , Integer , 3884
1.3.6.1.2.1.25.5.1.1.2.1328 , Integer , 3232
1.3.6.1.2.1.25.5.1.1.2.1396 , Integer , 6776
1.3.6.1.2.1.25.5.1.1.2.1492 , Integer , 3612
1.3.6.1.2.1.25.5.1.1.2.1680 , Integer , 3768
1.3.6.1.2.1.25.5.1.1.2.1692 , Integer , 4340
1.3.6.1.2.1.25.5.1.1.2.1728 , Integer , 3296
1.3.6.1.2.1.25.5.1.1.2.1816 , Integer , 3312
1.3.6.1.2.1.25.5.1.1.2.1856 , Integer , 2156
1.3.6.1.2.1.25.5.1.1.2.1860 , Integer , 5740
1.3.6.1.2.1.25.5.1.1.2.2596 , Integer , 4164
1.3.6.1.2.1.25.5.1.1.2.2720 , Integer , 2564
1.3.6.1.2.1.25.5.1.1.2.2872 , Integer , 1796
1.3.6.1.2.1.25.5.1.1.2.2880 , Integer , 2240
1.3.6.1.2.1.25.5.1.1.2.2980 , Integer , 185832
1.3.6.1.2.1.25.5.1.1.2.3268 , Integer , 12736
1.3.6.1.2.1.25.6.1.0 , TimeTicks , 200868
1.3.6.1.2.1.25.6.2.0 , TimeTicks , 200868
1.3.6.1.2.1.25.6.3.1.1.1 , Integer , 1
1.3.6.1.2.1.25.6.3.1.1.2 , Integer , 2
1.3.6.1.2.1.25.6.3.1.1.3 , Integer , 3
1.3.6.1.2.1.25.6.3.1.1.4 , Integer , 4
1.3.6.1.2.1.25.6.3.1.1.5 , Integer , 5
1.3.6.1.2.1.25.6.3.1.1.6 , Integer , 6
1.3.6.1.2.1.25.6.3.1.1.7 , Integer , 7
1.3.6.1.2.1.25.6.3.1.1.8 , Integer , 8
1.3.6.1.2.1.25.6.3.1.1.9 , Integer , 9
1.3.6.1.2.1.25.6.3.1.1.10 , Integer , 10
1.3.6.1.2.1.25.6.3.1.1.11 , Integer , 11
1.3.6.1.2.1.25.6.3.1.1.12 , Integer , 12
1.3.6.1.2.1.25.6.3.1.1.13 , Integer , 13
1.3.6.1.2.1.25.6.3.1.1.14 , Integer , 14
1.3.6.1.2.1.25.6.3.1.1.15 , Integer , 15
1.3.6.1.2.1.25.6.3.1.1.16 , Integer , 16
1.3.6.1.2.1.25.6.3.1.1.17 , Integer , 17
1.3.6.1.2.1.25.6.3.1.1.18 , Integer , 18
1.3.6.1.2.1.25.6.3.1.1.19 , Integer , 19
1.3.6.1.2.1.25.6.3.1.1.20 , Integer , 20
1.3.6.1.2.1.25.6.3.1.1.21 , Integer , 21
1.3.6.1.2.1.25.6.3.1.1.22 , Integer , 22
1.3.6.1.2.1.25.6.3.1.1.23 , Integer , 23
1.3.6.1.2.1.25.6.3.1.1.24 , Integer , 24
1.3.6.1.2.1.25.6.3.1.1.25 , Integer , 25
1.3.6.1.2.1.25.6.3.1.1.26 , Integer , 26
1.3.6.1.2.1.25.6.3.1.1.27 , Integer , 27
1.3.6.1.2.1.25.6.3.1.1.28 , Integer , 28
1.3.6.1.2.1.25.6.3.1.1.29 , Integer , 29
1.3.6.1.2.1.25.6.3.1.1.30 , Integer , 30
1.3.6.1.2.1.25.6.3.1.1.31 , Integer , 31
1.3.6.1.2.1.25.6.3.1.1.32 , Integer , 32
1.3.6.1.2.1.25.6.3.1.1.33 , Integer , 33
1.3.6.1.2.1.25.6.3.1.1.34 , Integer , 34
1.3.6.1.2.1.25.6.3.1.1.35 , Integer , 35
1.3.6.1.2.1.25.6.3.1.1.36 , Integer , 36
1.3.6.1.2.1.25.6.3.1.1.37 , Integer , 37
1.3.6.1.2.1.25.6.3.1.1.38 , Integer , 38
1.3.6.1.2.1.25.6.3.1.1.39 , Integer , 39
1.3.6.1.2.1.25.6.3.1.1.40 , Integer , 40
1.3.6.1.2.1.25.6.3.1.1.41 , Integer , 41
1.3.6.1.2.1.25.6.3.1.1.42 , Integer , 42
1.3.6.1.2.1.25.6.3.1.1.43 , Integer , 43
1.3.6.1.2.1.25.6.3.1.1.44 , Integer , 44
1.3.6.1.2.1.25.6.3.1.1.45 , Integer , 45
1.3.6.1.2.1.25.6.3.1.1.46 , Integer , 46
1.3.6.1.2.1.25.6.3.1.1.47 , Integer , 47
1.3.6.1.2.1.25.6.3.1.1.48 , Integer , 48
1.3.6.1.2.1.25.6.3.1.1.49 , Integer , 49
1.3.6.1.2.1.25.6.3.1.1.50 , Integer , 50
1.3.6.1.2.1.25.6.3.1.1.51 , Integer , 51
1.3.6.1.2.1.25.6.3.1.1.52 , Integer , 52
1.3.6.1.2.1.25.6.3.1.1.53 , Integer , 53
1.3.6.1.2.1.25.6.3.1.1.54 , Integer , 54
1.3.6.1.2.1.25.6.3.1.1.55 , Integer , 55
1.3.6.1.2.1.25.6.3.1.1.56 , Integer , 56
1.3.6.1.2.1.25.6.3.1.1.57 , Integer , 57
1.3.6.1.2.1.25.6.3.1.1.58 , Integer , 58
1.3.6.1.2.1.25.6.3.1.1.59 , Integer , 59
1.3.6.1.2.1.25.6.3.1.1.60 , Integer , 60
1.3.6.1.2.1.25.6.3.1.1.61 , Integer , 61
1.3.6.1.2.1.25.6.3.1.1.62 , Integer , 62
1.3.6.1.2.1.25.6.3.1.1.63 , Integer , 63
1.3.6.1.2.1.25.6.3.1.1.64 , Integer , 64
1.3.6.1.2.1.25.6.3.1.1.65 , Integer , 65
1.3.6.1.2.1.25.6.3.1.1.66 , Integer , 66
1.3.6.1.2.1.25.6.3.1.1.67 , Integer , 67
1.3.6.1.2.1.25.6.3.1.1.68 , Integer , 68
1.3.6.1.2.1.25.6.3.1.1.69 , Integer , 69
1.3.6.1.2.1.25.6.3.1.1.70 , Integer , 70
1.3.6.1.2.1.25.6.3.1.1.71 , Integer , 71
1.3.6.1.2.1.25.6.3.1.1.72 , Integer , 72
1.3.6.1.2.1.25.6.3.1.1.73 , Integer , 73
1.3.6.1.2.1.25.6.3.1.1.74 , Integer , 74
1.3.6.1.2.1.25.6.3.1.1.75 , Integer , 75
1.3.6.1.2.1.25.6.3.1.1.76 , Integer , 76
1.3.6.1.2.1.25.6.3.1.1.77 , Integer , 77
1.3.6.1.2.1.25.6.3.1.1.78 , Integer , 78
1.3.6.1.2.1.25.6.3.1.1.79 , Integer , 79
1.3.6.1.2.1.25.6.3.1.1.80 , Integer , 80
1.3.6.1.2.1.25.6.3.1.1.81 , Integer , 81
1.3.6.1.2.1.25.6.3.1.1.82 , Integer , 82
1.3.6.1.2.1.25.6.3.1.1.83 , Integer , 83
1.3.6.1.2.1.25.6.3.1.1.84 , Integer , 84
1.3.6.1.2.1.25.6.3.1.1.85 , Integer , 85
1.3.6.1.2.1.25.6.3.1.1.86 , Integer , 86
1.3.6.1.2.1.25.6.3.1.1.87 , Integer , 87
1.3.6.1.2.1.25.6.3.1.1.88 , Integer , 88
1.3.6.1.2.1.25.6.3.1.1.89 , Integer , 89
1.3.6.1.2.1.25.6.3.1.1.90 , Integer , 90
1.3.6.1.2.1.25.6.3.1.1.91 , Integer , 91
1.3.6.1.2.1.25.6.3.1.1.92 , Integer , 92
1.3.6.1.2.1.25.6.3.1.1.93 , Integer , 93
1.3.6.1.2.1.25.6.3.1.1.94 , Integer , 94
1.3.6.1.2.1.25.6.3.1.1.95 , Integer , 95
1.3.6.1.2.1.25.6.3.1.1.96 , Integer , 96
1.3.6.1.2.1.25.6.3.1.1.97 , Integer , 97
1.3.6.1.2.1.25.6.3.1.1.98 , Integer , 98
1.3.6.1.2.1.25.6.3.1.1.99 , Integer , 99
1.3.6.1.2.1.25.6.3.1.1.100 , Integer , 100
1.3.6.1.2.1.25.6.3.1.1.101 , Integer , 101
1.3.6.1.2.1.25.6.3.1.1.102 , Integer , 102
1.3.6.1.2.1.25.6.3.1.1.103 , Integer , 103
1.3.6.1.2.1.25.6.3.1.1.104 , Integer , 104
1.3.6.1.2.1.25.6.3.1.1.105 , Integer , 105
1.3.6.1.2.1.25.6.3.1.1.106 , Integer , 106
1.3.6.1.2.1.25.6.3.1.1.107 , Integer , 107
1.3.6.1.2.1.25.6.3.1.1.108 , Integer , 108
1.3.6.1.2.1.25.6.3.1.1.109 , Integer , 109
1.3.6.1.2.1.25.6.3.1.1.110 , Integer , 110
1.3.6.1.2.1.25.6.3.1.1.111 , Integer , 111
1.3.6.1.2.1.25.6.3.1.1.112 , Integer , 112
1.3.6.1.2.1.25.6.3.1.1.113 , Integer , 113
1.3.6.1.2.1.25.6.3.1.1.114 , Integer , 114
1.3.6.1.2.1.25.6.3.1.1.115 , Integer , 115
1.3.6.1.2.1.25.6.3.1.1.116 , Integer , 116
1.3.6.1.2.1.25.6.3.1.1.117 , Integer , 117
1.3.6.1.2.1.25.6.3.1.1.118 , Integer , 118
1.3.6.1.2.1.25.6.3.1.1.119 , Integer , 119
1.3.6.1.2.1.25.6.3.1.1.120 , Integer , 120
1.3.6.1.2.1.25.6.3.1.1.121 , Integer , 121
1.3.6.1.2.1.25.6.3.1.1.122 , Integer , 122
1.3.6.1.2.1.25.6.3.1.1.123 , Integer , 123
1.3.6.1.2.1.25.6.3.1.1.124 , Integer , 124
1.3.6.1.2.1.25.6.3.1.1.125 , Integer , 125
1.3.6.1.2.1.25.6.3.1.1.126 , Integer , 126
1.3.6.1.2.1.25.6.3.1.1.127 , Integer , 127
1.3.6.1.2.1.25.6.3.1.1.128 , Integer , 128
1.3.6.1.2.1.25.6.3.1.1.129 , Integer , 129
1.3.6.1.2.1.25.6.3.1.1.130 , Integer , 130
1.3.6.1.2.1.25.6.3.1.1.131 , Integer , 131
1.3.6.1.2.1.25.6.3.1.1.132 , Integer , 132
1.3.6.1.2.1.25.6.3.1.1.133 , Integer , 133
1.3.6.1.2.1.25.6.3.1.1.134 , Integer , 134
1.3.6.1.2.1.25.6.3.1.1.135 , Integer , 135
1.3.6.1.2.1.25.6.3.1.1.136 , Integer , 136
1.3.6.1.2.1.25.6.3.1.1.137 , Integer , 137
1.3.6.1.2.1.25.6.3.1.1.138 , Integer , 138
1.3.6.1.2.1.25.6.3.1.1.139 , Integer , 139
1.3.6.1.2.1.25.6.3.1.1.140 , Integer , 140
1.3.6.1.2.1.25.6.3.1.1.141 , Integer , 141
1.3.6.1.2.1.25.6.3.1.1.142 , Integer , 142
1.3.6.1.2.1.25.6.3.1.1.143 , Integer , 143
1.3.6.1.2.1.25.6.3.1.1.144 , Integer , 144
1.3.6.1.2.1.25.6.3.1.1.145 , Integer , 145
1.3.6.1.2.1.25.6.3.1.1.146 , Integer , 146
1.3.6.1.2.1.25.6.3.1.1.147 , Integer , 147
1.3.6.1.2.1.25.6.3.1.1.148 , Integer , 148
1.3.6.1.2.1.25.6.3.1.1.149 , Integer , 149
1.3.6.1.2.1.25.6.3.1.1.150 , Integer , 150
1.3.6.1.2.1.25.6.3.1.1.151 , Integer , 151
1.3.6.1.2.1.25.6.3.1.1.152 , Integer , 152
1.3.6.1.2.1.25.6.3.1.1.153 , Integer , 153
1.3.6.1.2.1.25.6.3.1.1.154 , Integer , 154
1.3.6.1.2.1.25.6.3.1.1.155 , Integer , 155
1.3.6.1.2.1.25.6.3.1.1.156 , Integer , 156
1.3.6.1.2.1.25.6.3.1.2.1 , OctetString , 0x57696e646f777320447269766572205061636b616765202d204e6f6b696120706363736d63666420934c65676163794472697665729420202830352f33312f32
1.3.6.1.2.1.25.6.3.1.2.2 , OctetString , 7-Zip 9.20
1.3.6.1.2.1.25.6.3.1.2.3 , OctetString , Adobe AIR
1.3.6.1.2.1.25.6.3.1.2.4 , OctetString , Adobe Flash Player 11 Plugin
1.3.6.1.2.1.25.6.3.1.2.5 , OctetString , CCleaner
1.3.6.1.2.1.25.6.3.1.2.6 , OctetString , SoftV92 Data Fax Modem with SmartCP
1.3.6.1.2.1.25.6.3.1.2.7 , OctetString , Acrobat.com
1.3.6.1.2.1.25.6.3.1.2.8 , OctetString , Ext2Fsd 0.46
1.3.6.1.2.1.25.6.3.1.2.9 , OctetString , Windows Internet Explorer 8
1.3.6.1.2.1.25.6.3.1.2.10 , OctetString , Update for Windows XP (KB2492386)
1.3.6.1.2.1.25.6.3.1.2.11 , OctetString , Security Update for Windows Internet Explorer 8 (KB2497640)
1.3.6.1.2.1.25.6.3.1.2.12 , OctetString , Security Update for Windows Internet Explorer 8 (KB2510531)
1.3.6.1.2.1.25.6.3.1.2.13 , OctetString , Security Update for Windows Internet Explorer 8 (KB2544521)
1.3.6.1.2.1.25.6.3.1.2.14 , OctetString , Security Update for Windows Internet Explorer 8 (KB2586448)
1.3.6.1.2.1.25.6.3.1.2.15 , OctetString , Update for Windows Internet Explorer 8 (KB2598845)
1.3.6.1.2.1.25.6.3.1.2.16 , OctetString , Security Update for Windows Internet Explorer 8 (KB2618444)
1.3.6.1.2.1.25.6.3.1.2.17 , OctetString , Security Update for Windows XP (KB2621440)
1.3.6.1.2.1.25.6.3.1.2.18 , OctetString , Update for Windows Internet Explorer 8 (KB2632503)
1.3.6.1.2.1.25.6.3.1.2.19 , OctetString , Security Update for Windows XP (KB2641653)
1.3.6.1.2.1.25.6.3.1.2.20 , OctetString , Security Update for Windows Internet Explorer 8 (KB2647516)
1.3.6.1.2.1.25.6.3.1.2.21 , OctetString , Security Update for Windows XP (KB2647518)
1.3.6.1.2.1.25.6.3.1.2.22 , OctetString , Security Update for Windows XP (KB2653956)
1.3.6.1.2.1.25.6.3.1.2.23 , OctetString , Security Update for Windows XP (KB2655992)
1.3.6.1.2.1.25.6.3.1.2.24 , OctetString , Security Update for Windows XP (KB2659262)
1.3.6.1.2.1.25.6.3.1.2.25 , OctetString , Security Update for Windows XP (KB2660465)
1.3.6.1.2.1.25.6.3.1.2.26 , OctetString , Update for Windows XP (KB2661254-v2)
1.3.6.1.2.1.25.6.3.1.2.27 , OctetString , Security Update for Windows XP (KB2661637)
1.3.6.1.2.1.25.6.3.1.2.28 , OctetString , Security Update for Windows Internet Explorer 8 (KB2675157)
1.3.6.1.2.1.25.6.3.1.2.29 , OctetString , Security Update for Windows XP (KB2676562)
1.3.6.1.2.1.25.6.3.1.2.30 , OctetString , Security Update for Windows XP (KB2686509)
1.3.6.1.2.1.25.6.3.1.2.31 , OctetString , Security Update for Windows XP (KB2691442)
1.3.6.1.2.1.25.6.3.1.2.32 , OctetString , Security Update for Windows XP (KB2695962)
1.3.6.1.2.1.25.6.3.1.2.33 , OctetString , Security Update for Windows XP (KB2698365)
1.3.6.1.2.1.25.6.3.1.2.34 , OctetString , Security Update for Windows XP (KB2705219)
1.3.6.1.2.1.25.6.3.1.2.35 , OctetString , Security Update for Windows XP (KB2707511)
1.3.6.1.2.1.25.6.3.1.2.36 , OctetString , Security Update for Windows XP (KB2712808)
1.3.6.1.2.1.25.6.3.1.2.37 , OctetString , Update for Windows XP (KB2718704)
1.3.6.1.2.1.25.6.3.1.2.38 , OctetString , Security Update for Windows XP (KB2719985)
1.3.6.1.2.1.25.6.3.1.2.39 , OctetString , Security Update for Windows Internet Explorer 8 (KB2722913)
1.3.6.1.2.1.25.6.3.1.2.40 , OctetString , Security Update for Windows XP (KB2723135)
1.3.6.1.2.1.25.6.3.1.2.41 , OctetString , Security Update for Windows XP (KB2724197)
1.3.6.1.2.1.25.6.3.1.2.42 , OctetString , Security Update for Windows XP (KB2727528)
1.3.6.1.2.1.25.6.3.1.2.43 , OctetString , Security Update for Windows XP (KB2731847)
1.3.6.1.2.1.25.6.3.1.2.44 , OctetString , Update for Windows XP (KB2736233)
1.3.6.1.2.1.25.6.3.1.2.45 , OctetString , Security Update for Windows Internet Explorer 8 (KB2744842)
1.3.6.1.2.1.25.6.3.1.2.46 , OctetString , Update for Windows XP (KB2749655)
1.3.6.1.2.1.25.6.3.1.2.47 , OctetString , Security Update for Windows XP (KB2753842)
1.3.6.1.2.1.25.6.3.1.2.48 , OctetString , Security Update for Windows XP (KB2753842-v2)
1.3.6.1.2.1.25.6.3.1.2.49 , OctetString , Hotfix for Windows XP (KB2756822)
1.3.6.1.2.1.25.6.3.1.2.50 , OctetString , Security Update for Windows XP (KB2757638)
1.3.6.1.2.1.25.6.3.1.2.51 , OctetString , Security Update for Windows XP (KB2758857)
1.3.6.1.2.1.25.6.3.1.2.52 , OctetString , Security Update for Windows XP (KB2761226)
1.3.6.1.2.1.25.6.3.1.2.53 , OctetString , Security Update for Windows Internet Explorer 8 (KB2761465)
1.3.6.1.2.1.25.6.3.1.2.54 , OctetString , Security Update for Windows XP (KB2770660)
1.3.6.1.2.1.25.6.3.1.2.55 , OctetString , Security Update for Windows XP (KB2778344)
1.3.6.1.2.1.25.6.3.1.2.56 , OctetString , Security Update for Windows XP (KB2779030)
1.3.6.1.2.1.25.6.3.1.2.57 , OctetString , Hotfix for Windows XP (KB2779562)
1.3.6.1.2.1.25.6.3.1.2.58 , OctetString , Security Update for Windows XP (KB2780091)
1.3.6.1.2.1.25.6.3.1.2.59 , OctetString , Security Update for Windows Internet Explorer 8 (KB2792100)
1.3.6.1.2.1.25.6.3.1.2.60 , OctetString , Security Update for Windows Internet Explorer 8 (KB2797052)
1.3.6.1.2.1.25.6.3.1.2.61 , OctetString , Security Update for Windows Internet Explorer 8 (KB2799329)
1.3.6.1.2.1.25.6.3.1.2.62 , OctetString , Security Update for Windows XP (KB2799494)
1.3.6.1.2.1.25.6.3.1.2.63 , OctetString , Security Update for Windows XP (KB2802968)
1.3.6.1.2.1.25.6.3.1.2.64 , OctetString , Windows Genuine Advantage Validation Tool (KB892130)
1.3.6.1.2.1.25.6.3.1.2.65 , OctetString , Microsoft Base Smart Card Cryptographic Service Provider Package
1.3.6.1.2.1.25.6.3.1.2.66 , OctetString , Security Update for Windows XP (KB923789)
1.3.6.1.2.1.25.6.3.1.2.67 , OctetString , Hotfix for Windows Media Format 11 SDK (KB929399)
1.3.6.1.2.1.25.6.3.1.2.68 , OctetString , Security Update for Windows XP (KB941569)
1.3.6.1.2.1.25.6.3.1.2.69 , OctetString , Hotfix for Windows XP (KB954550-v5)
1.3.6.1.2.1.25.6.3.1.2.70 , OctetString , Security Update for Windows Internet Explorer 8 (KB978207)
1.3.6.1.2.1.25.6.3.1.2.71 , OctetString , Update for Windows Internet Explorer 8 (KB980302)
1.3.6.1.2.1.25.6.3.1.2.72 , OctetString , Microsoft .NET Framework 1.1 Security Update (KB2698023)
1.3.6.1.2.1.25.6.3.1.2.73 , OctetString , Microsoft .NET Framework 1.1 Security Update (KB2742597)
1.3.6.1.2.1.25.6.3.1.2.74 , OctetString , Microsoft .NET Framework 1.1
1.3.6.1.2.1.25.6.3.1.2.75 , OctetString , Microsoft .NET Framework 3.5 SP1
1.3.6.1.2.1.25.6.3.1.2.76 , OctetString , Microsoft .NET Framework 4 Client Profile
1.3.6.1.2.1.25.6.3.1.2.77 , OctetString , Mozilla Firefox 19.0.2 (x86 ru)
1.3.6.1.2.1.25.6.3.1.2.78 , OctetString , Mozilla Thunderbird 9.0.1 (x86 ru)
1.3.6.1.2.1.25.6.3.1.2.79 , OctetString , Mozilla Maintenance Service
1.3.6.1.2.1.25.6.3.1.2.80 , OctetString , Naviextras Toolbox
1.3.6.1.2.1.25.6.3.1.2.81 , OctetString , Nokia Suite
1.3.6.1.2.1.25.6.3.1.2.82 , OctetString , Privoxy (remove only)
1.3.6.1.2.1.25.6.3.1.2.83 , OctetString , PuTTY version 0.60
1.3.6.1.2.1.25.6.3.1.2.84 , OctetString , Python 2.7 py2exe-0.6.9
1.3.6.1.2.1.25.6.3.1.2.85 , OctetString , Python 2.7 setuptools-0.6c11
1.3.6.1.2.1.25.6.3.1.2.86 , OctetString , SMPlayer 0.6.10
1.3.6.1.2.1.25.6.3.1.2.87 , OctetString , Synaptics Pointing Device Driver
1.3.6.1.2.1.25.6.3.1.2.88 , OctetString , 0xb5546f7272656e74
1.3.6.1.2.1.25.6.3.1.2.89 , OctetString , Microsoft Kernel-Mode Driver Framework Feature Pack 1.9
1.3.6.1.2.1.25.6.3.1.2.90 , OctetString , Windows Genuine Advantage Validation Tool (KB892130)
1.3.6.1.2.1.25.6.3.1.2.91 , OctetString , Windows Genuine Advantage Notifications (KB905474)
1.3.6.1.2.1.25.6.3.1.2.92 , OctetString , Windows Media Format 11 runtime
1.3.6.1.2.1.25.6.3.1.2.93 , OctetString , Windows XP Service Pack 3
1.3.6.1.2.1.25.6.3.1.2.94 , OctetString , GIMP 2.6.11
1.3.6.1.2.1.25.6.3.1.2.95 , OctetString , WinRAR archiver
1.3.6.1.2.1.25.6.3.1.2.96 , OctetString , Windows Media Format 11 runtime
1.3.6.1.2.1.25.6.3.1.2.97 , OctetString , Microsoft User-Mode Driver Framework Feature Pack 1.0
1.3.6.1.2.1.25.6.3.1.2.98 , OctetString , Adobe AIR
1.3.6.1.2.1.25.6.3.1.2.99 , OctetString , HP Officejet 6500 E710a-f Help
1.3.6.1.2.1.25.6.3.1.2.100 , OctetString , WebFldrs XP
1.3.6.1.2.1.25.6.3.1.2.101 , OctetString , Microsoft .NET Framework 4 Client Profile
1.3.6.1.2.1.25.6.3.1.2.102 , OctetString , Update for Microsoft .NET Framework 4 Client Profile (KB2468871)
1.3.6.1.2.1.25.6.3.1.2.103 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.104 , OctetString , Update for Microsoft .NET Framework 4 Client Profile (KB2533523)
1.3.6.1.2.1.25.6.3.1.2.105 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.106 , OctetString , Update for Microsoft .NET Framework 4 Client Profile (KB2600217)
1.3.6.1.2.1.25.6.3.1.2.107 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.108 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.109 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.110 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.111 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.112 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.113 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.114 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.115 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.116 , OctetString , Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.117 , OctetString , Python 2.7 pycrypto-2.3
1.3.6.1.2.1.25.6.3.1.2.118 , OctetString , Naviextras Toolbox Prerequesities
1.3.6.1.2.1.25.6.3.1.2.119 , OctetString , HP Officejet 6500 E710a-f Basic Device Software
1.3.6.1.2.1.25.6.3.1.2.120 , OctetString , PC Connectivity Solution
1.3.6.1.2.1.25.6.3.1.2.121 , OctetString , MSVC80_x86_v2
1.3.6.1.2.1.25.6.3.1.2.122 , OctetString , Nokia Connectivity Cable Driver
1.3.6.1.2.1.25.6.3.1.2.123 , OctetString , Acrobat.com
1.3.6.1.2.1.25.6.3.1.2.124 , OctetString , Python 2.4
1.3.6.1.2.1.25.6.3.1.2.125 , OctetString , Falk Navi-Manager
1.3.6.1.2.1.25.6.3.1.2.126 , OctetString , MSXML 4.0 SP2 (KB954430)
1.3.6.1.2.1.25.6.3.1.2.127 , OctetString , Intel(R) Extreme Graphics 2 Driver
1.3.6.1.2.1.25.6.3.1.2.128 , OctetString , TomTom HOME Visual Studio Merge Modules
1.3.6.1.2.1.25.6.3.1.2.129 , OctetString , 0x4d6963726f736f6674204f6666696365202d20eff0eef4e5f1f1e8eeede0ebfcedfbe920e2fbeff3f1ea20e2e5f0f1e8e82032303033
1.3.6.1.2.1.25.6.3.1.2.130 , OctetString , Microsoft Office Access database engine 2007 (English)
1.3.6.1.2.1.25.6.3.1.2.131 , OctetString , TomTom HOME
1.3.6.1.2.1.25.6.3.1.2.132 , OctetString , Falk Navi-Manager
1.3.6.1.2.1.25.6.3.1.2.133 , OctetString , REALTEK Gigabit and Fast Ethernet NIC Driver
1.3.6.1.2.1.25.6.3.1.2.134 , OctetString , Python 2.6.1
1.3.6.1.2.1.25.6.3.1.2.135 , OctetString , RealSpeak Solo for UK English Emily
1.3.6.1.2.1.25.6.3.1.2.136 , OctetString , Microsoft .NET Framework 3.0 Service Pack 2
1.3.6.1.2.1.25.6.3.1.2.137 , OctetString , Adobe Reader 9
1.3.6.1.2.1.25.6.3.1.2.138 , OctetString , MSVC90_x86
1.3.6.1.2.1.25.6.3.1.2.139 , OctetString , Far Manager 2
1.3.6.1.2.1.25.6.3.1.2.140 , OctetString , Microsoft .NET Framework 2.0 Service Pack 2
1.3.6.1.2.1.25.6.3.1.2.141 , OctetString , Python 2.7.3
1.3.6.1.2.1.25.6.3.1.2.142 , OctetString , Microsoft AutoRoute 2007
1.3.6.1.2.1.25.6.3.1.2.143 , OctetString , Microsoft MapPoint Europe 2009
1.3.6.1.2.1.25.6.3.1.2.144 , OctetString , Microsoft .NET Framework 1.1
1.3.6.1.2.1.25.6.3.1.2.145 , OctetString , Microsoft .NET Framework 3.5 SP1
1.3.6.1.2.1.25.6.3.1.2.146 , OctetString , Security Update for Microsoft .NET Framework 3.5 SP1 (KB2604111)
1.3.6.1.2.1.25.6.3.1.2.147 , OctetString , Security Update for Microsoft .NET Framework 3.5 SP1 (KB2657424)
1.3.6.1.2.1.25.6.3.1.2.148 , OctetString , Security Update for Microsoft .NET Framework 3.5 SP1 (KB2736416)
1.3.6.1.2.1.25.6.3.1.2.149 , OctetString , Hotfix for Microsoft .NET Framework 3.5 SP1 (KB953595)
1.3.6.1.2.1.25.6.3.1.2.150 , OctetString , Hotfix for Microsoft .NET Framework 3.5 SP1 (KB958484)
1.3.6.1.2.1.25.6.3.1.2.151 , OctetString , Update for Microsoft .NET Framework 3.5 SP1 (KB963707)
1.3.6.1.2.1.25.6.3.1.2.152 , OctetString , Nokia Suite
1.3.6.1.2.1.25.6.3.1.2.153 , OctetString , Microsoft_VC100_CRT_SP1_x86
1.3.6.1.2.1.25.6.3.1.2.154 , OctetString , PL-2303 USB-to-Serial
1.3.6.1.2.1.25.6.3.1.2.155 , OctetString , MSXML 4.0 SP2 (KB973688)
1.3.6.1.2.1.25.6.3.1.2.156 , OctetString , Realtek AC'97 Audio
1.3.6.1.2.1.25.6.3.1.3.1 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.2 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.3 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.4 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.5 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.6 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.7 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.8 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.9 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.10 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.11 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.12 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.13 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.14 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.15 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.16 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.17 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.18 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.19 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.20 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.21 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.22 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.23 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.24 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.25 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.26 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.27 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.28 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.29 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.30 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.31 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.32 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.33 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.34 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.35 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.36 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.37 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.38 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.39 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.40 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.41 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.42 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.43 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.44 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.45 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.46 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.47 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.48 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.49 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.50 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.51 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.52 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.53 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.54 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.55 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.56 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.57 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.58 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.59 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.60 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.61 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.62 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.63 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.64 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.65 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.66 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.67 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.68 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.69 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.70 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.71 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.72 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.73 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.74 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.75 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.76 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.77 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.78 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.79 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.80 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.81 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.82 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.83 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.84 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.85 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.86 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.87 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.88 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.89 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.90 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.91 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.92 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.93 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.94 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.95 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.96 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.97 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.98 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.99 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.100 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.101 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.102 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.103 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.104 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.105 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.106 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.107 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.108 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.109 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.110 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.111 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.112 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.113 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.114 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.115 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.116 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.117 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.118 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.119 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.120 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.121 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.122 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.123 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.124 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.125 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.126 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.127 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.128 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.129 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.130 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.131 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.132 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.133 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.134 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.135 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.136 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.137 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.138 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.139 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.140 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.141 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.142 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.143 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.144 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.145 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.146 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.147 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.148 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.149 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.150 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.151 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.152 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.153 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.154 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.155 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.3.156 , ObjectID , 0.0
1.3.6.1.2.1.25.6.3.1.4.1 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.2 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.3 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.4 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.5 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.6 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.7 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.8 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.9 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.10 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.11 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.12 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.13 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.14 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.15 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.16 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.17 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.18 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.19 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.20 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.21 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.22 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.23 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.24 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.25 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.26 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.27 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.28 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.29 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.30 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.31 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.32 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.33 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.34 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.35 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.36 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.37 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.38 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.39 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.40 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.41 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.42 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.43 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.44 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.45 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.46 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.47 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.48 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.49 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.50 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.51 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.52 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.53 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.54 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.55 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.56 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.57 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.58 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.59 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.60 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.61 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.62 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.63 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.64 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.65 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.66 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.67 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.68 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.69 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.70 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.71 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.72 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.73 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.74 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.75 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.76 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.77 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.78 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.79 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.80 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.81 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.82 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.83 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.84 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.85 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.86 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.87 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.88 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.89 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.90 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.91 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.92 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.93 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.94 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.95 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.96 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.97 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.98 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.99 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.100 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.101 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.102 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.103 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.104 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.105 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.106 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.107 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.108 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.109 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.110 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.111 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.112 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.113 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.114 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.115 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.116 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.117 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.118 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.119 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.120 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.121 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.122 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.123 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.124 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.125 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.126 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.127 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.128 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.129 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.130 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.131 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.132 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.133 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.134 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.135 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.136 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.137 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.138 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.139 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.140 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.141 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.142 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.143 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.144 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.145 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.146 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.147 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.148 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.149 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.150 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.151 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.152 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.153 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.154 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.155 , Integer , 4
1.3.6.1.2.1.25.6.3.1.4.156 , Integer , 4
1.3.6.1.2.1.25.6.3.1.5.1 , OctetString , 0x07dd011a01091c00
1.3.6.1.2.1.25.6.3.1.5.2 , OctetString , 0x07dc011900081200
1.3.6.1.2.1.25.6.3.1.5.3 , OctetString , 0x07d9020117373a00
1.3.6.1.2.1.25.6.3.1.5.4 , OctetString , 0x07dd03060f023600
1.3.6.1.2.1.25.6.3.1.5.5 , OctetString , 0x07dc0118161f2200
1.3.6.1.2.1.25.6.3.1.5.6 , OctetString , 0x07d80c0b0f0d2800
1.3.6.1.2.1.25.6.3.1.5.7 , OctetString , 0x07d9020117380e00
1.3.6.1.2.1.25.6.3.1.5.8 , OctetString , 0x07d90201160c1600
1.3.6.1.2.1.25.6.3.1.5.9 , OctetString , 0x07da031b0a133600
1.3.6.1.2.1.25.6.3.1.5.10 , OctetString , 0x07dc020517311600
1.3.6.1.2.1.25.6.3.1.5.11 , OctetString , 0x07db060702110c00
1.3.6.1.2.1.25.6.3.1.5.12 , OctetString , 0x07db060702133200
1.3.6.1.2.1.25.6.3.1.5.13 , OctetString , 0x07db0a1b002f1400
1.3.6.1.2.1.25.6.3.1.5.14 , OctetString , 0x07db0a1b00300800
1.3.6.1.2.1.25.6.3.1.5.15 , OctetString , 0x07dc020517311c00
1.3.6.1.2.1.25.6.3.1.5.16 , OctetString , 0x07dc0118161d2000
1.3.6.1.2.1.25.6.3.1.5.17 , OctetString , 0x07dc0312143a3600
1.3.6.1.2.1.25.6.3.1.5.18 , OctetString , 0x07dc020517312400
1.3.6.1.2.1.25.6.3.1.5.19 , OctetString , 0x07dc031215011200
1.3.6.1.2.1.25.6.3.1.5.20 , OctetString , 0x07dc021316002600
1.3.6.1.2.1.25.6.3.1.5.21 , OctetString , 0x07dc0312143a3000
1.3.6.1.2.1.25.6.3.1.5.22 , OctetString , 0x07dc050d0f392400
1.3.6.1.2.1.25.6.3.1.5.23 , OctetString , 0x07dc081211083000
1.3.6.1.2.1.25.6.3.1.5.24 , OctetString , 0x07dc051017182e00
1.3.6.1.2.1.25.6.3.1.5.25 , OctetString , 0x07dc021316002c00
1.3.6.1.2.1.25.6.3.1.5.26 , OctetString , 0x07dc0a0f01000400
1.3.6.1.2.1.25.6.3.1.5.27 , OctetString , 0x07dc021316001200
1.3.6.1.2.1.25.6.3.1.5.28 , OctetString , 0x07dc050d10000400
1.3.6.1.2.1.25.6.3.1.5.29 , OctetString , 0x07dc08120a073000
1.3.6.1.2.1.25.6.3.1.5.30 , OctetString , 0x07dc0510170e2600
1.3.6.1.2.1.25.6.3.1.5.31 , OctetString , 0x07dc0812110d1a00
1.3.6.1.2.1.25.6.3.1.5.32 , OctetString , 0x07dc0510170e1c00
1.3.6.1.2.1.25.6.3.1.5.33 , OctetString , 0x07dc081211041400
1.3.6.1.2.1.25.6.3.1.5.34 , OctetString , 0x07dc081211050a00
1.3.6.1.2.1.25.6.3.1.5.35 , OctetString , 0x07dc0812110f2e00
1.3.6.1.2.1.25.6.3.1.5.36 , OctetString , 0x07dc0812110f3400
1.3.6.1.2.1.25.6.3.1.5.37 , OctetString , 0x07dc081211043800
1.3.6.1.2.1.25.6.3.1.5.38 , OctetString , 0x07dc081211050200
1.3.6.1.2.1.25.6.3.1.5.39 , OctetString , 0x07dc081211032200
1.3.6.1.2.1.25.6.3.1.5.40 , OctetString , 0x07dc081211042400
1.3.6.1.2.1.25.6.3.1.5.41 , OctetString , 0x07dc0a0f003b3a00
1.3.6.1.2.1.25.6.3.1.5.42 , OctetString , 0x07dc0b180d363200
1.3.6.1.2.1.25.6.3.1.5.43 , OctetString , 0x07dc0812110f2200
1.3.6.1.2.1.25.6.3.1.5.44 , OctetString , 0x07dc0a0f003b1400
1.3.6.1.2.1.25.6.3.1.5.45 , OctetString , 0x07dc0a0f003b2c00
1.3.6.1.2.1.25.6.3.1.5.46 , OctetString , 0x07dc0a0f003b3200
1.3.6.1.2.1.25.6.3.1.5.47 , OctetString , 0x07dc0c1013320a00
1.3.6.1.2.1.25.6.3.1.5.48 , OctetString , 0x07dd0104101f3600
1.3.6.1.2.1.25.6.3.1.5.49 , OctetString , 0x07dc0a0f01000800
1.3.6.1.2.1.25.6.3.1.5.50 , OctetString , 0x07dd011816033800
1.3.6.1.2.1.25.6.3.1.5.51 , OctetString , 0x07dc0c1013321200
1.3.6.1.2.1.25.6.3.1.5.52 , OctetString , 0x07dc0b180d362000
1.3.6.1.2.1.25.6.3.1.5.53 , OctetString , 0x07dc0c1013323600
1.3.6.1.2.1.25.6.3.1.5.54 , OctetString , 0x07dc0c1013321c00
1.3.6.1.2.1.25.6.3.1.5.55 , OctetString , 0x07dd0219102b1800
1.3.6.1.2.1.25.6.3.1.5.56 , OctetString , 0x07dc0c1013321800
1.3.6.1.2.1.25.6.3.1.5.57 , OctetString , 0x07dc0c1013323a00
1.3.6.1.2.1.25.6.3.1.5.58 , OctetString , 0x07dd0219102b0200
1.3.6.1.2.1.25.6.3.1.5.59 , OctetString , 0x07dd0219102a3600
1.3.6.1.2.1.25.6.3.1.5.60 , OctetString , 0x07dd0219102b1e00
1.3.6.1.2.1.25.6.3.1.5.61 , OctetString , 0x07dd0118160b0e00
1.3.6.1.2.1.25.6.3.1.5.62 , OctetString , 0x07dd0219102b1200
1.3.6.1.2.1.25.6.3.1.5.63 , OctetString , 0x07dd0219102b0600
1.3.6.1.2.1.25.6.3.1.5.64 , OctetString , 0x07d80c0b0f113000
1.3.6.1.2.1.25.6.3.1.5.65 , OctetString , 0x07d9040900040e00
1.3.6.1.2.1.25.6.3.1.5.66 , OctetString , 0x07d80c0b10131a00
1.3.6.1.2.1.25.6.3.1.5.67 , OctetString , 0x07dd021613320000
1.3.6.1.2.1.25.6.3.1.5.68 , OctetString , 0x07dd021613333400
1.3.6.1.2.1.25.6.3.1.5.69 , OctetString , 0x07d9040817383400
1.3.6.1.2.1.25.6.3.1.5.70 , OctetString , 0x07da031b0a141200
1.3.6.1.2.1.25.6.3.1.5.71 , OctetString , 0x07da031b0a141a00
1.3.6.1.2.1.25.6.3.1.5.72 , OctetString , 0x07dc0b180d3a1800
1.3.6.1.2.1.25.6.3.1.5.73 , OctetString , 0x07dd011816030000
1.3.6.1.2.1.25.6.3.1.5.74 , OctetString , 0x07d80c0b102f1c00
1.3.6.1.2.1.25.6.3.1.5.75 , OctetString , 0x07d90408173a1400
1.3.6.1.2.1.25.6.3.1.5.76 , OctetString , 0x07dc021416131c00
1.3.6.1.2.1.25.6.3.1.5.77 , OctetString , 0x07dd030a0e0d2400
1.3.6.1.2.1.25.6.3.1.5.78 , OctetString , 0x07dc0118172c2000
1.3.6.1.2.1.25.6.3.1.5.79 , OctetString , 0x07dd030a0e0d2600
1.3.6.1.2.1.25.6.3.1.5.80 , OctetString , 0x07dc041800102200
1.3.6.1.2.1.25.6.3.1.5.81 , OctetString , 0x07dd011a010b1400
1.3.6.1.2.1.25.6.3.1.5.82 , OctetString , 0x07d80c0b12061e00
1.3.6.1.2.1.25.6.3.1.5.83 , OctetString , 0x07d80c0b12051800
1.3.6.1.2.1.25.6.3.1.5.84 , OctetString , 0x07dc0a0e16353000
1.3.6.1.2.1.25.6.3.1.5.85 , OctetString , 0x07dc0a0e16360000
1.3.6.1.2.1.25.6.3.1.5.86 , OctetString , 0x07dc0118161e1c00
1.3.6.1.2.1.25.6.3.1.5.87 , OctetString , 0x07d80c0b0f053a00
1.3.6.1.2.1.25.6.3.1.5.88 , OctetString , 0x07dc020414292a00
1.3.6.1.2.1.25.6.3.1.5.89 , OctetString , 0x07dd011a010c3200
1.3.6.1.2.1.25.6.3.1.5.90 , OctetString , 0x07d80c0b0f113000
1.3.6.1.2.1.25.6.3.1.5.91 , OctetString , 0x07d904100b120600
1.3.6.1.2.1.25.6.3.1.5.92 , OctetString , 0x07dd011a01071600
1.3.6.1.2.1.25.6.3.1.5.93 , OctetString , 0x07da031b0a133600
1.3.6.1.2.1.25.6.3.1.5.94 , OctetString , 0x07db0b1e00070000
1.3.6.1.2.1.25.6.3.1.5.95 , OctetString , 0x07d80c0e15113000
1.3.6.1.2.1.25.6.3.1.5.96 , OctetString , 0x07dd011a01071600
1.3.6.1.2.1.25.6.3.1.5.97 , OctetString , 0x07dd011a01062400
1.3.6.1.2.1.25.6.3.1.5.98 , OctetString , 0x07d9020117373a00
1.3.6.1.2.1.25.6.3.1.5.99 , OctetString , 0x07db0b1d17290a00
1.3.6.1.2.1.25.6.3.1.5.100 , OctetString , 0x07d80c0b0f342600
1.3.6.1.2.1.25.6.3.1.5.101 , OctetString , 0x07dd021910283800
1.3.6.1.2.1.25.6.3.1.5.102 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.103 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.104 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.105 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.106 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.107 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.108 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.109 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.110 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.111 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.112 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.113 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.114 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.115 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.116 , OctetString , 0x07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.117 , OctetString , 0x07dc0a0e16361800
1.3.6.1.2.1.25.6.3.1.5.118 , OctetString , 0x07dc041800102800
1.3.6.1.2.1.25.6.3.1.5.119 , OctetString , 0x07db0b1d17290400
1.3.6.1.2.1.25.6.3.1.5.120 , OctetString , 0x07dd011a01091a00
1.3.6.1.2.1.25.6.3.1.5.121 , OctetString , 0x07dd011a01073400
1.3.6.1.2.1.25.6.3.1.5.122 , OctetString , 0x07dd011a01090e00
1.3.6.1.2.1.25.6.3.1.5.123 , OctetString , 0x07d9020117380e00
1.3.6.1.2.1.25.6.3.1.5.124 , OctetString , 0x07dc0a0f00241c00
1.3.6.1.2.1.25.6.3.1.5.125 , OctetString , 0x07d905090e2a3400
1.3.6.1.2.1.25.6.3.1.5.126 , OctetString , 0x07d9050a0a191600
1.3.6.1.2.1.25.6.3.1.5.127 , OctetString , 0x07d80c0b0f080200
1.3.6.1.2.1.25.6.3.1.5.128 , OctetString , 0x07dc08120b092000
1.3.6.1.2.1.25.6.3.1.5.129 , OctetString , 0x07d90105172d0e00
1.3.6.1.2.1.25.6.3.1.5.130 , OctetString , 0x07d9041100032200
1.3.6.1.2.1.25.6.3.1.5.131 , OctetString , 0x07dc08120b093800
1.3.6.1.2.1.25.6.3.1.5.132 , OctetString , 0x07d905090e2a3800
1.3.6.1.2.1.25.6.3.1.5.133 , OctetString , 0x07d80c0b0f071a00
1.3.6.1.2.1.25.6.3.1.5.134 , OctetString , 0x07d80c0e16231800
1.3.6.1.2.1.25.6.3.1.5.135 , OctetString , 0x07d80c0e15180e00
1.3.6.1.2.1.25.6.3.1.5.136 , OctetString , 0x07dd0118160a0600
1.3.6.1.2.1.25.6.3.1.5.137 , OctetString , 0x07d9020117372600
1.3.6.1.2.1.25.6.3.1.5.138 , OctetString , 0x07dd011a01073a00
1.3.6.1.2.1.25.6.3.1.5.139 , OctetString , 0x07dc0a0e162e2200
1.3.6.1.2.1.25.6.3.1.5.140 , OctetString , 0x07dd021910262e00
1.3.6.1.2.1.25.6.3.1.5.141 , OctetString , 0x07dc0a0e16323400
1.3.6.1.2.1.25.6.3.1.5.142 , OctetString , 0x07d80c0e15163600
1.3.6.1.2.1.25.6.3.1.5.143 , OctetString , 0x07d9041100060400
1.3.6.1.2.1.25.6.3.1.5.144 , OctetString , 0x07dd011816030000
1.3.6.1.2.1.25.6.3.1.5.145 , OctetString , 0x07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.146 , OctetString , 0x07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.147 , OctetString , 0x07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.148 , OctetString , 0x07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.149 , OctetString , 0x07d90408173a1200
1.3.6.1.2.1.25.6.3.1.5.150 , OctetString , 0x07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.151 , OctetString , 0x07da031b0a260400
1.3.6.1.2.1.25.6.3.1.5.152 , OctetString , 0x07dd011a010b2000
1.3.6.1.2.1.25.6.3.1.5.153 , OctetString , 0x07dd011a01080000
1.3.6.1.2.1.25.6.3.1.5.154 , OctetString , 0x07d80c0b112a2800
1.3.6.1.2.1.25.6.3.1.5.155 , OctetString , 0x07da031b09320a00
1.3.6.1.2.1.25.6.3.1.5.156 , OctetString , 0x07d80c0b0f010c00
1.3.6.1.4.1.77.1.1.1.0 , OctetString , 5
1.3.6.1.4.1.77.1.1.2.0 , OctetString , 1
1.3.6.1.4.1.77.1.1.3.0 , OctetString , 0x03000000
1.3.6.1.4.1.77.1.1.4.0 , Integer , 1362908398
1.3.6.1.4.1.77.1.1.5.0 , Counter , 6
1.3.6.1.4.1.77.1.1.6.0 , Counter , 0
1.3.6.1.4.1.77.1.1.7.0 , Counter , 0
1.3.6.1.4.1.77.1.2.1.0 , OctetString ,
1.3.6.1.4.1.77.1.2.2.0 , Integer , 50
1.3.6.1.4.1.77.1.2.3.1.1.6.83.101.114.118.101.114, OctetString , Server
1.3.6.1.4.1.77.1.2.3.1.1.6.84.104.101.109.101.115, OctetString , Themes
1.3.6.1.4.1.77.1.2.3.1.1.9.69.118.101.110.116.32.76.111.103, OctetString , Event Log
1.3.6.1.4.1.77.1.2.3.1.1.9.84.101.108.101.112.104.111.110.121, OctetString , Telephony
1.3.6.1.4.1.77.1.2.3.1.1.9.87.101.98.67.108.105.101.110.116, OctetString , WebClient
1.3.6.1.4.1.77.1.2.3.1.1.10.68.78.83.32.67.108.105.101.110.116, OctetString , DNS Client
1.3.6.1.4.1.77.1.2.3.1.1.11.68.72.67.80.32.67.108.105.101.110.116, OctetString , DHCP Client
1.3.6.1.4.1.77.1.2.3.1.1.11.87.111.114.107.115.116.97.116.105.111.110, OctetString , Workstation
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, OctetString , SNMP Service
1.3.6.1.4.1.77.1.2.3.1.1.12.87.105.110.100.111.119.115.32.84.105.109.101, OctetString , Windows Time
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, OctetString , 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, OctetString , 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, OctetString , Windows Audio
1.3.6.1.4.1.77.1.2.3.1.1.14.73.80.83.69.67.32.83.101.114.118.105.99.101.115, OctetString , IPSEC Services
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, OctetString , Task Scheduler
1.3.6.1.4.1.77.1.2.3.1.1.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121, OctetString , Remote Registry
1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110, OctetString , Secondary Logon
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, OctetString , Security Center
1.3.6.1.4.1.77.1.2.3.1.1.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116, OctetString , Help and Support
1.3.6.1.4.1.77.1.2.3.1.1.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114, OctetString , Infrared Monitor
1.3.6.1.4.1.77.1.2.3.1.1.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115, OctetString , Automatic Updates
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, OctetString , COM+ Event System
1.3.6.1.4.1.77.1.2.3.1.1.17.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101, OctetString , Protected Storage
1.3.6.1.4.1.77.1.2.3.1.1.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101, OctetString , SNMP Trap Service
1.3.6.1.4.1.77.1.2.3.1.1.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115, OctetString , Terminal Services
1.3.6.1.4.1.77.1.2.3.1.1.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115, OctetString , Network Connections
1.3.6.1.4.1.77.1.2.3.1.1.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114, OctetString , Logical Disk Manager
1.3.6.1.4.1.77.1.2.3.1.1.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114, OctetString , Machine Debug Manager
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, OctetString , 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, OctetString , Cryptographic Services
1.3.6.1.4.1.77.1.2.3.1.1.22.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101, OctetString , SSDP Discovery Service
1.3.6.1.4.1.77.1.2.3.1.1.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101, OctetString , System Restore Service
1.3.6.1.4.1.77.1.2.3.1.1.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101, OctetString , Error Reporting 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, OctetString , Shell Hardware Detection
1.3.6.1.4.1.77.1.2.3.1.1.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101, OctetString , Bluetooth Support Service
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, OctetString , Security Accounts Manager
1.3.6.1.4.1.77.1.2.3.1.1.25.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, OctetString , System Event Notification
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, OctetString , Remote Procedure Call (RPC)
1.3.6.1.4.1.77.1.2.3.1.1.27.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110, OctetString , Wireless Zero Configuration
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, OctetString , DCOM Server Process Launcher
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, OctetString , Windows Image Acquisition (WIA)
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, OctetString , Distributed Link Tracking Client
1.3.6.1.4.1.77.1.2.3.1.1.32.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.32.40.78.76.65.41, OctetString , Network Location Awareness (NLA)
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, OctetString , Remote Access Connection Manager
1.3.6.1.4.1.77.1.2.3.1.1.33.65.112.112.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101, OctetString , Application Layer Gateway Service
1.3.6.1.4.1.77.1.2.3.1.1.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121, OctetString , Fast User Switching Compatibility
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, OctetString , Windows Management Instrumentation
1.3.6.1.4.1.77.1.2.3.1.1.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101, OctetString , Background Intelligent Transfer Service
1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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, OctetString , Windows Firewall/Internet Connection Sharing (ICS)
1.3.6.1.4.1.77.1.2.3.1.1.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107, OctetString , Windows Driver Foundation - User-mode Driver Framework
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.9.69.118.101.110.116.32.76.111.103, 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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115, 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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110, 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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115, 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.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.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.23.69.114.114.111.114.32.82.101.112.111.114.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.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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101, 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.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, 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41, 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121, 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101, Integer , 4
1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107, Integer , 4
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.9.69.118.101.110.116.32.76.111.103, 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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115, 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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110, 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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115, 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.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.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.23.69.114.114.111.114.32.82.101.112.111.114.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.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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101, 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.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, 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41, 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121, 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107, Integer , 1
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.9.69.118.101.110.116.32.76.111.103, Integer , 1
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 , 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.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.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.87.105.110.100.111.119.115.32.84.105.109.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 , 1
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.73.80.83.69.67.32.83.101.114.118.105.99.101.115, 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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110, 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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115, 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.4.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.23.69.114.114.111.114.32.82.101.112.111.114.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.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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101, 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.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, 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41, 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121, 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114, Integer , 2
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.9.69.118.101.110.116.32.76.111.103, 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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115, 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 , 2
1.3.6.1.4.1.77.1.2.3.1.5.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110, Integer , 2
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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114, Integer , 2
1.3.6.1.4.1.77.1.2.3.1.5.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115, 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.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.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.23.69.114.114.111.114.32.82.101.112.111.114.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.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 , 2
1.3.6.1.4.1.77.1.2.3.1.5.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101, 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.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, 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41, 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121, 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101, Integer , 1
1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107, Integer , 1
1.3.6.1.4.1.77.1.2.4.0 , Counter , 0
1.3.6.1.4.1.77.1.2.5.0 , Counter , 0
1.3.6.1.4.1.77.1.2.6.0 , Counter , 0
1.3.6.1.4.1.77.1.2.7.0 , Counter , 1
1.3.6.1.4.1.77.1.2.8.0 , Counter , 0
1.3.6.1.4.1.77.1.2.9.0 , Counter , 0
1.3.6.1.4.1.77.1.2.10.0 , Counter , 0
1.3.6.1.4.1.77.1.2.11.0 , Counter , 0
1.3.6.1.4.1.77.1.2.12.0 , Counter , 0
1.3.6.1.4.1.77.1.2.13.0 , Counter , 0
1.3.6.1.4.1.77.1.2.14.0 , Integer , 0
1.3.6.1.4.1.77.1.2.15.0 , Integer , 2
1.3.6.1.4.1.77.1.2.16.0 , Integer , 10
1.3.6.1.4.1.77.1.2.17.0 , Counter , 0
1.3.6.1.4.1.77.1.2.18.0 , Counter , 0
1.3.6.1.4.1.77.1.2.19.0 , Integer , 0
1.3.6.1.4.1.77.1.2.21.0 , Integer , 0
1.3.6.1.4.1.77.1.2.22.0 , Integer , 15
1.3.6.1.4.1.77.1.2.24.0 , Integer , 6
1.3.6.1.4.1.77.1.2.25.1.1.4.105.108.121.97, OctetString , ilya
1.3.6.1.4.1.77.1.2.25.1.1.5.71.117.101.115.116, OctetString , Guest
1.3.6.1.4.1.77.1.2.25.1.1.6.65.83.80.78.69.84, OctetString , ASPNET
1.3.6.1.4.1.77.1.2.25.1.1.13.65.100.109.105.110.105.115.116.114.97.116.111.114, OctetString , Administrator
1.3.6.1.4.1.77.1.2.25.1.1.13.72.101.108.112.65.115.115.105.115.116.97.110.116, OctetString , HelpAssistant
1.3.6.1.4.1.77.1.2.25.1.1.16.83.85.80.80.79.82.84.95.51.56.56.57.52.53.97.48, OctetString , SUPPORT_388945a0
1.3.6.1.4.1.77.1.2.26.0 , Integer , 0
1.3.6.1.4.1.77.1.2.28.0 , Integer , 0
1.3.6.1.4.1.77.1.3.1.0 , Counter , 0
1.3.6.1.4.1.77.1.3.2.0 , Counter , 0
1.3.6.1.4.1.77.1.3.3.0 , Counter , 0
1.3.6.1.4.1.77.1.3.4.0 , Counter , 0
1.3.6.1.4.1.77.1.3.5.0 , Counter , 0
1.3.6.1.4.1.77.1.3.7.0 , Integer , 0
1.3.6.1.4.1.77.1.4.1.0 , OctetString , WORKGROUP
1.3.6.1.4.1.77.1.4.3.0 , Integer , 0
1.3.6.1.4.1.77.1.4.5.0 , Integer , 0
snmpsim-0.4.5/data/foreignformats/winxp1.snmpwalk 0000664 0063214 0063214 00000355041 13051045252 022357 0 ustar ietingof ietingof .1.3.6.1.2.1.1.1.0 = STRING: Hardware: x86 Family 6 Model 9 Stepping 5 AT/AT COMPATIBLE - Software: Windows 2000 Version 5.1 (Build 2600 Uniprocessor Free)
.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.311.1.1.3.1.1
.1.3.6.1.2.1.1.3.0 = 222390
.1.3.6.1.2.1.1.4.0 = STRING: info@snmplabs.com
.1.3.6.1.2.1.1.5.0 = STRING: CRAY
.1.3.6.1.2.1.1.6.0 = STRING: Moscow, Russia
.1.3.6.1.2.1.1.7.0 = INTEGER: 76
.1.3.6.1.2.1.2.1.0 = INTEGER: 3
.1.3.6.1.2.1.2.2.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.1.65539 = INTEGER: 65539
.1.3.6.1.2.1.2.2.1.1.65540 = INTEGER: 65540
.1.3.6.1.2.1.2.2.1.2.1 = STRING: MS TCP Loopback interface
.1.3.6.1.2.1.2.2.1.2.65539 = STRING: Intel(R) PRO/Wireless 2200BG Network Connection
.1.3.6.1.2.1.2.2.1.2.65540 = STRING: Bluetooth Device (Personal Area Network)
.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: 24
.1.3.6.1.2.1.2.2.1.3.65539 = INTEGER: 6
.1.3.6.1.2.1.2.2.1.3.65540 = INTEGER: 6
.1.3.6.1.2.1.2.2.1.4.1 = INTEGER: 1520
.1.3.6.1.2.1.2.2.1.4.65539 = INTEGER: 1500
.1.3.6.1.2.1.2.2.1.4.65540 = INTEGER: 1500
.1.3.6.1.2.1.2.2.1.5.1 = Gauge32: 10000000
.1.3.6.1.2.1.2.2.1.5.65539 = Gauge32: 54000000
.1.3.6.1.2.1.2.2.1.5.65540 = Gauge32: 1000000
.1.3.6.1.2.1.2.2.1.6.1 = STRING:
.1.3.6.1.2.1.2.2.1.6.65539 = STRING: 0:e:35:d3:3d:53
.1.3.6.1.2.1.2.2.1.6.65540 = STRING: 0:15:83:7:d4:19
.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.7.65539 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.7.65540 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.8.65539 = INTEGER: 1
.1.3.6.1.2.1.2.2.1.8.65540 = INTEGER: 2
.1.3.6.1.2.1.2.2.1.9.1 = 0
.1.3.6.1.2.1.2.2.1.9.65539 = 0
.1.3.6.1.2.1.2.2.1.9.65540 = 0
.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 3087567
.1.3.6.1.2.1.2.2.1.10.65539 = Counter32: 46657212
.1.3.6.1.2.1.2.2.1.10.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.11.1 = Counter32: 46327
.1.3.6.1.2.1.2.2.1.11.65539 = Counter32: 35034
.1.3.6.1.2.1.2.2.1.11.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.12.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.12.65539 = Counter32: 997
.1.3.6.1.2.1.2.2.1.12.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.13.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.13.65539 = Counter32: 0
.1.3.6.1.2.1.2.2.1.13.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.14.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.14.65539 = Counter32: 0
.1.3.6.1.2.1.2.2.1.14.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.15.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.15.65539 = Counter32: 2
.1.3.6.1.2.1.2.2.1.15.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 3087567
.1.3.6.1.2.1.2.2.1.16.65539 = Counter32: 2378444
.1.3.6.1.2.1.2.2.1.16.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 46327
.1.3.6.1.2.1.2.2.1.17.65539 = Counter32: 20965
.1.3.6.1.2.1.2.2.1.17.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.18.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.18.65539 = Counter32: 33
.1.3.6.1.2.1.2.2.1.18.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.19.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.19.65539 = Counter32: 0
.1.3.6.1.2.1.2.2.1.19.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.20.1 = Counter32: 0
.1.3.6.1.2.1.2.2.1.20.65539 = Counter32: 0
.1.3.6.1.2.1.2.2.1.20.65540 = Counter32: 0
.1.3.6.1.2.1.2.2.1.21.1 = Gauge32: 0
.1.3.6.1.2.1.2.2.1.21.65539 = Gauge32: 0
.1.3.6.1.2.1.2.2.1.21.65540 = Gauge32: 0
.1.3.6.1.2.1.2.2.1.22.1 = OID: .0.0
.1.3.6.1.2.1.2.2.1.22.65539 = OID: .0.0
.1.3.6.1.2.1.2.2.1.22.65540 = OID: .0.0
.1.3.6.1.2.1.4.1.0 = INTEGER: 2
.1.3.6.1.2.1.4.2.0 = INTEGER: 128
.1.3.6.1.2.1.4.3.0 = Counter32: 82353
.1.3.6.1.2.1.4.4.0 = Counter32: 0
.1.3.6.1.2.1.4.5.0 = Counter32: 3
.1.3.6.1.2.1.4.6.0 = Counter32: 0
.1.3.6.1.2.1.4.7.0 = Counter32: 0
.1.3.6.1.2.1.4.8.0 = Counter32: 977
.1.3.6.1.2.1.4.9.0 = Counter32: 81388
.1.3.6.1.2.1.4.10.0 = Counter32: 67427
.1.3.6.1.2.1.4.11.0 = Counter32: 0
.1.3.6.1.2.1.4.12.0 = Counter32: 0
.1.3.6.1.2.1.4.13.0 = INTEGER: 60
.1.3.6.1.2.1.4.14.0 = Counter32: 0
.1.3.6.1.2.1.4.15.0 = Counter32: 0
.1.3.6.1.2.1.4.16.0 = Counter32: 0
.1.3.6.1.2.1.4.17.0 = Counter32: 0
.1.3.6.1.2.1.4.18.0 = Counter32: 0
.1.3.6.1.2.1.4.19.0 = Counter32: 0
.1.3.6.1.2.1.4.20.1.1.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.20.1.1.127.0.0.1 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.4.20.1.1.192.168.1.9 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.20.1.2.0.0.0.0 = INTEGER: 65540
.1.3.6.1.2.1.4.20.1.2.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.20.1.2.192.168.1.9 = INTEGER: 65539
.1.3.6.1.2.1.4.20.1.3.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.20.1.3.127.0.0.1 = IpAddress: 255.0.0.0
.1.3.6.1.2.1.4.20.1.3.192.168.1.9 = IpAddress: 255.255.255.0
.1.3.6.1.2.1.4.20.1.4.0.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.20.1.4.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.20.1.4.192.168.1.9 = INTEGER: 1
.1.3.6.1.2.1.4.20.1.5.0.0.0.0 = INTEGER: 65535
.1.3.6.1.2.1.4.20.1.5.127.0.0.1 = INTEGER: 65535
.1.3.6.1.2.1.4.20.1.5.192.168.1.9 = INTEGER: 65535
.1.3.6.1.2.1.4.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.21.1.1.127.0.0.0 = IpAddress: 127.0.0.0
.1.3.6.1.2.1.4.21.1.1.192.168.1.0 = IpAddress: 192.168.1.0
.1.3.6.1.2.1.4.21.1.1.192.168.1.9 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.21.1.1.192.168.1.255 = IpAddress: 192.168.1.255
.1.3.6.1.2.1.4.21.1.1.224.0.0.0 = IpAddress: 224.0.0.0
.1.3.6.1.2.1.4.21.1.1.255.255.255.255 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.21.1.2.0.0.0.0 = INTEGER: 65539
.1.3.6.1.2.1.4.21.1.2.127.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.2.192.168.1.0 = INTEGER: 65539
.1.3.6.1.2.1.4.21.1.2.192.168.1.9 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.2.192.168.1.255 = INTEGER: 65539
.1.3.6.1.2.1.4.21.1.2.224.0.0.0 = INTEGER: 65539
.1.3.6.1.2.1.4.21.1.2.255.255.255.255 = INTEGER: 65540
.1.3.6.1.2.1.4.21.1.3.0.0.0.0 = INTEGER: 25
.1.3.6.1.2.1.4.21.1.3.127.0.0.0 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.3.192.168.1.0 = INTEGER: 25
.1.3.6.1.2.1.4.21.1.3.192.168.1.9 = INTEGER: 25
.1.3.6.1.2.1.4.21.1.3.192.168.1.255 = INTEGER: 25
.1.3.6.1.2.1.4.21.1.3.224.0.0.0 = INTEGER: 25
.1.3.6.1.2.1.4.21.1.3.255.255.255.255 = INTEGER: 1
.1.3.6.1.2.1.4.21.1.4.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.4.127.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.4.192.168.1.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.4.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.4.192.168.1.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.4.224.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.4.255.255.255.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.127.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.192.168.1.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.192.168.1.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.224.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.5.255.255.255.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.127.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.192.168.1.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.192.168.1.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.224.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.6.255.255.255.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.7.0.0.0.0 = IpAddress: 192.168.1.1
.1.3.6.1.2.1.4.21.1.7.127.0.0.0 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.4.21.1.7.192.168.1.0 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.21.1.7.192.168.1.9 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.4.21.1.7.192.168.1.255 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.21.1.7.224.0.0.0 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.21.1.7.255.255.255.255 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.21.1.8.0.0.0.0 = INTEGER: 4
.1.3.6.1.2.1.4.21.1.8.127.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.8.192.168.1.0 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.8.192.168.1.9 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.8.192.168.1.255 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.8.224.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.8.255.255.255.255 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.9.0.0.0.0 = INTEGER: 3
.1.3.6.1.2.1.4.21.1.9.127.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.192.168.1.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.192.168.1.9 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.192.168.1.255 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.224.0.0.0 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.9.255.255.255.255 = INTEGER: 2
.1.3.6.1.2.1.4.21.1.10.0.0.0.0 = INTEGER: 9746
.1.3.6.1.2.1.4.21.1.10.127.0.0.0 = INTEGER: 9949
.1.3.6.1.2.1.4.21.1.10.192.168.1.0 = INTEGER: 9749
.1.3.6.1.2.1.4.21.1.10.192.168.1.9 = INTEGER: 9749
.1.3.6.1.2.1.4.21.1.10.192.168.1.255 = INTEGER: 9749
.1.3.6.1.2.1.4.21.1.10.224.0.0.0 = INTEGER: 9749
.1.3.6.1.2.1.4.21.1.10.255.255.255.255 = INTEGER: 9948
.1.3.6.1.2.1.4.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.21.1.11.127.0.0.0 = IpAddress: 255.0.0.0
.1.3.6.1.2.1.4.21.1.11.192.168.1.0 = IpAddress: 255.255.255.0
.1.3.6.1.2.1.4.21.1.11.192.168.1.9 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.21.1.11.192.168.1.255 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.21.1.11.224.0.0.0 = IpAddress: 240.0.0.0
.1.3.6.1.2.1.4.21.1.11.255.255.255.255 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.21.1.12.0.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.12.127.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.12.192.168.1.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.12.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.12.192.168.1.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.12.224.0.0.0 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.12.255.255.255.255 = INTEGER: -1
.1.3.6.1.2.1.4.21.1.13.0.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.127.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.192.168.1.0 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.192.168.1.9 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.192.168.1.255 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.224.0.0.0 = OID: .0.0
.1.3.6.1.2.1.4.21.1.13.255.255.255.255 = OID: .0.0
.1.3.6.1.2.1.4.22.1.1.65539.192.168.1.1 = INTEGER: 65539
.1.3.6.1.2.1.4.22.1.2.65539.192.168.1.1 = STRING: 48:5b:39:3a:bb:68
.1.3.6.1.2.1.4.22.1.3.65539.192.168.1.1 = IpAddress: 192.168.1.1
.1.3.6.1.2.1.4.22.1.4.65539.192.168.1.1 = INTEGER: 3
.1.3.6.1.2.1.4.23.0 = Counter32: 0
.1.3.6.1.2.1.4.24.1.0 = Gauge32: 8
.1.3.6.1.2.1.4.24.2.1.1.0.0.0.0.3.0.192.168.1.1 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.24.2.1.1.127.0.0.0.2.0.127.0.0.1 = IpAddress: 127.0.0.0
.1.3.6.1.2.1.4.24.2.1.1.192.168.1.0.2.0.192.168.1.9 = IpAddress: 192.168.1.0
.1.3.6.1.2.1.4.24.2.1.1.192.168.1.9.2.0.127.0.0.1 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.24.2.1.1.192.168.1.255.2.0.192.168.1.9 = IpAddress: 192.168.1.255
.1.3.6.1.2.1.4.24.2.1.1.224.0.0.0.2.0.192.168.1.9 = IpAddress: 224.0.0.0
.1.3.6.1.2.1.4.24.2.1.1.255.255.255.255.2.0.192.168.1.9 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.24.2.1.2.0.0.0.0.3.0.192.168.1.1 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.4.24.2.1.2.127.0.0.0.2.0.127.0.0.1 = IpAddress: 255.0.0.0
.1.3.6.1.2.1.4.24.2.1.2.192.168.1.0.2.0.192.168.1.9 = IpAddress: 255.255.255.0
.1.3.6.1.2.1.4.24.2.1.2.192.168.1.9.2.0.127.0.0.1 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.24.2.1.2.192.168.1.255.2.0.192.168.1.9 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.24.2.1.2.224.0.0.0.2.0.192.168.1.9 = IpAddress: 240.0.0.0
.1.3.6.1.2.1.4.24.2.1.2.255.255.255.255.2.0.192.168.1.9 = IpAddress: 255.255.255.255
.1.3.6.1.2.1.4.24.2.1.3.0.0.0.0.3.0.192.168.1.1 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.3.127.0.0.0.2.0.127.0.0.1 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.3.192.168.1.0.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.3.192.168.1.9.2.0.127.0.0.1 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.3.192.168.1.255.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.3.224.0.0.0.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.3.255.255.255.255.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.4.0.0.0.0.3.0.192.168.1.1 = IpAddress: 192.168.1.1
.1.3.6.1.2.1.4.24.2.1.4.127.0.0.0.2.0.127.0.0.1 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.4.24.2.1.4.192.168.1.0.2.0.192.168.1.9 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.24.2.1.4.192.168.1.9.2.0.127.0.0.1 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.4.24.2.1.4.192.168.1.255.2.0.192.168.1.9 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.24.2.1.4.224.0.0.0.2.0.192.168.1.9 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.24.2.1.4.255.255.255.255.2.0.192.168.1.9 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.4.24.2.1.5.0.0.0.0.3.0.192.168.1.1 = INTEGER: 65539
.1.3.6.1.2.1.4.24.2.1.5.127.0.0.0.2.0.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.24.2.1.5.192.168.1.0.2.0.192.168.1.9 = INTEGER: 65539
.1.3.6.1.2.1.4.24.2.1.5.192.168.1.9.2.0.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.24.2.1.5.192.168.1.255.2.0.192.168.1.9 = INTEGER: 65539
.1.3.6.1.2.1.4.24.2.1.5.224.0.0.0.2.0.192.168.1.9 = INTEGER: 65539
.1.3.6.1.2.1.4.24.2.1.5.255.255.255.255.2.0.192.168.1.9 = INTEGER: 65540
.1.3.6.1.2.1.4.24.2.1.6.0.0.0.0.3.0.192.168.1.1 = INTEGER: 4
.1.3.6.1.2.1.4.24.2.1.6.127.0.0.0.2.0.127.0.0.1 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.6.192.168.1.0.2.0.192.168.1.9 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.6.192.168.1.9.2.0.127.0.0.1 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.6.192.168.1.255.2.0.192.168.1.9 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.6.224.0.0.0.2.0.192.168.1.9 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.6.255.255.255.255.2.0.192.168.1.9 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.7.0.0.0.0.3.0.192.168.1.1 = INTEGER: 3
.1.3.6.1.2.1.4.24.2.1.7.127.0.0.0.2.0.127.0.0.1 = INTEGER: 2
.1.3.6.1.2.1.4.24.2.1.7.192.168.1.0.2.0.192.168.1.9 = INTEGER: 2
.1.3.6.1.2.1.4.24.2.1.7.192.168.1.9.2.0.127.0.0.1 = INTEGER: 2
.1.3.6.1.2.1.4.24.2.1.7.192.168.1.255.2.0.192.168.1.9 = INTEGER: 2
.1.3.6.1.2.1.4.24.2.1.7.224.0.0.0.2.0.192.168.1.9 = INTEGER: 2
.1.3.6.1.2.1.4.24.2.1.7.255.255.255.255.2.0.192.168.1.9 = INTEGER: 2
.1.3.6.1.2.1.4.24.2.1.8.0.0.0.0.3.0.192.168.1.1 = INTEGER: 9746
.1.3.6.1.2.1.4.24.2.1.8.127.0.0.0.2.0.127.0.0.1 = INTEGER: 9949
.1.3.6.1.2.1.4.24.2.1.8.192.168.1.0.2.0.192.168.1.9 = INTEGER: 9749
.1.3.6.1.2.1.4.24.2.1.8.192.168.1.9.2.0.127.0.0.1 = INTEGER: 9749
.1.3.6.1.2.1.4.24.2.1.8.192.168.1.255.2.0.192.168.1.9 = INTEGER: 9749
.1.3.6.1.2.1.4.24.2.1.8.224.0.0.0.2.0.192.168.1.9 = INTEGER: 9749
.1.3.6.1.2.1.4.24.2.1.8.255.255.255.255.2.0.192.168.1.9 = INTEGER: 9948
.1.3.6.1.2.1.4.24.2.1.9.0.0.0.0.3.0.192.168.1.1 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.9.127.0.0.0.2.0.127.0.0.1 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.9.192.168.1.0.2.0.192.168.1.9 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.9.192.168.1.9.2.0.127.0.0.1 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.9.192.168.1.255.2.0.192.168.1.9 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.9.224.0.0.0.2.0.192.168.1.9 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.9.255.255.255.255.2.0.192.168.1.9 = OID: .0.0
.1.3.6.1.2.1.4.24.2.1.10.0.0.0.0.3.0.192.168.1.1 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.10.127.0.0.0.2.0.127.0.0.1 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.10.192.168.1.0.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.10.192.168.1.9.2.0.127.0.0.1 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.10.192.168.1.255.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.10.224.0.0.0.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.10.255.255.255.255.2.0.192.168.1.9 = INTEGER: 0
.1.3.6.1.2.1.4.24.2.1.11.0.0.0.0.3.0.192.168.1.1 = INTEGER: 25
.1.3.6.1.2.1.4.24.2.1.11.127.0.0.0.2.0.127.0.0.1 = INTEGER: 1
.1.3.6.1.2.1.4.24.2.1.11.192.168.1.0.2.0.192.168.1.9 = INTEGER: 25
.1.3.6.1.2.1.4.24.2.1.11.192.168.1.9.2.0.127.0.0.1 = INTEGER: 25
.1.3.6.1.2.1.4.24.2.1.11.192.168.1.255.2.0.192.168.1.9 = INTEGER: 25
.1.3.6.1.2.1.4.24.2.1.11.224.0.0.0.2.0.192.168.1.9 = INTEGER: 25
.1.3.6.1.2.1.4.24.2.1.11.255.255.255.255.2.0.192.168.1.9 = INTEGER: 1
.1.3.6.1.2.1.4.24.2.1.12.0.0.0.0.3.0.192.168.1.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.12.127.0.0.0.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.12.192.168.1.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.12.192.168.1.9.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.12.192.168.1.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.12.224.0.0.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.12.255.255.255.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.0.0.0.0.3.0.192.168.1.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.127.0.0.0.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.192.168.1.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.192.168.1.9.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.192.168.1.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.224.0.0.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.13.255.255.255.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.0.0.0.0.3.0.192.168.1.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.127.0.0.0.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.192.168.1.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.192.168.1.9.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.192.168.1.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.224.0.0.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.14.255.255.255.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.0.0.0.0.3.0.192.168.1.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.127.0.0.0.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.192.168.1.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.192.168.1.9.2.0.127.0.0.1 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.192.168.1.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.224.0.0.0.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.4.24.2.1.15.255.255.255.255.2.0.192.168.1.9 = INTEGER: -1
.1.3.6.1.2.1.5.1.0 = Counter32: 1
.1.3.6.1.2.1.5.2.0 = Counter32: 0
.1.3.6.1.2.1.5.3.0 = Counter32: 1
.1.3.6.1.2.1.5.4.0 = Counter32: 0
.1.3.6.1.2.1.5.5.0 = Counter32: 0
.1.3.6.1.2.1.5.6.0 = Counter32: 0
.1.3.6.1.2.1.5.7.0 = Counter32: 0
.1.3.6.1.2.1.5.8.0 = Counter32: 0
.1.3.6.1.2.1.5.9.0 = Counter32: 0
.1.3.6.1.2.1.5.10.0 = Counter32: 0
.1.3.6.1.2.1.5.11.0 = Counter32: 0
.1.3.6.1.2.1.5.12.0 = Counter32: 0
.1.3.6.1.2.1.5.13.0 = Counter32: 0
.1.3.6.1.2.1.5.14.0 = Counter32: 1
.1.3.6.1.2.1.5.15.0 = Counter32: 0
.1.3.6.1.2.1.5.16.0 = Counter32: 1
.1.3.6.1.2.1.5.17.0 = Counter32: 0
.1.3.6.1.2.1.5.18.0 = Counter32: 0
.1.3.6.1.2.1.5.19.0 = Counter32: 0
.1.3.6.1.2.1.5.20.0 = Counter32: 0
.1.3.6.1.2.1.5.21.0 = Counter32: 0
.1.3.6.1.2.1.5.22.0 = Counter32: 0
.1.3.6.1.2.1.5.23.0 = Counter32: 0
.1.3.6.1.2.1.5.24.0 = Counter32: 0
.1.3.6.1.2.1.5.25.0 = Counter32: 0
.1.3.6.1.2.1.5.26.0 = Counter32: 0
.1.3.6.1.2.1.6.1.0 = INTEGER: 4
.1.3.6.1.2.1.6.2.0 = INTEGER: 300
.1.3.6.1.2.1.6.3.0 = INTEGER: 120000
.1.3.6.1.2.1.6.4.0 = INTEGER: -1
.1.3.6.1.2.1.6.5.0 = Counter32: 634
.1.3.6.1.2.1.6.6.0 = Counter32: 3
.1.3.6.1.2.1.6.7.0 = Counter32: 1
.1.3.6.1.2.1.6.8.0 = Counter32: 56
.1.3.6.1.2.1.6.9.0 = Gauge32: 2
.1.3.6.1.2.1.6.10.0 = Counter32: 49096
.1.3.6.1.2.1.6.11.0 = Counter32: 35125
.1.3.6.1.2.1.6.12.0 = Counter32: 3
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.135.0.0.0.0.6220 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.445.0.0.0.0.39166 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.1025.0.0.0.0.24745 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.1146.127.0.0.1.1147 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.1147.127.0.0.1.1146 = INTEGER: 5
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.20619 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.192.168.1.9.139.0.0.0.0.61692 = INTEGER: 2
.1.3.6.1.2.1.6.13.1.1.192.168.1.9.1680.173.194.32.37.80 = INTEGER: 11
.1.3.6.1.2.1.6.13.1.1.192.168.1.9.1681.74.125.143.113.80 = INTEGER: 11
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.135.0.0.0.0.6220 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.0.0.0.0.445.0.0.0.0.39166 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.1025.0.0.0.0.24745 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.1146.127.0.0.1.1147 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.1147.127.0.0.1.1146 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.20619 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.2.192.168.1.9.139.0.0.0.0.61692 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.6.13.1.2.192.168.1.9.1680.173.194.32.37.80 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.6.13.1.2.192.168.1.9.1681.74.125.143.113.80 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.135.0.0.0.0.6220 = INTEGER: 135
.1.3.6.1.2.1.6.13.1.3.0.0.0.0.445.0.0.0.0.39166 = INTEGER: 445
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.1025.0.0.0.0.24745 = INTEGER: 1025
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.1146.127.0.0.1.1147 = INTEGER: 1146
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.1147.127.0.0.1.1146 = INTEGER: 1147
.1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.20619 = INTEGER: 8118
.1.3.6.1.2.1.6.13.1.3.192.168.1.9.139.0.0.0.0.61692 = INTEGER: 139
.1.3.6.1.2.1.6.13.1.3.192.168.1.9.1680.173.194.32.37.80 = INTEGER: 1680
.1.3.6.1.2.1.6.13.1.3.192.168.1.9.1681.74.125.143.113.80 = INTEGER: 1681
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.135.0.0.0.0.6220 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.0.0.0.0.445.0.0.0.0.39166 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.1025.0.0.0.0.24745 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.1146.127.0.0.1.1147 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.1147.127.0.0.1.1146 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.20619 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.192.168.1.9.139.0.0.0.0.61692 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.6.13.1.4.192.168.1.9.1680.173.194.32.37.80 = IpAddress: 173.194.32.37
.1.3.6.1.2.1.6.13.1.4.192.168.1.9.1681.74.125.143.113.80 = IpAddress: 74.125.143.113
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.135.0.0.0.0.6220 = INTEGER: 6220
.1.3.6.1.2.1.6.13.1.5.0.0.0.0.445.0.0.0.0.39166 = INTEGER: 39166
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.1025.0.0.0.0.24745 = INTEGER: 24745
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.1146.127.0.0.1.1147 = INTEGER: 1147
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.1147.127.0.0.1.1146 = INTEGER: 1146
.1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.20619 = INTEGER: 20619
.1.3.6.1.2.1.6.13.1.5.192.168.1.9.139.0.0.0.0.61692 = INTEGER: 61692
.1.3.6.1.2.1.6.13.1.5.192.168.1.9.1680.173.194.32.37.80 = INTEGER: 80
.1.3.6.1.2.1.6.13.1.5.192.168.1.9.1681.74.125.143.113.80 = INTEGER: 80
.1.3.6.1.2.1.6.14.0 = Counter32: 0
.1.3.6.1.2.1.6.15.0 = Counter32: 47
.1.3.6.1.2.1.6.19.1.7.1.4.0.0.0.0.135.1.4.0.0.0.0.6220 = INTEGER: 2
.1.3.6.1.2.1.6.19.1.7.1.4.0.0.0.0.445.1.4.0.0.0.0.39166 = INTEGER: 2
.1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1025.1.4.0.0.0.0.24745 = INTEGER: 2
.1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1146.1.4.127.0.0.1.1147 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1147.1.4.127.0.0.1.1146 = INTEGER: 5
.1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.8118.1.4.0.0.0.0.20619 = INTEGER: 2
.1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.139.1.4.0.0.0.0.61692 = INTEGER: 2
.1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1680.1.4.173.194.32.37.80 = INTEGER: 11
.1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1681.1.4.74.125.143.113.80 = INTEGER: 11
.1.3.6.1.2.1.7.1.0 = Counter32: 32934
.1.3.6.1.2.1.7.2.0 = Counter32: 3
.1.3.6.1.2.1.7.3.0 = Counter32: 0
.1.3.6.1.2.1.7.4.0 = Counter32: 32943
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.161 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.162 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.445 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.500 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.1488 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.1686 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.0.0.0.0.4500 = IpAddress: 0.0.0.0
.1.3.6.1.2.1.7.5.1.1.127.0.0.1.123 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.7.5.1.1.127.0.0.1.1900 = IpAddress: 127.0.0.1
.1.3.6.1.2.1.7.5.1.1.192.168.1.9.123 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.7.5.1.1.192.168.1.9.137 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.7.5.1.1.192.168.1.9.138 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.7.5.1.1.192.168.1.9.1900 = IpAddress: 192.168.1.9
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.161 = INTEGER: 161
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.162 = INTEGER: 162
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.445 = INTEGER: 445
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.500 = INTEGER: 500
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.1488 = INTEGER: 1488
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.1686 = INTEGER: 1686
.1.3.6.1.2.1.7.5.1.2.0.0.0.0.4500 = INTEGER: 4500
.1.3.6.1.2.1.7.5.1.2.127.0.0.1.123 = INTEGER: 123
.1.3.6.1.2.1.7.5.1.2.127.0.0.1.1900 = INTEGER: 1900
.1.3.6.1.2.1.7.5.1.2.192.168.1.9.123 = INTEGER: 123
.1.3.6.1.2.1.7.5.1.2.192.168.1.9.137 = INTEGER: 137
.1.3.6.1.2.1.7.5.1.2.192.168.1.9.138 = INTEGER: 138
.1.3.6.1.2.1.7.5.1.2.192.168.1.9.1900 = INTEGER: 1900
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.161 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 161
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.162 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 162
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.445 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 445
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.500 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 500
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.1488 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 1488
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.1686 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 1686
.1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.4500 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 4500
.1.3.6.1.2.1.7.7.1.3.1.4.127.0.0.1.123 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 123
.1.3.6.1.2.1.7.7.1.3.1.4.127.0.0.1.1900 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 1900
.1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.123 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 123
.1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.137 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 137
.1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.138 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 138
.1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.1900 = Wrong Type (should be Gauge32 or Unsigned32): INTEGER: 1900
.1.3.6.1.2.1.11.1.0 = Counter32: 16217
.1.3.6.1.2.1.11.2.0 = Counter32: 16215
.1.3.6.1.2.1.11.3.0 = Counter32: 2
.1.3.6.1.2.1.11.4.0 = Counter32: 0
.1.3.6.1.2.1.11.5.0 = Counter32: 4
.1.3.6.1.2.1.11.6.0 = Counter32: 2
.1.3.6.1.2.1.11.8.0 = Counter32: 0
.1.3.6.1.2.1.11.9.0 = Counter32: 0
.1.3.6.1.2.1.11.10.0 = Counter32: 0
.1.3.6.1.2.1.11.11.0 = Counter32: 0
.1.3.6.1.2.1.11.12.0 = Counter32: 0
.1.3.6.1.2.1.11.13.0 = Counter32: 16198
.1.3.6.1.2.1.11.14.0 = Counter32: 0
.1.3.6.1.2.1.11.15.0 = Counter32: 0
.1.3.6.1.2.1.11.16.0 = Counter32: 16224
.1.3.6.1.2.1.11.17.0 = Counter32: 0
.1.3.6.1.2.1.11.18.0 = Counter32: 0
.1.3.6.1.2.1.11.19.0 = Counter32: 0
.1.3.6.1.2.1.11.20.0 = Counter32: 0
.1.3.6.1.2.1.11.21.0 = Counter32: 54
.1.3.6.1.2.1.11.22.0 = Counter32: 0
.1.3.6.1.2.1.11.24.0 = Counter32: 0
.1.3.6.1.2.1.11.25.0 = Counter32: 0
.1.3.6.1.2.1.11.26.0 = Counter32: 0
.1.3.6.1.2.1.11.27.0 = Counter32: 0
.1.3.6.1.2.1.11.28.0 = Counter32: 16235
.1.3.6.1.2.1.11.29.0 = Counter32: 4
.1.3.6.1.2.1.11.30.0 = INTEGER: 1
.1.3.6.1.2.1.25.1.1.0 = 9953593
.1.3.6.1.2.1.25.1.2.0 = STRING: 2013-3-10,16:22:7.2
.1.3.6.1.2.1.25.1.3.0 = INTEGER: 0
.1.3.6.1.2.1.25.1.4.0 = ""
.1.3.6.1.2.1.25.1.5.0 = Gauge32: 2
.1.3.6.1.2.1.25.1.6.0 = Gauge32: 34
.1.3.6.1.2.1.25.1.7.0 = INTEGER: 0
.1.3.6.1.2.1.25.2.2.0 = INTEGER: 1014576
.1.3.6.1.2.1.25.2.3.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.2.3.1.1.2 = INTEGER: 2
.1.3.6.1.2.1.25.2.3.1.1.3 = INTEGER: 3
.1.3.6.1.2.1.25.2.3.1.1.4 = INTEGER: 4
.1.3.6.1.2.1.25.2.3.1.1.5 = INTEGER: 5
.1.3.6.1.2.1.25.2.3.1.2.1 = OID: .1.3.6.1.2.1.25.2.1.4
.1.3.6.1.2.1.25.2.3.1.2.2 = OID: .1.3.6.1.2.1.25.2.1.7
.1.3.6.1.2.1.25.2.3.1.2.3 = OID: .1.3.6.1.2.1.25.2.1.4
.1.3.6.1.2.1.25.2.3.1.2.4 = OID: .1.3.6.1.2.1.25.2.1.3
.1.3.6.1.2.1.25.2.3.1.2.5 = OID: .1.3.6.1.2.1.25.2.1.2
.1.3.6.1.2.1.25.2.3.1.3.1 = STRING: C:\ Label: Serial Number 1848504c
.1.3.6.1.2.1.25.2.3.1.3.2 = STRING: D:\
.1.3.6.1.2.1.25.2.3.1.3.3 = STRING: Z:\ Label: Serial Number ba85e1bf
.1.3.6.1.2.1.25.2.3.1.3.4 = STRING: Virtual Memory
.1.3.6.1.2.1.25.2.3.1.3.5 = STRING: Physical Memory
.1.3.6.1.2.1.25.2.3.1.4.1 = INTEGER: 16384
.1.3.6.1.2.1.25.2.3.1.4.2 = INTEGER: 0
.1.3.6.1.2.1.25.2.3.1.4.3 = INTEGER: 4096
.1.3.6.1.2.1.25.2.3.1.4.4 = INTEGER: 65536
.1.3.6.1.2.1.25.2.3.1.4.5 = INTEGER: 65536
.1.3.6.1.2.1.25.2.3.1.5.1 = INTEGER: 1952447
.1.3.6.1.2.1.25.2.3.1.5.2 = INTEGER: 0
.1.3.6.1.2.1.25.2.3.1.5.3 = INTEGER: 21304198
.1.3.6.1.2.1.25.2.3.1.5.4 = INTEGER: 20377
.1.3.6.1.2.1.25.2.3.1.5.5 = INTEGER: 15852
.1.3.6.1.2.1.25.2.3.1.6.1 = INTEGER: 1945981
.1.3.6.1.2.1.25.2.3.1.6.2 = INTEGER: 0
.1.3.6.1.2.1.25.2.3.1.6.3 = INTEGER: 20191655
.1.3.6.1.2.1.25.2.3.1.6.4 = INTEGER: 6529
.1.3.6.1.2.1.25.2.3.1.6.5 = INTEGER: 8442
.1.3.6.1.2.1.25.2.3.1.7.1 = Counter32: 0
.1.3.6.1.2.1.25.2.3.1.7.2 = Counter32: 0
.1.3.6.1.2.1.25.2.3.1.7.3 = Counter32: 0
.1.3.6.1.2.1.25.2.3.1.7.4 = Counter32: 0
.1.3.6.1.2.1.25.2.3.1.7.5 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.1.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.1.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.2.1.1.4 = INTEGER: 4
.1.3.6.1.2.1.25.3.2.1.1.5 = INTEGER: 5
.1.3.6.1.2.1.25.3.2.1.1.6 = INTEGER: 6
.1.3.6.1.2.1.25.3.2.1.1.7 = INTEGER: 7
.1.3.6.1.2.1.25.3.2.1.1.8 = INTEGER: 8
.1.3.6.1.2.1.25.3.2.1.1.9 = INTEGER: 9
.1.3.6.1.2.1.25.3.2.1.1.10 = INTEGER: 10
.1.3.6.1.2.1.25.3.2.1.1.11 = INTEGER: 11
.1.3.6.1.2.1.25.3.2.1.1.12 = INTEGER: 12
.1.3.6.1.2.1.25.3.2.1.1.13 = INTEGER: 13
.1.3.6.1.2.1.25.3.2.1.2.1 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.2 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.3 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.4 = OID: .1.3.6.1.2.1.25.3.1.5
.1.3.6.1.2.1.25.3.2.1.2.5 = OID: .1.3.6.1.2.1.25.3.1.3
.1.3.6.1.2.1.25.3.2.1.2.6 = OID: .1.3.6.1.2.1.25.3.1.4
.1.3.6.1.2.1.25.3.2.1.2.7 = OID: .1.3.6.1.2.1.25.3.1.4
.1.3.6.1.2.1.25.3.2.1.2.8 = OID: .1.3.6.1.2.1.25.3.1.4
.1.3.6.1.2.1.25.3.2.1.2.9 = OID: .1.3.6.1.2.1.25.3.1.6
.1.3.6.1.2.1.25.3.2.1.2.10 = OID: .1.3.6.1.2.1.25.3.1.6
.1.3.6.1.2.1.25.3.2.1.2.11 = OID: .1.3.6.1.2.1.25.3.1.13
.1.3.6.1.2.1.25.3.2.1.2.12 = OID: .1.3.6.1.2.1.25.3.1.16
.1.3.6.1.2.1.25.3.2.1.2.13 = OID: .1.3.6.1.2.1.25.3.1.15
.1.3.6.1.2.1.25.3.2.1.3.1 = STRING: Microsoft XPS Document Writer
.1.3.6.1.2.1.25.3.2.1.3.2 = STRING: Microsoft Office Document Image Writer Driver
.1.3.6.1.2.1.25.3.2.1.3.3 = STRING: HP Officejet 6500 E710a-f
.1.3.6.1.2.1.25.3.2.1.3.4 = STRING: Fax - HP Officejet 6500 E710a-f
.1.3.6.1.2.1.25.3.2.1.3.5 = STRING: Intel
.1.3.6.1.2.1.25.3.2.1.3.6 = STRING: MS TCP Loopback interface
.1.3.6.1.2.1.25.3.2.1.3.7 = STRING: Intel(R) PRO/Wireless 2200BG Network Connection
.1.3.6.1.2.1.25.3.2.1.3.8 = STRING: Bluetooth Device (Personal Area Network)
.1.3.6.1.2.1.25.3.2.1.3.9 = STRING: D:\
.1.3.6.1.2.1.25.3.2.1.3.10 = STRING: Fixed Disk
.1.3.6.1.2.1.25.3.2.1.3.11 = STRING: IBM enhanced (101- or 102-key) keyboard, Subtype=(0)
.1.3.6.1.2.1.25.3.2.1.3.12 = STRING: 5-Buttons (with wheel)
.1.3.6.1.2.1.25.3.2.1.3.13 = STRING: LPT1:
.1.3.6.1.2.1.25.3.2.1.4.1 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.2 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.3 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.4 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.5 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.6 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.7 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.8 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.9 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.10 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.11 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.12 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.4.13 = OID: .0.0
.1.3.6.1.2.1.25.3.2.1.5.1 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.3 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.4 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.5 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.6 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.5.7 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.5.8 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.5.9 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.5.10 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.11 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.12 = INTEGER: 2
.1.3.6.1.2.1.25.3.2.1.5.13 = INTEGER: 1
.1.3.6.1.2.1.25.3.2.1.6.1 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.2 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.3 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.4 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.5 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.6 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.7 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.8 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.9 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.10 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.11 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.12 = Counter32: 0
.1.3.6.1.2.1.25.3.2.1.6.13 = Counter32: 0
.1.3.6.1.2.1.25.3.3.1.1.5 = OID: .0.0
.1.3.6.1.2.1.25.3.3.1.2.5 = INTEGER: 2
.1.3.6.1.2.1.25.3.4.1.1.6 = INTEGER: 1
.1.3.6.1.2.1.25.3.4.1.1.7 = INTEGER: 65539
.1.3.6.1.2.1.25.3.4.1.1.8 = INTEGER: 65540
.1.3.6.1.2.1.25.3.5.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.5.1.1.2 = INTEGER: 1
.1.3.6.1.2.1.25.3.5.1.1.3 = INTEGER: 1
.1.3.6.1.2.1.25.3.5.1.1.4 = INTEGER: 1
.1.3.6.1.2.1.25.3.5.1.2.1 = Hex-STRING: 00
.1.3.6.1.2.1.25.3.5.1.2.2 = Hex-STRING: 00
.1.3.6.1.2.1.25.3.5.1.2.3 = Hex-STRING: 00
.1.3.6.1.2.1.25.3.5.1.2.4 = Hex-STRING: 00
.1.3.6.1.2.1.25.3.6.1.1.9 = INTEGER: 2
.1.3.6.1.2.1.25.3.6.1.1.10 = INTEGER: 1
.1.3.6.1.2.1.25.3.6.1.2.9 = INTEGER: 5
.1.3.6.1.2.1.25.3.6.1.2.10 = INTEGER: 3
.1.3.6.1.2.1.25.3.6.1.3.9 = INTEGER: 1
.1.3.6.1.2.1.25.3.6.1.3.10 = INTEGER: 0
.1.3.6.1.2.1.25.3.6.1.4.9 = INTEGER: 0
.1.3.6.1.2.1.25.3.6.1.4.10 = INTEGER: 3972064
.1.3.6.1.2.1.25.3.7.1.1.10.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.7.1.1.10.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.7.1.1.10.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.7.1.2.10.1 = ""
.1.3.6.1.2.1.25.3.7.1.2.10.2 = ""
.1.3.6.1.2.1.25.3.7.1.2.10.3 = ""
.1.3.6.1.2.1.25.3.7.1.3.10.1 = Hex-STRING: 01 00 00 00
.1.3.6.1.2.1.25.3.7.1.3.10.2 = Hex-STRING: 02 00 00 00
.1.3.6.1.2.1.25.3.7.1.3.10.3 = Hex-STRING: 03 00 00 00
.1.3.6.1.2.1.25.3.7.1.4.10.1 = INTEGER: 1894298
.1.3.6.1.2.1.25.3.7.1.4.10.2 = INTEGER: 1330712
.1.3.6.1.2.1.25.3.7.1.4.10.3 = INTEGER: 747022
.1.3.6.1.2.1.25.3.7.1.5.10.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.7.1.5.10.2 = INTEGER: 3
.1.3.6.1.2.1.25.3.7.1.5.10.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.8.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.1.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.8.1.1.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.8.1.2.1 = ""
.1.3.6.1.2.1.25.3.8.1.2.2 = ""
.1.3.6.1.2.1.25.3.8.1.2.3 = ""
.1.3.6.1.2.1.25.3.8.1.3.1 = ""
.1.3.6.1.2.1.25.3.8.1.3.2 = ""
.1.3.6.1.2.1.25.3.8.1.3.3 = ""
.1.3.6.1.2.1.25.3.8.1.4.1 = OID: .1.3.6.1.2.1.25.3.9.5
.1.3.6.1.2.1.25.3.8.1.4.2 = OID: .1.3.6.1.2.1.25.3.9.5
.1.3.6.1.2.1.25.3.8.1.4.3 = OID: .1.3.6.1.2.1.25.3.9.2
.1.3.6.1.2.1.25.3.8.1.5.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.5.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.8.1.5.3 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.6.1 = INTEGER: 0
.1.3.6.1.2.1.25.3.8.1.6.2 = INTEGER: 0
.1.3.6.1.2.1.25.3.8.1.6.3 = INTEGER: 0
.1.3.6.1.2.1.25.3.8.1.7.1 = INTEGER: 1
.1.3.6.1.2.1.25.3.8.1.7.2 = INTEGER: 2
.1.3.6.1.2.1.25.3.8.1.7.3 = INTEGER: 3
.1.3.6.1.2.1.25.3.8.1.8.1 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.8.2 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.8.3 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.9.1 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.9.2 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.3.8.1.9.3 = STRING: 0-1-1,0:0:0.0
.1.3.6.1.2.1.25.4.1.0 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.1.4 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.1.384 = INTEGER: 384
.1.3.6.1.2.1.25.4.2.1.1.436 = INTEGER: 436
.1.3.6.1.2.1.25.4.2.1.1.468 = INTEGER: 468
.1.3.6.1.2.1.25.4.2.1.1.596 = INTEGER: 596
.1.3.6.1.2.1.25.4.2.1.1.620 = INTEGER: 620
.1.3.6.1.2.1.25.4.2.1.1.664 = INTEGER: 664
.1.3.6.1.2.1.25.4.2.1.1.676 = INTEGER: 676
.1.3.6.1.2.1.25.4.2.1.1.820 = INTEGER: 820
.1.3.6.1.2.1.25.4.2.1.1.880 = INTEGER: 880
.1.3.6.1.2.1.25.4.2.1.1.936 = INTEGER: 936
.1.3.6.1.2.1.25.4.2.1.1.996 = INTEGER: 996
.1.3.6.1.2.1.25.4.2.1.1.1104 = INTEGER: 1104
.1.3.6.1.2.1.25.4.2.1.1.1132 = INTEGER: 1132
.1.3.6.1.2.1.25.4.2.1.1.1144 = INTEGER: 1144
.1.3.6.1.2.1.25.4.2.1.1.1188 = INTEGER: 1188
.1.3.6.1.2.1.25.4.2.1.1.1304 = INTEGER: 1304
.1.3.6.1.2.1.25.4.2.1.1.1320 = INTEGER: 1320
.1.3.6.1.2.1.25.4.2.1.1.1328 = INTEGER: 1328
.1.3.6.1.2.1.25.4.2.1.1.1396 = INTEGER: 1396
.1.3.6.1.2.1.25.4.2.1.1.1492 = INTEGER: 1492
.1.3.6.1.2.1.25.4.2.1.1.1680 = INTEGER: 1680
.1.3.6.1.2.1.25.4.2.1.1.1692 = INTEGER: 1692
.1.3.6.1.2.1.25.4.2.1.1.1728 = INTEGER: 1728
.1.3.6.1.2.1.25.4.2.1.1.1816 = INTEGER: 1816
.1.3.6.1.2.1.25.4.2.1.1.1856 = INTEGER: 1856
.1.3.6.1.2.1.25.4.2.1.1.1860 = INTEGER: 1860
.1.3.6.1.2.1.25.4.2.1.1.2596 = INTEGER: 2596
.1.3.6.1.2.1.25.4.2.1.1.2880 = INTEGER: 2880
.1.3.6.1.2.1.25.4.2.1.1.2980 = INTEGER: 2980
.1.3.6.1.2.1.25.4.2.1.1.3148 = INTEGER: 3148
.1.3.6.1.2.1.25.4.2.1.1.3268 = INTEGER: 3268
.1.3.6.1.2.1.25.4.2.1.1.3416 = INTEGER: 3416
.1.3.6.1.2.1.25.4.2.1.2.1 = STRING: "System Idle Process"
.1.3.6.1.2.1.25.4.2.1.2.4 = STRING: "System"
.1.3.6.1.2.1.25.4.2.1.2.384 = STRING: "SynTPLpr.exe"
.1.3.6.1.2.1.25.4.2.1.2.436 = STRING: "explorer.exe"
.1.3.6.1.2.1.25.4.2.1.2.468 = STRING: "smss.exe"
.1.3.6.1.2.1.25.4.2.1.2.596 = STRING: "csrss.exe"
.1.3.6.1.2.1.25.4.2.1.2.620 = STRING: "winlogon.exe"
.1.3.6.1.2.1.25.4.2.1.2.664 = STRING: "services.exe"
.1.3.6.1.2.1.25.4.2.1.2.676 = STRING: "lsass.exe"
.1.3.6.1.2.1.25.4.2.1.2.820 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.880 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.936 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.996 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.1104 = STRING: "alg.exe"
.1.3.6.1.2.1.25.4.2.1.2.1132 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.1144 = STRING: "SOUNDMAN.EXE"
.1.3.6.1.2.1.25.4.2.1.2.1188 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.1304 = STRING: "igfxtray.exe"
.1.3.6.1.2.1.25.4.2.1.2.1320 = STRING: "hkcmd.exe"
.1.3.6.1.2.1.25.4.2.1.2.1328 = STRING: "ctfmon.exe"
.1.3.6.1.2.1.25.4.2.1.2.1396 = STRING: "spoolsv.exe"
.1.3.6.1.2.1.25.4.2.1.2.1492 = STRING: "privoxy.exe"
.1.3.6.1.2.1.25.4.2.1.2.1680 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.1692 = STRING: "SynTPEnh.exe"
.1.3.6.1.2.1.25.4.2.1.2.1728 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.1816 = STRING: "MDM.EXE"
.1.3.6.1.2.1.25.4.2.1.2.1856 = STRING: "wscntfy.exe"
.1.3.6.1.2.1.25.4.2.1.2.1860 = STRING: "svchost.exe"
.1.3.6.1.2.1.25.4.2.1.2.2596 = STRING: "snmp.exe"
.1.3.6.1.2.1.25.4.2.1.2.2880 = STRING: "snmptrap.exe"
.1.3.6.1.2.1.25.4.2.1.2.2980 = STRING: "firefox.exe"
.1.3.6.1.2.1.25.4.2.1.2.3148 = STRING: "cmd.exe"
.1.3.6.1.2.1.25.4.2.1.2.3268 = STRING: "Far.exe"
.1.3.6.1.2.1.25.4.2.1.2.3416 = STRING: "snmpwalk.exe"
.1.3.6.1.2.1.25.4.2.1.3.1 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.4 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.384 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.436 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.468 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.596 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.620 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.664 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.676 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.820 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.880 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.936 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.996 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1104 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1132 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1144 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1188 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1304 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1320 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1328 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1396 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1492 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1680 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1692 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1728 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1816 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1856 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.1860 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.2596 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.2880 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.2980 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.3148 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.3268 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.3.3416 = OID: .0.0
.1.3.6.1.2.1.25.4.2.1.4.1 = ""
.1.3.6.1.2.1.25.4.2.1.4.4 = ""
.1.3.6.1.2.1.25.4.2.1.4.384 = STRING: "C:\\Program Files\\Synaptics\\SynTP\\"
.1.3.6.1.2.1.25.4.2.1.4.436 = STRING: "C:\\WINDOWS\\"
.1.3.6.1.2.1.25.4.2.1.4.468 = STRING: "\\SystemRoot\\System32\\"
.1.3.6.1.2.1.25.4.2.1.4.596 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.620 = ""
.1.3.6.1.2.1.25.4.2.1.4.664 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.676 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.820 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.880 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.936 = STRING: "C:\\WINDOWS\\System32\\"
.1.3.6.1.2.1.25.4.2.1.4.996 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1104 = STRING: "C:\\WINDOWS\\System32\\"
.1.3.6.1.2.1.25.4.2.1.4.1132 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1144 = STRING: "C:\\WINDOWS\\"
.1.3.6.1.2.1.25.4.2.1.4.1188 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1304 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1320 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1328 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1396 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1492 = STRING: "C:\\Program Files\\Privoxy\\"
.1.3.6.1.2.1.25.4.2.1.4.1680 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1692 = STRING: "C:\\Program Files\\Synaptics\\SynTP\\"
.1.3.6.1.2.1.25.4.2.1.4.1728 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1816 = STRING: "C:\\Program Files\\Common Files\\Microsoft Shared\\VS7DEBUG\\"
.1.3.6.1.2.1.25.4.2.1.4.1856 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.1860 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.2596 = STRING: "C:\\WINDOWS\\System32\\"
.1.3.6.1.2.1.25.4.2.1.4.2880 = STRING: "C:\\WINDOWS\\System32\\"
.1.3.6.1.2.1.25.4.2.1.4.2980 = STRING: "C:\\Program Files\\Mozilla Firefox\\"
.1.3.6.1.2.1.25.4.2.1.4.3148 = STRING: "C:\\WINDOWS\\system32\\"
.1.3.6.1.2.1.25.4.2.1.4.3268 = STRING: "C:\\Program Files\\Far2\\"
.1.3.6.1.2.1.25.4.2.1.4.3416 = STRING: "C:\\NETSNMP\\bin\\"
.1.3.6.1.2.1.25.4.2.1.5.1 = ""
.1.3.6.1.2.1.25.4.2.1.5.4 = ""
.1.3.6.1.2.1.25.4.2.1.5.384 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.436 = ""
.1.3.6.1.2.1.25.4.2.1.5.468 = ""
.1.3.6.1.2.1.25.4.2.1.5.596 = STRING: "ObjectDirectory=\\Windows SharedSection=1024,3072,512 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserS"
.1.3.6.1.2.1.25.4.2.1.5.620 = ""
.1.3.6.1.2.1.25.4.2.1.5.664 = ""
.1.3.6.1.2.1.25.4.2.1.5.676 = ""
.1.3.6.1.2.1.25.4.2.1.5.820 = STRING: "-k DcomLaunch"
.1.3.6.1.2.1.25.4.2.1.5.880 = STRING: "-k rpcss"
.1.3.6.1.2.1.25.4.2.1.5.936 = STRING: "-k netsvcs"
.1.3.6.1.2.1.25.4.2.1.5.996 = STRING: "-k WudfServiceGroup"
.1.3.6.1.2.1.25.4.2.1.5.1104 = ""
.1.3.6.1.2.1.25.4.2.1.5.1132 = STRING: "-k NetworkService"
.1.3.6.1.2.1.25.4.2.1.5.1144 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.1188 = STRING: "-k LocalService"
.1.3.6.1.2.1.25.4.2.1.5.1304 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.1320 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.1328 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.1396 = ""
.1.3.6.1.2.1.25.4.2.1.5.1492 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.1680 = STRING: "-k LocalService"
.1.3.6.1.2.1.25.4.2.1.5.1692 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.1728 = STRING: "-k bthsvcs"
.1.3.6.1.2.1.25.4.2.1.5.1816 = ""
.1.3.6.1.2.1.25.4.2.1.5.1856 = ""
.1.3.6.1.2.1.25.4.2.1.5.1860 = STRING: "-k imgsvc"
.1.3.6.1.2.1.25.4.2.1.5.2596 = ""
.1.3.6.1.2.1.25.4.2.1.5.2880 = ""
.1.3.6.1.2.1.25.4.2.1.5.2980 = ""
.1.3.6.1.2.1.25.4.2.1.5.3148 = STRING: " /C \"C:\\NETSNMP\\bin\\snmpwalk.exe -v2c -c public 127.0.0.1 1.3.6 > \"C:\\Documents and Settings\\ilya\\Desktop\\\"winxp.snmpwalk\""
.1.3.6.1.2.1.25.4.2.1.5.3268 = STRING: " "
.1.3.6.1.2.1.25.4.2.1.5.3416 = STRING: "-v2c -c public 127.0.0.1 1.3.6 "
.1.3.6.1.2.1.25.4.2.1.6.1 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.6.4 = INTEGER: 2
.1.3.6.1.2.1.25.4.2.1.6.384 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.436 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.468 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.596 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.620 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.664 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.676 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.820 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.880 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.936 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.996 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1104 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1132 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1144 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1188 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1304 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1320 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1328 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1396 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1492 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1680 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1692 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1728 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1816 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1856 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.1860 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.2596 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.2880 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.2980 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.3148 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.3268 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.6.3416 = INTEGER: 4
.1.3.6.1.2.1.25.4.2.1.7.1 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.4 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.384 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.436 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.468 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.596 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.620 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.664 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.676 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.820 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.880 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.936 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.996 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1104 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1132 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1144 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1188 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1304 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1320 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1328 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1396 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1492 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1680 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1692 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1728 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1816 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1856 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.1860 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.2596 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.2880 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.2980 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.3148 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.3268 = INTEGER: 1
.1.3.6.1.2.1.25.4.2.1.7.3416 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.1 = INTEGER: 937579
.1.3.6.1.2.1.25.5.1.1.1.4 = INTEGER: 1185
.1.3.6.1.2.1.25.5.1.1.1.384 = INTEGER: 4
.1.3.6.1.2.1.25.5.1.1.1.436 = INTEGER: 925
.1.3.6.1.2.1.25.5.1.1.1.468 = INTEGER: 7
.1.3.6.1.2.1.25.5.1.1.1.596 = INTEGER: 3881
.1.3.6.1.2.1.25.5.1.1.1.620 = INTEGER: 328
.1.3.6.1.2.1.25.5.1.1.1.664 = INTEGER: 509
.1.3.6.1.2.1.25.5.1.1.1.676 = INTEGER: 164
.1.3.6.1.2.1.25.5.1.1.1.820 = INTEGER: 23
.1.3.6.1.2.1.25.5.1.1.1.880 = INTEGER: 67
.1.3.6.1.2.1.25.5.1.1.1.936 = INTEGER: 950
.1.3.6.1.2.1.25.5.1.1.1.996 = INTEGER: 3
.1.3.6.1.2.1.25.5.1.1.1.1104 = INTEGER: 4
.1.3.6.1.2.1.25.5.1.1.1.1132 = INTEGER: 31
.1.3.6.1.2.1.25.5.1.1.1.1144 = INTEGER: 7
.1.3.6.1.2.1.25.5.1.1.1.1188 = INTEGER: 9
.1.3.6.1.2.1.25.5.1.1.1.1304 = INTEGER: 7
.1.3.6.1.2.1.25.5.1.1.1.1320 = INTEGER: 17
.1.3.6.1.2.1.25.5.1.1.1.1328 = INTEGER: 17
.1.3.6.1.2.1.25.5.1.1.1.1396 = INTEGER: 17
.1.3.6.1.2.1.25.5.1.1.1.1492 = INTEGER: 4
.1.3.6.1.2.1.25.5.1.1.1.1680 = INTEGER: 6
.1.3.6.1.2.1.25.5.1.1.1.1692 = INTEGER: 748
.1.3.6.1.2.1.25.5.1.1.1.1728 = INTEGER: 3
.1.3.6.1.2.1.25.5.1.1.1.1816 = INTEGER: 9
.1.3.6.1.2.1.25.5.1.1.1.1856 = INTEGER: 1
.1.3.6.1.2.1.25.5.1.1.1.1860 = INTEGER: 32
.1.3.6.1.2.1.25.5.1.1.1.2596 = INTEGER: 154
.1.3.6.1.2.1.25.5.1.1.1.2880 = INTEGER: 4
.1.3.6.1.2.1.25.5.1.1.1.2980 = INTEGER: 15221
.1.3.6.1.2.1.25.5.1.1.1.3148 = INTEGER: 3
.1.3.6.1.2.1.25.5.1.1.1.3268 = INTEGER: 281
.1.3.6.1.2.1.25.5.1.1.1.3416 = INTEGER: 35
.1.3.6.1.2.1.25.5.1.1.2.1 = INTEGER: 16
.1.3.6.1.2.1.25.5.1.1.2.4 = INTEGER: 220
.1.3.6.1.2.1.25.5.1.1.2.384 = INTEGER: 2428
.1.3.6.1.2.1.25.5.1.1.2.436 = INTEGER: 24308
.1.3.6.1.2.1.25.5.1.1.2.468 = INTEGER: 412
.1.3.6.1.2.1.25.5.1.1.2.596 = INTEGER: 4168
.1.3.6.1.2.1.25.5.1.1.2.620 = INTEGER: 12368
.1.3.6.1.2.1.25.5.1.1.2.664 = INTEGER: 4932
.1.3.6.1.2.1.25.5.1.1.2.676 = INTEGER: 1124
.1.3.6.1.2.1.25.5.1.1.2.820 = INTEGER: 5108
.1.3.6.1.2.1.25.5.1.1.2.880 = INTEGER: 4420
.1.3.6.1.2.1.25.5.1.1.2.936 = INTEGER: 35940
.1.3.6.1.2.1.25.5.1.1.2.996 = INTEGER: 3340
.1.3.6.1.2.1.25.5.1.1.2.1104 = INTEGER: 3656
.1.3.6.1.2.1.25.5.1.1.2.1132 = INTEGER: 3904
.1.3.6.1.2.1.25.5.1.1.2.1144 = INTEGER: 2700
.1.3.6.1.2.1.25.5.1.1.2.1188 = INTEGER: 3888
.1.3.6.1.2.1.25.5.1.1.2.1304 = INTEGER: 3688
.1.3.6.1.2.1.25.5.1.1.2.1320 = INTEGER: 3884
.1.3.6.1.2.1.25.5.1.1.2.1328 = INTEGER: 3232
.1.3.6.1.2.1.25.5.1.1.2.1396 = INTEGER: 6776
.1.3.6.1.2.1.25.5.1.1.2.1492 = INTEGER: 3612
.1.3.6.1.2.1.25.5.1.1.2.1680 = INTEGER: 3768
.1.3.6.1.2.1.25.5.1.1.2.1692 = INTEGER: 4340
.1.3.6.1.2.1.25.5.1.1.2.1728 = INTEGER: 3296
.1.3.6.1.2.1.25.5.1.1.2.1816 = INTEGER: 3304
.1.3.6.1.2.1.25.5.1.1.2.1856 = INTEGER: 2156
.1.3.6.1.2.1.25.5.1.1.2.1860 = INTEGER: 5724
.1.3.6.1.2.1.25.5.1.1.2.2596 = INTEGER: 4180
.1.3.6.1.2.1.25.5.1.1.2.2880 = INTEGER: 2240
.1.3.6.1.2.1.25.5.1.1.2.2980 = INTEGER: 189296
.1.3.6.1.2.1.25.5.1.1.2.3148 = INTEGER: 2544
.1.3.6.1.2.1.25.5.1.1.2.3268 = INTEGER: 12920
.1.3.6.1.2.1.25.5.1.1.2.3416 = INTEGER: 3372
.1.3.6.1.2.1.25.6.1.0 = 222407
.1.3.6.1.2.1.25.6.2.0 = 222407
.1.3.6.1.2.1.25.6.3.1.1.1 = INTEGER: 1
.1.3.6.1.2.1.25.6.3.1.1.2 = INTEGER: 2
.1.3.6.1.2.1.25.6.3.1.1.3 = INTEGER: 3
.1.3.6.1.2.1.25.6.3.1.1.4 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.1.5 = INTEGER: 5
.1.3.6.1.2.1.25.6.3.1.1.6 = INTEGER: 6
.1.3.6.1.2.1.25.6.3.1.1.7 = INTEGER: 7
.1.3.6.1.2.1.25.6.3.1.1.8 = INTEGER: 8
.1.3.6.1.2.1.25.6.3.1.1.9 = INTEGER: 9
.1.3.6.1.2.1.25.6.3.1.1.10 = INTEGER: 10
.1.3.6.1.2.1.25.6.3.1.1.11 = INTEGER: 11
.1.3.6.1.2.1.25.6.3.1.1.12 = INTEGER: 12
.1.3.6.1.2.1.25.6.3.1.1.13 = INTEGER: 13
.1.3.6.1.2.1.25.6.3.1.1.14 = INTEGER: 14
.1.3.6.1.2.1.25.6.3.1.1.15 = INTEGER: 15
.1.3.6.1.2.1.25.6.3.1.1.16 = INTEGER: 16
.1.3.6.1.2.1.25.6.3.1.1.17 = INTEGER: 17
.1.3.6.1.2.1.25.6.3.1.1.18 = INTEGER: 18
.1.3.6.1.2.1.25.6.3.1.1.19 = INTEGER: 19
.1.3.6.1.2.1.25.6.3.1.1.20 = INTEGER: 20
.1.3.6.1.2.1.25.6.3.1.1.21 = INTEGER: 21
.1.3.6.1.2.1.25.6.3.1.1.22 = INTEGER: 22
.1.3.6.1.2.1.25.6.3.1.1.23 = INTEGER: 23
.1.3.6.1.2.1.25.6.3.1.1.24 = INTEGER: 24
.1.3.6.1.2.1.25.6.3.1.1.25 = INTEGER: 25
.1.3.6.1.2.1.25.6.3.1.1.26 = INTEGER: 26
.1.3.6.1.2.1.25.6.3.1.1.27 = INTEGER: 27
.1.3.6.1.2.1.25.6.3.1.1.28 = INTEGER: 28
.1.3.6.1.2.1.25.6.3.1.1.29 = INTEGER: 29
.1.3.6.1.2.1.25.6.3.1.1.30 = INTEGER: 30
.1.3.6.1.2.1.25.6.3.1.1.31 = INTEGER: 31
.1.3.6.1.2.1.25.6.3.1.1.32 = INTEGER: 32
.1.3.6.1.2.1.25.6.3.1.1.33 = INTEGER: 33
.1.3.6.1.2.1.25.6.3.1.1.34 = INTEGER: 34
.1.3.6.1.2.1.25.6.3.1.1.35 = INTEGER: 35
.1.3.6.1.2.1.25.6.3.1.1.36 = INTEGER: 36
.1.3.6.1.2.1.25.6.3.1.1.37 = INTEGER: 37
.1.3.6.1.2.1.25.6.3.1.1.38 = INTEGER: 38
.1.3.6.1.2.1.25.6.3.1.1.39 = INTEGER: 39
.1.3.6.1.2.1.25.6.3.1.1.40 = INTEGER: 40
.1.3.6.1.2.1.25.6.3.1.1.41 = INTEGER: 41
.1.3.6.1.2.1.25.6.3.1.1.42 = INTEGER: 42
.1.3.6.1.2.1.25.6.3.1.1.43 = INTEGER: 43
.1.3.6.1.2.1.25.6.3.1.1.44 = INTEGER: 44
.1.3.6.1.2.1.25.6.3.1.1.45 = INTEGER: 45
.1.3.6.1.2.1.25.6.3.1.1.46 = INTEGER: 46
.1.3.6.1.2.1.25.6.3.1.1.47 = INTEGER: 47
.1.3.6.1.2.1.25.6.3.1.1.48 = INTEGER: 48
.1.3.6.1.2.1.25.6.3.1.1.49 = INTEGER: 49
.1.3.6.1.2.1.25.6.3.1.1.50 = INTEGER: 50
.1.3.6.1.2.1.25.6.3.1.1.51 = INTEGER: 51
.1.3.6.1.2.1.25.6.3.1.1.52 = INTEGER: 52
.1.3.6.1.2.1.25.6.3.1.1.53 = INTEGER: 53
.1.3.6.1.2.1.25.6.3.1.1.54 = INTEGER: 54
.1.3.6.1.2.1.25.6.3.1.1.55 = INTEGER: 55
.1.3.6.1.2.1.25.6.3.1.1.56 = INTEGER: 56
.1.3.6.1.2.1.25.6.3.1.1.57 = INTEGER: 57
.1.3.6.1.2.1.25.6.3.1.1.58 = INTEGER: 58
.1.3.6.1.2.1.25.6.3.1.1.59 = INTEGER: 59
.1.3.6.1.2.1.25.6.3.1.1.60 = INTEGER: 60
.1.3.6.1.2.1.25.6.3.1.1.61 = INTEGER: 61
.1.3.6.1.2.1.25.6.3.1.1.62 = INTEGER: 62
.1.3.6.1.2.1.25.6.3.1.1.63 = INTEGER: 63
.1.3.6.1.2.1.25.6.3.1.1.64 = INTEGER: 64
.1.3.6.1.2.1.25.6.3.1.1.65 = INTEGER: 65
.1.3.6.1.2.1.25.6.3.1.1.66 = INTEGER: 66
.1.3.6.1.2.1.25.6.3.1.1.67 = INTEGER: 67
.1.3.6.1.2.1.25.6.3.1.1.68 = INTEGER: 68
.1.3.6.1.2.1.25.6.3.1.1.69 = INTEGER: 69
.1.3.6.1.2.1.25.6.3.1.1.70 = INTEGER: 70
.1.3.6.1.2.1.25.6.3.1.1.71 = INTEGER: 71
.1.3.6.1.2.1.25.6.3.1.1.72 = INTEGER: 72
.1.3.6.1.2.1.25.6.3.1.1.73 = INTEGER: 73
.1.3.6.1.2.1.25.6.3.1.1.74 = INTEGER: 74
.1.3.6.1.2.1.25.6.3.1.1.75 = INTEGER: 75
.1.3.6.1.2.1.25.6.3.1.1.76 = INTEGER: 76
.1.3.6.1.2.1.25.6.3.1.1.77 = INTEGER: 77
.1.3.6.1.2.1.25.6.3.1.1.78 = INTEGER: 78
.1.3.6.1.2.1.25.6.3.1.1.79 = INTEGER: 79
.1.3.6.1.2.1.25.6.3.1.1.80 = INTEGER: 80
.1.3.6.1.2.1.25.6.3.1.1.81 = INTEGER: 81
.1.3.6.1.2.1.25.6.3.1.1.82 = INTEGER: 82
.1.3.6.1.2.1.25.6.3.1.1.83 = INTEGER: 83
.1.3.6.1.2.1.25.6.3.1.1.84 = INTEGER: 84
.1.3.6.1.2.1.25.6.3.1.1.85 = INTEGER: 85
.1.3.6.1.2.1.25.6.3.1.1.86 = INTEGER: 86
.1.3.6.1.2.1.25.6.3.1.1.87 = INTEGER: 87
.1.3.6.1.2.1.25.6.3.1.1.88 = INTEGER: 88
.1.3.6.1.2.1.25.6.3.1.1.89 = INTEGER: 89
.1.3.6.1.2.1.25.6.3.1.1.90 = INTEGER: 90
.1.3.6.1.2.1.25.6.3.1.1.91 = INTEGER: 91
.1.3.6.1.2.1.25.6.3.1.1.92 = INTEGER: 92
.1.3.6.1.2.1.25.6.3.1.1.93 = INTEGER: 93
.1.3.6.1.2.1.25.6.3.1.1.94 = INTEGER: 94
.1.3.6.1.2.1.25.6.3.1.1.95 = INTEGER: 95
.1.3.6.1.2.1.25.6.3.1.1.96 = INTEGER: 96
.1.3.6.1.2.1.25.6.3.1.1.97 = INTEGER: 97
.1.3.6.1.2.1.25.6.3.1.1.98 = INTEGER: 98
.1.3.6.1.2.1.25.6.3.1.1.99 = INTEGER: 99
.1.3.6.1.2.1.25.6.3.1.1.100 = INTEGER: 100
.1.3.6.1.2.1.25.6.3.1.1.101 = INTEGER: 101
.1.3.6.1.2.1.25.6.3.1.1.102 = INTEGER: 102
.1.3.6.1.2.1.25.6.3.1.1.103 = INTEGER: 103
.1.3.6.1.2.1.25.6.3.1.1.104 = INTEGER: 104
.1.3.6.1.2.1.25.6.3.1.1.105 = INTEGER: 105
.1.3.6.1.2.1.25.6.3.1.1.106 = INTEGER: 106
.1.3.6.1.2.1.25.6.3.1.1.107 = INTEGER: 107
.1.3.6.1.2.1.25.6.3.1.1.108 = INTEGER: 108
.1.3.6.1.2.1.25.6.3.1.1.109 = INTEGER: 109
.1.3.6.1.2.1.25.6.3.1.1.110 = INTEGER: 110
.1.3.6.1.2.1.25.6.3.1.1.111 = INTEGER: 111
.1.3.6.1.2.1.25.6.3.1.1.112 = INTEGER: 112
.1.3.6.1.2.1.25.6.3.1.1.113 = INTEGER: 113
.1.3.6.1.2.1.25.6.3.1.1.114 = INTEGER: 114
.1.3.6.1.2.1.25.6.3.1.1.115 = INTEGER: 115
.1.3.6.1.2.1.25.6.3.1.1.116 = INTEGER: 116
.1.3.6.1.2.1.25.6.3.1.1.117 = INTEGER: 117
.1.3.6.1.2.1.25.6.3.1.1.118 = INTEGER: 118
.1.3.6.1.2.1.25.6.3.1.1.119 = INTEGER: 119
.1.3.6.1.2.1.25.6.3.1.1.120 = INTEGER: 120
.1.3.6.1.2.1.25.6.3.1.1.121 = INTEGER: 121
.1.3.6.1.2.1.25.6.3.1.1.122 = INTEGER: 122
.1.3.6.1.2.1.25.6.3.1.1.123 = INTEGER: 123
.1.3.6.1.2.1.25.6.3.1.1.124 = INTEGER: 124
.1.3.6.1.2.1.25.6.3.1.1.125 = INTEGER: 125
.1.3.6.1.2.1.25.6.3.1.1.126 = INTEGER: 126
.1.3.6.1.2.1.25.6.3.1.1.127 = INTEGER: 127
.1.3.6.1.2.1.25.6.3.1.1.128 = INTEGER: 128
.1.3.6.1.2.1.25.6.3.1.1.129 = INTEGER: 129
.1.3.6.1.2.1.25.6.3.1.1.130 = INTEGER: 130
.1.3.6.1.2.1.25.6.3.1.1.131 = INTEGER: 131
.1.3.6.1.2.1.25.6.3.1.1.132 = INTEGER: 132
.1.3.6.1.2.1.25.6.3.1.1.133 = INTEGER: 133
.1.3.6.1.2.1.25.6.3.1.1.134 = INTEGER: 134
.1.3.6.1.2.1.25.6.3.1.1.135 = INTEGER: 135
.1.3.6.1.2.1.25.6.3.1.1.136 = INTEGER: 136
.1.3.6.1.2.1.25.6.3.1.1.137 = INTEGER: 137
.1.3.6.1.2.1.25.6.3.1.1.138 = INTEGER: 138
.1.3.6.1.2.1.25.6.3.1.1.139 = INTEGER: 139
.1.3.6.1.2.1.25.6.3.1.1.140 = INTEGER: 140
.1.3.6.1.2.1.25.6.3.1.1.141 = INTEGER: 141
.1.3.6.1.2.1.25.6.3.1.1.142 = INTEGER: 142
.1.3.6.1.2.1.25.6.3.1.1.143 = INTEGER: 143
.1.3.6.1.2.1.25.6.3.1.1.144 = INTEGER: 144
.1.3.6.1.2.1.25.6.3.1.1.145 = INTEGER: 145
.1.3.6.1.2.1.25.6.3.1.1.146 = INTEGER: 146
.1.3.6.1.2.1.25.6.3.1.1.147 = INTEGER: 147
.1.3.6.1.2.1.25.6.3.1.1.148 = INTEGER: 148
.1.3.6.1.2.1.25.6.3.1.1.149 = INTEGER: 149
.1.3.6.1.2.1.25.6.3.1.1.150 = INTEGER: 150
.1.3.6.1.2.1.25.6.3.1.1.151 = INTEGER: 151
.1.3.6.1.2.1.25.6.3.1.1.152 = INTEGER: 152
.1.3.6.1.2.1.25.6.3.1.1.153 = INTEGER: 153
.1.3.6.1.2.1.25.6.3.1.1.154 = INTEGER: 154
.1.3.6.1.2.1.25.6.3.1.1.155 = INTEGER: 155
.1.3.6.1.2.1.25.6.3.1.1.156 = INTEGER: 156
.1.3.6.1.2.1.25.6.3.1.2.1 = STRING: "Windows Driver Package - Nokia pccsmcfd �LegacyDriver� (05/31/2"
.1.3.6.1.2.1.25.6.3.1.2.2 = STRING: "7-Zip 9.20"
.1.3.6.1.2.1.25.6.3.1.2.3 = STRING: "Adobe AIR"
.1.3.6.1.2.1.25.6.3.1.2.4 = STRING: "Adobe Flash Player 11 Plugin"
.1.3.6.1.2.1.25.6.3.1.2.5 = STRING: "CCleaner"
.1.3.6.1.2.1.25.6.3.1.2.6 = STRING: "SoftV92 Data Fax Modem with SmartCP"
.1.3.6.1.2.1.25.6.3.1.2.7 = STRING: "Acrobat.com"
.1.3.6.1.2.1.25.6.3.1.2.8 = STRING: "Ext2Fsd 0.46"
.1.3.6.1.2.1.25.6.3.1.2.9 = STRING: "Windows Internet Explorer 8"
.1.3.6.1.2.1.25.6.3.1.2.10 = STRING: "Update for Windows XP (KB2492386)"
.1.3.6.1.2.1.25.6.3.1.2.11 = STRING: "Security Update for Windows Internet Explorer 8 (KB2497640)"
.1.3.6.1.2.1.25.6.3.1.2.12 = STRING: "Security Update for Windows Internet Explorer 8 (KB2510531)"
.1.3.6.1.2.1.25.6.3.1.2.13 = STRING: "Security Update for Windows Internet Explorer 8 (KB2544521)"
.1.3.6.1.2.1.25.6.3.1.2.14 = STRING: "Security Update for Windows Internet Explorer 8 (KB2586448)"
.1.3.6.1.2.1.25.6.3.1.2.15 = STRING: "Update for Windows Internet Explorer 8 (KB2598845)"
.1.3.6.1.2.1.25.6.3.1.2.16 = STRING: "Security Update for Windows Internet Explorer 8 (KB2618444)"
.1.3.6.1.2.1.25.6.3.1.2.17 = STRING: "Security Update for Windows XP (KB2621440)"
.1.3.6.1.2.1.25.6.3.1.2.18 = STRING: "Update for Windows Internet Explorer 8 (KB2632503)"
.1.3.6.1.2.1.25.6.3.1.2.19 = STRING: "Security Update for Windows XP (KB2641653)"
.1.3.6.1.2.1.25.6.3.1.2.20 = STRING: "Security Update for Windows Internet Explorer 8 (KB2647516)"
.1.3.6.1.2.1.25.6.3.1.2.21 = STRING: "Security Update for Windows XP (KB2647518)"
.1.3.6.1.2.1.25.6.3.1.2.22 = STRING: "Security Update for Windows XP (KB2653956)"
.1.3.6.1.2.1.25.6.3.1.2.23 = STRING: "Security Update for Windows XP (KB2655992)"
.1.3.6.1.2.1.25.6.3.1.2.24 = STRING: "Security Update for Windows XP (KB2659262)"
.1.3.6.1.2.1.25.6.3.1.2.25 = STRING: "Security Update for Windows XP (KB2660465)"
.1.3.6.1.2.1.25.6.3.1.2.26 = STRING: "Update for Windows XP (KB2661254-v2)"
.1.3.6.1.2.1.25.6.3.1.2.27 = STRING: "Security Update for Windows XP (KB2661637)"
.1.3.6.1.2.1.25.6.3.1.2.28 = STRING: "Security Update for Windows Internet Explorer 8 (KB2675157)"
.1.3.6.1.2.1.25.6.3.1.2.29 = STRING: "Security Update for Windows XP (KB2676562)"
.1.3.6.1.2.1.25.6.3.1.2.30 = STRING: "Security Update for Windows XP (KB2686509)"
.1.3.6.1.2.1.25.6.3.1.2.31 = STRING: "Security Update for Windows XP (KB2691442)"
.1.3.6.1.2.1.25.6.3.1.2.32 = STRING: "Security Update for Windows XP (KB2695962)"
.1.3.6.1.2.1.25.6.3.1.2.33 = STRING: "Security Update for Windows XP (KB2698365)"
.1.3.6.1.2.1.25.6.3.1.2.34 = STRING: "Security Update for Windows XP (KB2705219)"
.1.3.6.1.2.1.25.6.3.1.2.35 = STRING: "Security Update for Windows XP (KB2707511)"
.1.3.6.1.2.1.25.6.3.1.2.36 = STRING: "Security Update for Windows XP (KB2712808)"
.1.3.6.1.2.1.25.6.3.1.2.37 = STRING: "Update for Windows XP (KB2718704)"
.1.3.6.1.2.1.25.6.3.1.2.38 = STRING: "Security Update for Windows XP (KB2719985)"
.1.3.6.1.2.1.25.6.3.1.2.39 = STRING: "Security Update for Windows Internet Explorer 8 (KB2722913)"
.1.3.6.1.2.1.25.6.3.1.2.40 = STRING: "Security Update for Windows XP (KB2723135)"
.1.3.6.1.2.1.25.6.3.1.2.41 = STRING: "Security Update for Windows XP (KB2724197)"
.1.3.6.1.2.1.25.6.3.1.2.42 = STRING: "Security Update for Windows XP (KB2727528)"
.1.3.6.1.2.1.25.6.3.1.2.43 = STRING: "Security Update for Windows XP (KB2731847)"
.1.3.6.1.2.1.25.6.3.1.2.44 = STRING: "Update for Windows XP (KB2736233)"
.1.3.6.1.2.1.25.6.3.1.2.45 = STRING: "Security Update for Windows Internet Explorer 8 (KB2744842)"
.1.3.6.1.2.1.25.6.3.1.2.46 = STRING: "Update for Windows XP (KB2749655)"
.1.3.6.1.2.1.25.6.3.1.2.47 = STRING: "Security Update for Windows XP (KB2753842)"
.1.3.6.1.2.1.25.6.3.1.2.48 = STRING: "Security Update for Windows XP (KB2753842-v2)"
.1.3.6.1.2.1.25.6.3.1.2.49 = STRING: "Hotfix for Windows XP (KB2756822)"
.1.3.6.1.2.1.25.6.3.1.2.50 = STRING: "Security Update for Windows XP (KB2757638)"
.1.3.6.1.2.1.25.6.3.1.2.51 = STRING: "Security Update for Windows XP (KB2758857)"
.1.3.6.1.2.1.25.6.3.1.2.52 = STRING: "Security Update for Windows XP (KB2761226)"
.1.3.6.1.2.1.25.6.3.1.2.53 = STRING: "Security Update for Windows Internet Explorer 8 (KB2761465)"
.1.3.6.1.2.1.25.6.3.1.2.54 = STRING: "Security Update for Windows XP (KB2770660)"
.1.3.6.1.2.1.25.6.3.1.2.55 = STRING: "Security Update for Windows XP (KB2778344)"
.1.3.6.1.2.1.25.6.3.1.2.56 = STRING: "Security Update for Windows XP (KB2779030)"
.1.3.6.1.2.1.25.6.3.1.2.57 = STRING: "Hotfix for Windows XP (KB2779562)"
.1.3.6.1.2.1.25.6.3.1.2.58 = STRING: "Security Update for Windows XP (KB2780091)"
.1.3.6.1.2.1.25.6.3.1.2.59 = STRING: "Security Update for Windows Internet Explorer 8 (KB2792100)"
.1.3.6.1.2.1.25.6.3.1.2.60 = STRING: "Security Update for Windows Internet Explorer 8 (KB2797052)"
.1.3.6.1.2.1.25.6.3.1.2.61 = STRING: "Security Update for Windows Internet Explorer 8 (KB2799329)"
.1.3.6.1.2.1.25.6.3.1.2.62 = STRING: "Security Update for Windows XP (KB2799494)"
.1.3.6.1.2.1.25.6.3.1.2.63 = STRING: "Security Update for Windows XP (KB2802968)"
.1.3.6.1.2.1.25.6.3.1.2.64 = STRING: "Windows Genuine Advantage Validation Tool (KB892130)"
.1.3.6.1.2.1.25.6.3.1.2.65 = STRING: "Microsoft Base Smart Card Cryptographic Service Provider Package"
.1.3.6.1.2.1.25.6.3.1.2.66 = STRING: "Security Update for Windows XP (KB923789)"
.1.3.6.1.2.1.25.6.3.1.2.67 = STRING: "Hotfix for Windows Media Format 11 SDK (KB929399)"
.1.3.6.1.2.1.25.6.3.1.2.68 = STRING: "Security Update for Windows XP (KB941569)"
.1.3.6.1.2.1.25.6.3.1.2.69 = STRING: "Hotfix for Windows XP (KB954550-v5)"
.1.3.6.1.2.1.25.6.3.1.2.70 = STRING: "Security Update for Windows Internet Explorer 8 (KB978207)"
.1.3.6.1.2.1.25.6.3.1.2.71 = STRING: "Update for Windows Internet Explorer 8 (KB980302)"
.1.3.6.1.2.1.25.6.3.1.2.72 = STRING: "Microsoft .NET Framework 1.1 Security Update (KB2698023)"
.1.3.6.1.2.1.25.6.3.1.2.73 = STRING: "Microsoft .NET Framework 1.1 Security Update (KB2742597)"
.1.3.6.1.2.1.25.6.3.1.2.74 = STRING: "Microsoft .NET Framework 1.1"
.1.3.6.1.2.1.25.6.3.1.2.75 = STRING: "Microsoft .NET Framework 3.5 SP1"
.1.3.6.1.2.1.25.6.3.1.2.76 = STRING: "Microsoft .NET Framework 4 Client Profile"
.1.3.6.1.2.1.25.6.3.1.2.77 = STRING: "Mozilla Firefox 19.0.2 (x86 ru)"
.1.3.6.1.2.1.25.6.3.1.2.78 = STRING: "Mozilla Thunderbird 9.0.1 (x86 ru)"
.1.3.6.1.2.1.25.6.3.1.2.79 = STRING: "Mozilla Maintenance Service"
.1.3.6.1.2.1.25.6.3.1.2.80 = STRING: "Naviextras Toolbox"
.1.3.6.1.2.1.25.6.3.1.2.81 = STRING: "Nokia Suite"
.1.3.6.1.2.1.25.6.3.1.2.82 = STRING: "Privoxy (remove only)"
.1.3.6.1.2.1.25.6.3.1.2.83 = STRING: "PuTTY version 0.60"
.1.3.6.1.2.1.25.6.3.1.2.84 = STRING: "Python 2.7 py2exe-0.6.9"
.1.3.6.1.2.1.25.6.3.1.2.85 = STRING: "Python 2.7 setuptools-0.6c11"
.1.3.6.1.2.1.25.6.3.1.2.86 = STRING: "SMPlayer 0.6.10"
.1.3.6.1.2.1.25.6.3.1.2.87 = STRING: "Synaptics Pointing Device Driver"
.1.3.6.1.2.1.25.6.3.1.2.88 = STRING: "�Torrent"
.1.3.6.1.2.1.25.6.3.1.2.89 = STRING: "Microsoft Kernel-Mode Driver Framework Feature Pack 1.9"
.1.3.6.1.2.1.25.6.3.1.2.90 = STRING: "Windows Genuine Advantage Validation Tool (KB892130)"
.1.3.6.1.2.1.25.6.3.1.2.91 = STRING: "Windows Genuine Advantage Notifications (KB905474)"
.1.3.6.1.2.1.25.6.3.1.2.92 = STRING: "Windows Media Format 11 runtime"
.1.3.6.1.2.1.25.6.3.1.2.93 = STRING: "Windows XP Service Pack 3"
.1.3.6.1.2.1.25.6.3.1.2.94 = STRING: "GIMP 2.6.11"
.1.3.6.1.2.1.25.6.3.1.2.95 = STRING: "WinRAR archiver"
.1.3.6.1.2.1.25.6.3.1.2.96 = STRING: "Windows Media Format 11 runtime"
.1.3.6.1.2.1.25.6.3.1.2.97 = STRING: "Microsoft User-Mode Driver Framework Feature Pack 1.0"
.1.3.6.1.2.1.25.6.3.1.2.98 = STRING: "Adobe AIR"
.1.3.6.1.2.1.25.6.3.1.2.99 = STRING: "HP Officejet 6500 E710a-f Help"
.1.3.6.1.2.1.25.6.3.1.2.100 = STRING: "WebFldrs XP"
.1.3.6.1.2.1.25.6.3.1.2.101 = STRING: "Microsoft .NET Framework 4 Client Profile"
.1.3.6.1.2.1.25.6.3.1.2.102 = STRING: "Update for Microsoft .NET Framework 4 Client Profile (KB2468871)"
.1.3.6.1.2.1.25.6.3.1.2.103 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.104 = STRING: "Update for Microsoft .NET Framework 4 Client Profile (KB2533523)"
.1.3.6.1.2.1.25.6.3.1.2.105 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.106 = STRING: "Update for Microsoft .NET Framework 4 Client Profile (KB2600217)"
.1.3.6.1.2.1.25.6.3.1.2.107 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.108 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.109 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.110 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.111 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.112 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.113 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.114 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.115 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.116 = STRING: "Security Update for Microsoft .NET Framework 4 Client Profile (K"
.1.3.6.1.2.1.25.6.3.1.2.117 = STRING: "Python 2.7 pycrypto-2.3"
.1.3.6.1.2.1.25.6.3.1.2.118 = STRING: "Naviextras Toolbox Prerequesities"
.1.3.6.1.2.1.25.6.3.1.2.119 = STRING: "HP Officejet 6500 E710a-f Basic Device Software"
.1.3.6.1.2.1.25.6.3.1.2.120 = STRING: "PC Connectivity Solution"
.1.3.6.1.2.1.25.6.3.1.2.121 = STRING: "MSVC80_x86_v2"
.1.3.6.1.2.1.25.6.3.1.2.122 = STRING: "Nokia Connectivity Cable Driver"
.1.3.6.1.2.1.25.6.3.1.2.123 = STRING: "Acrobat.com"
.1.3.6.1.2.1.25.6.3.1.2.124 = STRING: "Python 2.4"
.1.3.6.1.2.1.25.6.3.1.2.125 = STRING: "Falk Navi-Manager"
.1.3.6.1.2.1.25.6.3.1.2.126 = STRING: "MSXML 4.0 SP2 (KB954430)"
.1.3.6.1.2.1.25.6.3.1.2.127 = STRING: "Intel(R) Extreme Graphics 2 Driver"
.1.3.6.1.2.1.25.6.3.1.2.128 = STRING: "TomTom HOME Visual Studio Merge Modules"
.1.3.6.1.2.1.25.6.3.1.2.129 = STRING: "Microsoft Office - ���������������� ������ ������ 2003"
.1.3.6.1.2.1.25.6.3.1.2.130 = STRING: "Microsoft Office Access database engine 2007 (English)"
.1.3.6.1.2.1.25.6.3.1.2.131 = STRING: "TomTom HOME"
.1.3.6.1.2.1.25.6.3.1.2.132 = STRING: "Falk Navi-Manager"
.1.3.6.1.2.1.25.6.3.1.2.133 = STRING: "REALTEK Gigabit and Fast Ethernet NIC Driver"
.1.3.6.1.2.1.25.6.3.1.2.134 = STRING: "Python 2.6.1"
.1.3.6.1.2.1.25.6.3.1.2.135 = STRING: "RealSpeak Solo for UK English Emily"
.1.3.6.1.2.1.25.6.3.1.2.136 = STRING: "Microsoft .NET Framework 3.0 Service Pack 2"
.1.3.6.1.2.1.25.6.3.1.2.137 = STRING: "Adobe Reader 9"
.1.3.6.1.2.1.25.6.3.1.2.138 = STRING: "MSVC90_x86"
.1.3.6.1.2.1.25.6.3.1.2.139 = STRING: "Far Manager 2"
.1.3.6.1.2.1.25.6.3.1.2.140 = STRING: "Microsoft .NET Framework 2.0 Service Pack 2"
.1.3.6.1.2.1.25.6.3.1.2.141 = STRING: "Python 2.7.3"
.1.3.6.1.2.1.25.6.3.1.2.142 = STRING: "Microsoft AutoRoute 2007"
.1.3.6.1.2.1.25.6.3.1.2.143 = STRING: "Microsoft MapPoint Europe 2009"
.1.3.6.1.2.1.25.6.3.1.2.144 = STRING: "Microsoft .NET Framework 1.1"
.1.3.6.1.2.1.25.6.3.1.2.145 = STRING: "Microsoft .NET Framework 3.5 SP1"
.1.3.6.1.2.1.25.6.3.1.2.146 = STRING: "Security Update for Microsoft .NET Framework 3.5 SP1 (KB2604111)"
.1.3.6.1.2.1.25.6.3.1.2.147 = STRING: "Security Update for Microsoft .NET Framework 3.5 SP1 (KB2657424)"
.1.3.6.1.2.1.25.6.3.1.2.148 = STRING: "Security Update for Microsoft .NET Framework 3.5 SP1 (KB2736416)"
.1.3.6.1.2.1.25.6.3.1.2.149 = STRING: "Hotfix for Microsoft .NET Framework 3.5 SP1 (KB953595)"
.1.3.6.1.2.1.25.6.3.1.2.150 = STRING: "Hotfix for Microsoft .NET Framework 3.5 SP1 (KB958484)"
.1.3.6.1.2.1.25.6.3.1.2.151 = STRING: "Update for Microsoft .NET Framework 3.5 SP1 (KB963707)"
.1.3.6.1.2.1.25.6.3.1.2.152 = STRING: "Nokia Suite"
.1.3.6.1.2.1.25.6.3.1.2.153 = STRING: "Microsoft_VC100_CRT_SP1_x86"
.1.3.6.1.2.1.25.6.3.1.2.154 = STRING: "PL-2303 USB-to-Serial"
.1.3.6.1.2.1.25.6.3.1.2.155 = STRING: "MSXML 4.0 SP2 (KB973688)"
.1.3.6.1.2.1.25.6.3.1.2.156 = STRING: "Realtek AC'97 Audio"
.1.3.6.1.2.1.25.6.3.1.3.1 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.2 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.3 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.4 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.5 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.6 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.7 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.8 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.9 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.10 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.11 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.12 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.13 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.14 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.15 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.16 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.17 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.18 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.19 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.20 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.21 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.22 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.23 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.24 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.25 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.26 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.27 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.28 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.29 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.30 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.31 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.32 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.33 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.34 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.35 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.36 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.37 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.38 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.39 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.40 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.41 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.42 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.43 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.44 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.45 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.46 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.47 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.48 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.49 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.50 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.51 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.52 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.53 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.54 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.55 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.56 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.57 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.58 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.59 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.60 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.61 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.62 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.63 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.64 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.65 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.66 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.67 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.68 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.69 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.70 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.71 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.72 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.73 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.74 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.75 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.76 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.77 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.78 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.79 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.80 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.81 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.82 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.83 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.84 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.85 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.86 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.87 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.88 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.89 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.90 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.91 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.92 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.93 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.94 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.95 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.96 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.97 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.98 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.99 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.100 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.101 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.102 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.103 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.104 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.105 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.106 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.107 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.108 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.109 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.110 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.111 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.112 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.113 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.114 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.115 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.116 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.117 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.118 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.119 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.120 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.121 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.122 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.123 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.124 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.125 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.126 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.127 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.128 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.129 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.130 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.131 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.132 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.133 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.134 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.135 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.136 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.137 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.138 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.139 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.140 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.141 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.142 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.143 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.144 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.145 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.146 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.147 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.148 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.149 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.150 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.151 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.152 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.153 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.154 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.155 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.3.156 = OID: .0.0
.1.3.6.1.2.1.25.6.3.1.4.1 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.2 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.3 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.4 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.5 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.6 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.7 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.8 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.9 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.10 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.11 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.12 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.13 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.14 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.15 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.16 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.17 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.18 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.19 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.20 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.21 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.22 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.23 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.24 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.25 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.26 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.27 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.28 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.29 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.30 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.31 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.32 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.33 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.34 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.35 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.36 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.37 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.38 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.39 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.40 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.41 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.42 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.43 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.44 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.45 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.46 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.47 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.48 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.49 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.50 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.51 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.52 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.53 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.54 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.55 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.56 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.57 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.58 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.59 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.60 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.61 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.62 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.63 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.64 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.65 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.66 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.67 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.68 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.69 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.70 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.71 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.72 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.73 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.74 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.75 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.76 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.77 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.78 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.79 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.80 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.81 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.82 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.83 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.84 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.85 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.86 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.87 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.88 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.89 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.90 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.91 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.92 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.93 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.94 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.95 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.96 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.97 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.98 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.99 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.100 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.101 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.102 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.103 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.104 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.105 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.106 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.107 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.108 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.109 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.110 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.111 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.112 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.113 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.114 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.115 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.116 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.117 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.118 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.119 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.120 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.121 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.122 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.123 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.124 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.125 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.126 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.127 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.128 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.129 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.130 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.131 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.132 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.133 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.134 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.135 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.136 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.137 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.138 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.139 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.140 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.141 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.142 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.143 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.144 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.145 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.146 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.147 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.148 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.149 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.150 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.151 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.152 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.153 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.154 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.155 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.4.156 = INTEGER: 4
.1.3.6.1.2.1.25.6.3.1.5.1 = STRING: 2013-1-26,1:9:28.0
.1.3.6.1.2.1.25.6.3.1.5.2 = STRING: 2012-1-25,0:8:18.0
.1.3.6.1.2.1.25.6.3.1.5.3 = STRING: 2009-2-1,23:55:58.0
.1.3.6.1.2.1.25.6.3.1.5.4 = STRING: 2013-3-6,15:2:54.0
.1.3.6.1.2.1.25.6.3.1.5.5 = STRING: 2012-1-24,22:31:34.0
.1.3.6.1.2.1.25.6.3.1.5.6 = STRING: 2008-12-11,15:13:40.0
.1.3.6.1.2.1.25.6.3.1.5.7 = STRING: 2009-2-1,23:56:14.0
.1.3.6.1.2.1.25.6.3.1.5.8 = STRING: 2009-2-1,22:12:22.0
.1.3.6.1.2.1.25.6.3.1.5.9 = STRING: 2010-3-27,10:19:54.0
.1.3.6.1.2.1.25.6.3.1.5.10 = STRING: 2012-2-5,23:49:22.0
.1.3.6.1.2.1.25.6.3.1.5.11 = STRING: 2011-6-7,2:17:12.0
.1.3.6.1.2.1.25.6.3.1.5.12 = STRING: 2011-6-7,2:19:50.0
.1.3.6.1.2.1.25.6.3.1.5.13 = STRING: 2011-10-27,0:47:20.0
.1.3.6.1.2.1.25.6.3.1.5.14 = STRING: 2011-10-27,0:48:8.0
.1.3.6.1.2.1.25.6.3.1.5.15 = STRING: 2012-2-5,23:49:28.0
.1.3.6.1.2.1.25.6.3.1.5.16 = STRING: 2012-1-24,22:29:32.0
.1.3.6.1.2.1.25.6.3.1.5.17 = STRING: 2012-3-18,20:58:54.0
.1.3.6.1.2.1.25.6.3.1.5.18 = STRING: 2012-2-5,23:49:36.0
.1.3.6.1.2.1.25.6.3.1.5.19 = STRING: 2012-3-18,21:1:18.0
.1.3.6.1.2.1.25.6.3.1.5.20 = STRING: 2012-2-19,22:0:38.0
.1.3.6.1.2.1.25.6.3.1.5.21 = STRING: 2012-3-18,20:58:48.0
.1.3.6.1.2.1.25.6.3.1.5.22 = STRING: 2012-5-13,15:57:36.0
.1.3.6.1.2.1.25.6.3.1.5.23 = STRING: 2012-8-18,17:8:48.0
.1.3.6.1.2.1.25.6.3.1.5.24 = STRING: 2012-5-16,23:24:46.0
.1.3.6.1.2.1.25.6.3.1.5.25 = STRING: 2012-2-19,22:0:44.0
.1.3.6.1.2.1.25.6.3.1.5.26 = STRING: 2012-10-15,1:0:4.0
.1.3.6.1.2.1.25.6.3.1.5.27 = STRING: 2012-2-19,22:0:18.0
.1.3.6.1.2.1.25.6.3.1.5.28 = STRING: 2012-5-13,16:0:4.0
.1.3.6.1.2.1.25.6.3.1.5.29 = STRING: 2012-8-18,10:7:48.0
.1.3.6.1.2.1.25.6.3.1.5.30 = STRING: 2012-5-16,23:14:38.0
.1.3.6.1.2.1.25.6.3.1.5.31 = STRING: 2012-8-18,17:13:26.0
.1.3.6.1.2.1.25.6.3.1.5.32 = STRING: 2012-5-16,23:14:28.0
.1.3.6.1.2.1.25.6.3.1.5.33 = STRING: 2012-8-18,17:4:20.0
.1.3.6.1.2.1.25.6.3.1.5.34 = STRING: 2012-8-18,17:5:10.0
.1.3.6.1.2.1.25.6.3.1.5.35 = STRING: 2012-8-18,17:15:46.0
.1.3.6.1.2.1.25.6.3.1.5.36 = STRING: 2012-8-18,17:15:52.0
.1.3.6.1.2.1.25.6.3.1.5.37 = STRING: 2012-8-18,17:4:56.0
.1.3.6.1.2.1.25.6.3.1.5.38 = STRING: 2012-8-18,17:5:2.0
.1.3.6.1.2.1.25.6.3.1.5.39 = STRING: 2012-8-18,17:3:34.0
.1.3.6.1.2.1.25.6.3.1.5.40 = STRING: 2012-8-18,17:4:36.0
.1.3.6.1.2.1.25.6.3.1.5.41 = STRING: 2012-10-15,0:59:58.0
.1.3.6.1.2.1.25.6.3.1.5.42 = STRING: 2012-11-24,13:54:50.0
.1.3.6.1.2.1.25.6.3.1.5.43 = STRING: 2012-8-18,17:15:34.0
.1.3.6.1.2.1.25.6.3.1.5.44 = STRING: 2012-10-15,0:59:20.0
.1.3.6.1.2.1.25.6.3.1.5.45 = STRING: 2012-10-15,0:59:44.0
.1.3.6.1.2.1.25.6.3.1.5.46 = STRING: 2012-10-15,0:59:50.0
.1.3.6.1.2.1.25.6.3.1.5.47 = STRING: 2012-12-16,19:50:10.0
.1.3.6.1.2.1.25.6.3.1.5.48 = STRING: 2013-1-4,16:31:54.0
.1.3.6.1.2.1.25.6.3.1.5.49 = STRING: 2012-10-15,1:0:8.0
.1.3.6.1.2.1.25.6.3.1.5.50 = STRING: 2013-1-24,22:3:56.0
.1.3.6.1.2.1.25.6.3.1.5.51 = STRING: 2012-12-16,19:50:18.0
.1.3.6.1.2.1.25.6.3.1.5.52 = STRING: 2012-11-24,13:54:32.0
.1.3.6.1.2.1.25.6.3.1.5.53 = STRING: 2012-12-16,19:50:54.0
.1.3.6.1.2.1.25.6.3.1.5.54 = STRING: 2012-12-16,19:50:28.0
.1.3.6.1.2.1.25.6.3.1.5.55 = STRING: 2013-2-25,16:43:24.0
.1.3.6.1.2.1.25.6.3.1.5.56 = STRING: 2012-12-16,19:50:24.0
.1.3.6.1.2.1.25.6.3.1.5.57 = STRING: 2012-12-16,19:50:58.0
.1.3.6.1.2.1.25.6.3.1.5.58 = STRING: 2013-2-25,16:43:2.0
.1.3.6.1.2.1.25.6.3.1.5.59 = STRING: 2013-2-25,16:42:54.0
.1.3.6.1.2.1.25.6.3.1.5.60 = STRING: 2013-2-25,16:43:30.0
.1.3.6.1.2.1.25.6.3.1.5.61 = STRING: 2013-1-24,22:11:14.0
.1.3.6.1.2.1.25.6.3.1.5.62 = STRING: 2013-2-25,16:43:18.0
.1.3.6.1.2.1.25.6.3.1.5.63 = STRING: 2013-2-25,16:43:6.0
.1.3.6.1.2.1.25.6.3.1.5.64 = STRING: 2008-12-11,15:17:48.0
.1.3.6.1.2.1.25.6.3.1.5.65 = STRING: 2009-4-9,0:4:14.0
.1.3.6.1.2.1.25.6.3.1.5.66 = STRING: 2008-12-11,16:19:26.0
.1.3.6.1.2.1.25.6.3.1.5.67 = STRING: 2013-2-22,19:50:0.0
.1.3.6.1.2.1.25.6.3.1.5.68 = STRING: 2013-2-22,19:51:52.0
.1.3.6.1.2.1.25.6.3.1.5.69 = STRING: 2009-4-8,23:56:52.0
.1.3.6.1.2.1.25.6.3.1.5.70 = STRING: 2010-3-27,10:20:18.0
.1.3.6.1.2.1.25.6.3.1.5.71 = STRING: 2010-3-27,10:20:26.0
.1.3.6.1.2.1.25.6.3.1.5.72 = STRING: 2012-11-24,13:58:24.0
.1.3.6.1.2.1.25.6.3.1.5.73 = STRING: 2013-1-24,22:3:0.0
.1.3.6.1.2.1.25.6.3.1.5.74 = STRING: 2008-12-11,16:47:28.0
.1.3.6.1.2.1.25.6.3.1.5.75 = STRING: 2009-4-8,23:58:20.0
.1.3.6.1.2.1.25.6.3.1.5.76 = STRING: 2012-2-20,22:19:28.0
.1.3.6.1.2.1.25.6.3.1.5.77 = STRING: 2013-3-10,14:13:36.0
.1.3.6.1.2.1.25.6.3.1.5.78 = STRING: 2012-1-24,23:44:32.0
.1.3.6.1.2.1.25.6.3.1.5.79 = STRING: 2013-3-10,14:13:38.0
.1.3.6.1.2.1.25.6.3.1.5.80 = STRING: 2012-4-24,0:16:34.0
.1.3.6.1.2.1.25.6.3.1.5.81 = STRING: 2013-1-26,1:11:20.0
.1.3.6.1.2.1.25.6.3.1.5.82 = STRING: 2008-12-11,18:6:30.0
.1.3.6.1.2.1.25.6.3.1.5.83 = STRING: 2008-12-11,18:5:24.0
.1.3.6.1.2.1.25.6.3.1.5.84 = STRING: 2012-10-14,22:53:48.0
.1.3.6.1.2.1.25.6.3.1.5.85 = STRING: 2012-10-14,22:54:0.0
.1.3.6.1.2.1.25.6.3.1.5.86 = STRING: 2012-1-24,22:30:28.0
.1.3.6.1.2.1.25.6.3.1.5.87 = STRING: 2008-12-11,15:5:58.0
.1.3.6.1.2.1.25.6.3.1.5.88 = STRING: 2012-2-4,20:41:42.0
.1.3.6.1.2.1.25.6.3.1.5.89 = STRING: 2013-1-26,1:12:50.0
.1.3.6.1.2.1.25.6.3.1.5.90 = STRING: 2008-12-11,15:17:48.0
.1.3.6.1.2.1.25.6.3.1.5.91 = STRING: 2009-4-16,11:18:6.0
.1.3.6.1.2.1.25.6.3.1.5.92 = STRING: 2013-1-26,1:7:22.0
.1.3.6.1.2.1.25.6.3.1.5.93 = STRING: 2010-3-27,10:19:54.0
.1.3.6.1.2.1.25.6.3.1.5.94 = STRING: 2011-11-30,0:7:0.0
.1.3.6.1.2.1.25.6.3.1.5.95 = STRING: 2008-12-14,21:17:48.0
.1.3.6.1.2.1.25.6.3.1.5.96 = STRING: 2013-1-26,1:7:22.0
.1.3.6.1.2.1.25.6.3.1.5.97 = STRING: 2013-1-26,1:6:36.0
.1.3.6.1.2.1.25.6.3.1.5.98 = STRING: 2009-2-1,23:55:58.0
.1.3.6.1.2.1.25.6.3.1.5.99 = STRING: 2011-11-29,23:41:10.0
.1.3.6.1.2.1.25.6.3.1.5.100 = STRING: 2008-12-11,15:52:38.0
.1.3.6.1.2.1.25.6.3.1.5.101 = STRING: 2013-2-25,16:40:56.0
.1.3.6.1.2.1.25.6.3.1.5.102 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.103 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.104 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.105 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.106 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.107 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.108 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.109 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.110 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.111 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.112 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.113 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.114 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.115 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.116 = STRING: 2013-2-25,16:40:22.0
.1.3.6.1.2.1.25.6.3.1.5.117 = STRING: 2012-10-14,22:54:24.0
.1.3.6.1.2.1.25.6.3.1.5.118 = STRING: 2012-4-24,0:16:40.0
.1.3.6.1.2.1.25.6.3.1.5.119 = STRING: 2011-11-29,23:41:4.0
.1.3.6.1.2.1.25.6.3.1.5.120 = STRING: 2013-1-26,1:9:26.0
.1.3.6.1.2.1.25.6.3.1.5.121 = STRING: 2013-1-26,1:7:52.0
.1.3.6.1.2.1.25.6.3.1.5.122 = STRING: 2013-1-26,1:9:14.0
.1.3.6.1.2.1.25.6.3.1.5.123 = STRING: 2009-2-1,23:56:14.0
.1.3.6.1.2.1.25.6.3.1.5.124 = STRING: 2012-10-15,0:36:28.0
.1.3.6.1.2.1.25.6.3.1.5.125 = STRING: 2009-5-9,14:42:52.0
.1.3.6.1.2.1.25.6.3.1.5.126 = STRING: 2009-5-10,10:25:22.0
.1.3.6.1.2.1.25.6.3.1.5.127 = STRING: 2008-12-11,15:8:2.0
.1.3.6.1.2.1.25.6.3.1.5.128 = STRING: 2012-8-18,11:9:32.0
.1.3.6.1.2.1.25.6.3.1.5.129 = STRING: 2009-1-5,23:45:14.0
.1.3.6.1.2.1.25.6.3.1.5.130 = STRING: 2009-4-17,0:3:34.0
.1.3.6.1.2.1.25.6.3.1.5.131 = STRING: 2012-8-18,11:9:56.0
.1.3.6.1.2.1.25.6.3.1.5.132 = STRING: 2009-5-9,14:42:56.0
.1.3.6.1.2.1.25.6.3.1.5.133 = STRING: 2008-12-11,15:7:26.0
.1.3.6.1.2.1.25.6.3.1.5.134 = STRING: 2008-12-14,22:35:24.0
.1.3.6.1.2.1.25.6.3.1.5.135 = STRING: 2008-12-14,21:24:14.0
.1.3.6.1.2.1.25.6.3.1.5.136 = STRING: 2013-1-24,22:10:6.0
.1.3.6.1.2.1.25.6.3.1.5.137 = STRING: 2009-2-1,23:55:38.0
.1.3.6.1.2.1.25.6.3.1.5.138 = STRING: 2013-1-26,1:7:58.0
.1.3.6.1.2.1.25.6.3.1.5.139 = STRING: 2012-10-14,22:46:34.0
.1.3.6.1.2.1.25.6.3.1.5.140 = STRING: 2013-2-25,16:38:46.0
.1.3.6.1.2.1.25.6.3.1.5.141 = STRING: 2012-10-14,22:50:52.0
.1.3.6.1.2.1.25.6.3.1.5.142 = STRING: 2008-12-14,21:22:54.0
.1.3.6.1.2.1.25.6.3.1.5.143 = STRING: 2009-4-17,0:6:4.0
.1.3.6.1.2.1.25.6.3.1.5.144 = STRING: 2013-1-24,22:3:0.0
.1.3.6.1.2.1.25.6.3.1.5.145 = STRING: 2013-1-24,22:4:26.0
.1.3.6.1.2.1.25.6.3.1.5.146 = STRING: 2013-1-24,22:4:26.0
.1.3.6.1.2.1.25.6.3.1.5.147 = STRING: 2013-1-24,22:4:26.0
.1.3.6.1.2.1.25.6.3.1.5.148 = STRING: 2013-1-24,22:4:26.0
.1.3.6.1.2.1.25.6.3.1.5.149 = STRING: 2009-4-8,23:58:18.0
.1.3.6.1.2.1.25.6.3.1.5.150 = STRING: 2013-1-24,22:4:26.0
.1.3.6.1.2.1.25.6.3.1.5.151 = STRING: 2010-3-27,10:38:4.0
.1.3.6.1.2.1.25.6.3.1.5.152 = STRING: 2013-1-26,1:11:32.0
.1.3.6.1.2.1.25.6.3.1.5.153 = STRING: 2013-1-26,1:8:0.0
.1.3.6.1.2.1.25.6.3.1.5.154 = STRING: 2008-12-11,17:42:40.0
.1.3.6.1.2.1.25.6.3.1.5.155 = STRING: 2010-3-27,9:50:10.0
.1.3.6.1.2.1.25.6.3.1.5.156 = STRING: 2008-12-11,15:1:12.0
.1.3.6.1.4.1.77.1.1.1.0 = STRING: "5"
.1.3.6.1.4.1.77.1.1.2.0 = STRING: "1"
.1.3.6.1.4.1.77.1.1.3.0 = Hex-STRING: 03 00 00 00
.1.3.6.1.4.1.77.1.1.4.0 = INTEGER: 1362908398
.1.3.6.1.4.1.77.1.1.5.0 = Counter32: 7
.1.3.6.1.4.1.77.1.1.6.0 = Counter32: 0
.1.3.6.1.4.1.77.1.1.7.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.1.0 = ""
.1.3.6.1.4.1.77.1.2.2.0 = INTEGER: 50
.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.9.69.118.101.110.116.32.76.111.103 = STRING: "Event Log"
.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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.101 = STRING: "Windows Time"
.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115 = STRING: "IPSEC Services"
.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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121 = STRING: "Remote Registry"
.1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110 = STRING: "Secondary Logon"
.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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116 = STRING: "Help and Support"
.1.3.6.1.4.1.77.1.2.3.1.1.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114 = STRING: "Infrared Monitor"
.1.3.6.1.4.1.77.1.2.3.1.1.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115 = STRING: "Automatic Updates"
.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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101 = STRING: "Protected Storage"
.1.3.6.1.4.1.77.1.2.3.1.1.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101 = STRING: "SNMP Trap Service"
.1.3.6.1.4.1.77.1.2.3.1.1.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115 = STRING: "Terminal Services"
.1.3.6.1.4.1.77.1.2.3.1.1.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115 = STRING: "Network Connections"
.1.3.6.1.4.1.77.1.2.3.1.1.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114 = STRING: "Logical Disk Manager"
.1.3.6.1.4.1.77.1.2.3.1.1.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114 = STRING: "Machine Debug Manager"
.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.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = STRING: "SSDP Discovery Service"
.1.3.6.1.4.1.77.1.2.3.1.1.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101 = STRING: "System Restore Service"
.1.3.6.1.4.1.77.1.2.3.1.1.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Error Reporting 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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101 = STRING: "Bluetooth Support Service"
.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.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 = STRING: "System Event Notification"
.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.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = STRING: "Wireless Zero Configuration"
.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.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.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.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.32.40.78.76.65.41 = STRING: "Network Location Awareness (NLA)"
.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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101 = STRING: "Application Layer Gateway Service"
.1.3.6.1.4.1.77.1.2.3.1.1.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121 = STRING: "Fast User Switching Compatibility"
.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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101 = STRING: "Background Intelligent Transfer Service"
.1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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: "Windows Firewall/Internet Connection Sharing (ICS)"
.1.3.6.1.4.1.77.1.2.3.1.1.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107 = STRING: "Windows Driver Foundation - User-mode Driver Framework"
.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.9.69.118.101.110.116.32.76.111.103 = 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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115 = 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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110 = 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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115 = 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.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.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.23.69.114.114.111.114.32.82.101.112.111.114.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.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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101 = 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.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 = 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41 = 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121 = 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4
.1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107 = INTEGER: 4
.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.9.69.118.101.110.116.32.76.111.103 = 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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115 = 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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110 = 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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115 = 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.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.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.23.69.114.114.111.114.32.82.101.112.111.114.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.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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101 = 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.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 = 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41 = 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121 = 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107 = INTEGER: 1
.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.9.69.118.101.110.116.32.76.111.103 = INTEGER: 1
.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: 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.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.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.87.105.110.100.111.119.115.32.84.105.109.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: 1
.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115 = 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.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110 = 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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115 = 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.4.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.23.69.114.114.111.114.32.82.101.112.111.114.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.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.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101 = 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.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 = 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41 = 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121 = 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114 = INTEGER: 2
.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.9.69.118.101.110.116.32.76.111.103 = 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.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.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.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.87.105.110.100.111.119.115.32.84.105.109.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.73.80.83.69.67.32.83.101.114.118.105.99.101.115 = 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: 2
.1.3.6.1.4.1.77.1.2.3.1.5.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110 = INTEGER: 2
.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.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.3.1.5.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115 = 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.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.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.83.83.68.80.32.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.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.23.69.114.114.111.114.32.82.101.112.111.114.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.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: 2
.1.3.6.1.4.1.77.1.2.3.1.5.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101 = 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.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 = 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.87.105.114.101.108.101.115.115.32.90.101.114.111.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.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.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.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.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.32.40.78.76.65.41 = 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.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121 = 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.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107 = INTEGER: 1
.1.3.6.1.4.1.77.1.2.4.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.5.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.6.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.7.0 = Counter32: 1
.1.3.6.1.4.1.77.1.2.8.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.9.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.10.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.11.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.12.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.13.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.14.0 = INTEGER: 0
.1.3.6.1.4.1.77.1.2.15.0 = INTEGER: 2
.1.3.6.1.4.1.77.1.2.16.0 = INTEGER: 10
.1.3.6.1.4.1.77.1.2.17.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.18.0 = Counter32: 0
.1.3.6.1.4.1.77.1.2.19.0 = INTEGER: 0
.1.3.6.1.4.1.77.1.2.21.0 = INTEGER: 0
.1.3.6.1.4.1.77.1.2.22.0 = INTEGER: 15
.1.3.6.1.4.1.77.1.2.24.0 = INTEGER: 6
.1.3.6.1.4.1.77.1.2.25.1.1.4.105.108.121.97 = STRING: "ilya"
.1.3.6.1.4.1.77.1.2.25.1.1.5.71.117.101.115.116 = STRING: "Guest"
.1.3.6.1.4.1.77.1.2.25.1.1.6.65.83.80.78.69.84 = STRING: "ASPNET"
.1.3.6.1.4.1.77.1.2.25.1.1.13.65.100.109.105.110.105.115.116.114.97.116.111.114 = STRING: "Administrator"
.1.3.6.1.4.1.77.1.2.25.1.1.13.72.101.108.112.65.115.115.105.115.116.97.110.116 = STRING: "HelpAssistant"
.1.3.6.1.4.1.77.1.2.25.1.1.16.83.85.80.80.79.82.84.95.51.56.56.57.52.53.97.48 = STRING: "SUPPORT_388945a0"
.1.3.6.1.4.1.77.1.2.26.0 = INTEGER: 0
.1.3.6.1.4.1.77.1.2.28.0 = INTEGER: 0
.1.3.6.1.4.1.77.1.3.1.0 = Counter32: 0
.1.3.6.1.4.1.77.1.3.2.0 = Counter32: 0
.1.3.6.1.4.1.77.1.3.3.0 = Counter32: 0
.1.3.6.1.4.1.77.1.3.4.0 = Counter32: 0
.1.3.6.1.4.1.77.1.3.5.0 = Counter32: 0
.1.3.6.1.4.1.77.1.3.7.0 = INTEGER: 0
.1.3.6.1.4.1.77.1.4.1.0 = STRING: "WORKGROUP"
.1.3.6.1.4.1.311.1.9 = No more variables left in this MIB View (It is past the end of the MIB tree)
snmpsim-0.4.5/data/mib2dev/ 0000775 0063214 0063214 00000000000 13412164240 015646 5 ustar ietingof ietingof snmpsim-0.4.5/data/mib2dev/udp-mib.snmprec 0000664 0063214 0063214 00000001371 13051045252 020576 0 ustar ietingof ietingof 1.3.6.1.2.1.7.1.0|65|2227133058
1.3.6.1.2.1.7.2.0|65|2937178585
1.3.6.1.2.1.7.3.0|65|1729892225
1.3.6.1.2.1.7.4.0|65|3771766783
1.3.6.1.2.1.7.5.1.1.8.185.250.193.1|64x|9cd2059e
1.3.6.1.2.1.7.5.1.2.8.185.250.193.1|2|4
1.3.6.1.2.1.7.7.1.1.2.0.100.3.0.123.990022909|2|3
1.3.6.1.2.1.7.7.1.2.2.0.100.3.0.123.990022909|4|whisky au juge blond qui
1.3.6.1.2.1.7.7.1.3.2.0.100.3.0.123.990022909|66|422
1.3.6.1.2.1.7.7.1.4.2.0.100.3.0.123.990022909|2|1
1.3.6.1.2.1.7.7.1.5.2.0.100.3.0.123.990022909|4|
1.3.6.1.2.1.7.7.1.6.2.0.100.3.0.123.990022909|66|322
1.3.6.1.2.1.7.7.1.7.2.0.100.3.0.123.990022909|66|942640476
1.3.6.1.2.1.7.7.1.8.2.0.100.3.0.123.990022909|66|543812974
1.3.6.1.2.1.7.8.0|70|3896031866066683889
1.3.6.1.2.1.7.9.0|70|3518073560493506800
snmpsim-0.4.5/data/mib2dev/ip-mib.snmprec 0000664 0063214 0063214 00000021424 13051045252 020417 0 ustar ietingof ietingof 1.3.6.1.2.1.4.1.0|2|1
1.3.6.1.2.1.4.2.0|2|1
1.3.6.1.2.1.4.3.0|65|2035416375
1.3.6.1.2.1.4.4.0|65|2175077423
1.3.6.1.2.1.4.5.0|65|2158058703
1.3.6.1.2.1.4.6.0|65|860047890
1.3.6.1.2.1.4.7.0|65|6783795
1.3.6.1.2.1.4.8.0|65|2027762467
1.3.6.1.2.1.4.9.0|65|2483846572
1.3.6.1.2.1.4.10.0|65|1076235296
1.3.6.1.2.1.4.11.0|65|412405168
1.3.6.1.2.1.4.12.0|65|3014747860
1.3.6.1.2.1.4.13.0|2|2
1.3.6.1.2.1.4.14.0|65|1791875548
1.3.6.1.2.1.4.15.0|65|1024408663
1.3.6.1.2.1.4.16.0|65|1493665683
1.3.6.1.2.1.4.17.0|65|141242718
1.3.6.1.2.1.4.18.0|65|2756757534
1.3.6.1.2.1.4.19.0|65|4046003556
1.3.6.1.2.1.4.20.1.1.217.81.65.45|64x|7f422220
1.3.6.1.2.1.4.20.1.2.217.81.65.45|2|2
1.3.6.1.2.1.4.20.1.3.217.81.65.45|64x|982db160
1.3.6.1.2.1.4.20.1.4.217.81.65.45|2|0
1.3.6.1.2.1.4.20.1.5.217.81.65.45|2|2
1.3.6.1.2.1.4.22.1.1.2.103.134.50.241|2|2
1.3.6.1.2.1.4.22.1.2.2.103.134.50.241|4|
1.3.6.1.2.1.4.22.1.3.2.103.134.50.241|64|32VF
1.3.6.1.2.1.4.22.1.4.2.103.134.50.241|2|4
1.3.6.1.2.1.4.23.0|65|1358755223
1.3.6.1.2.1.4.25.0|2|2
1.3.6.1.2.1.4.26.0|2|3
1.3.6.1.2.1.4.27.0|67|537780670
1.3.6.1.2.1.4.28.1.1.1|2|2
1.3.6.1.2.1.4.28.1.2.1|2|1
1.3.6.1.2.1.4.28.1.3.1|2|2
1.3.6.1.2.1.4.28.1.4.1|66|2258208522
1.3.6.1.2.1.4.29.0|67|3854076527
1.3.6.1.2.1.4.30.1.1.4|2|4
1.3.6.1.2.1.4.30.1.2.4|66|1524
1.3.6.1.2.1.4.30.1.3.4|4|
1.3.6.1.2.1.4.30.1.5.4|2|2
1.3.6.1.2.1.4.30.1.6.4|66|441517809
1.3.6.1.2.1.4.30.1.7.4|66|1521568795
1.3.6.1.2.1.4.30.1.8.4|2|1
1.3.6.1.2.1.4.31.1.1.1.2|2|1
1.3.6.1.2.1.4.31.1.1.3.2|65|1319871645
1.3.6.1.2.1.4.31.1.1.4.2|70|10241212525224358552
1.3.6.1.2.1.4.31.1.1.5.2|65|2046910358
1.3.6.1.2.1.4.31.1.1.6.2|70|16426718174576467683
1.3.6.1.2.1.4.31.1.1.7.2|65|2339217895
1.3.6.1.2.1.4.31.1.1.8.2|65|867061418
1.3.6.1.2.1.4.31.1.1.9.2|65|2640129705
1.3.6.1.2.1.4.31.1.1.10.2|65|154239893
1.3.6.1.2.1.4.31.1.1.11.2|65|311844703
1.3.6.1.2.1.4.31.1.1.12.2|65|1887490396
1.3.6.1.2.1.4.31.1.1.13.2|70|13368947016811771209
1.3.6.1.2.1.4.31.1.1.14.2|65|2543923602
1.3.6.1.2.1.4.31.1.1.15.2|65|3697907749
1.3.6.1.2.1.4.31.1.1.16.2|65|341303019
1.3.6.1.2.1.4.31.1.1.17.2|65|4221798959
1.3.6.1.2.1.4.31.1.1.18.2|65|2126137220
1.3.6.1.2.1.4.31.1.1.19.2|70|13518625427439590892
1.3.6.1.2.1.4.31.1.1.20.2|65|1856454422
1.3.6.1.2.1.4.31.1.1.21.2|70|15644997524547908418
1.3.6.1.2.1.4.31.1.1.22.2|65|1738996595
1.3.6.1.2.1.4.31.1.1.23.2|65|4099132340
1.3.6.1.2.1.4.31.1.1.24.2|70|4291111826261409205
1.3.6.1.2.1.4.31.1.1.25.2|65|4153402535
1.3.6.1.2.1.4.31.1.1.26.2|65|268679473
1.3.6.1.2.1.4.31.1.1.27.2|65|219169612
1.3.6.1.2.1.4.31.1.1.28.2|65|2038890835
1.3.6.1.2.1.4.31.1.1.29.2|65|3711124817
1.3.6.1.2.1.4.31.1.1.30.2|65|191106389
1.3.6.1.2.1.4.31.1.1.31.2|70|9372539604864229174
1.3.6.1.2.1.4.31.1.1.32.2|65|761579409
1.3.6.1.2.1.4.31.1.1.33.2|70|9374421021343033843
1.3.6.1.2.1.4.31.1.1.34.2|65|2203783110
1.3.6.1.2.1.4.31.1.1.35.2|70|12210115150660999618
1.3.6.1.2.1.4.31.1.1.36.2|65|2427403529
1.3.6.1.2.1.4.31.1.1.37.2|70|9271932199513040580
1.3.6.1.2.1.4.31.1.1.38.2|65|1901855306
1.3.6.1.2.1.4.31.1.1.39.2|70|2626066358545826941
1.3.6.1.2.1.4.31.1.1.40.2|65|3774242418
1.3.6.1.2.1.4.31.1.1.41.2|70|15886585808742535197
1.3.6.1.2.1.4.31.1.1.42.2|65|2467319633
1.3.6.1.2.1.4.31.1.1.43.2|70|4631516919343449355
1.3.6.1.2.1.4.31.1.1.44.2|65|1977109091
1.3.6.1.2.1.4.31.1.1.45.2|70|5871517990539190749
1.3.6.1.2.1.4.31.1.1.46.2|67|1075592786
1.3.6.1.2.1.4.31.1.1.47.2|66|3947563456
1.3.6.1.2.1.4.31.2.0|67|2877103511
1.3.6.1.2.1.4.31.3.1.1.2.1|2|2
1.3.6.1.2.1.4.31.3.1.2.2.1|2|2
1.3.6.1.2.1.4.31.3.1.3.2.1|65|3065604099
1.3.6.1.2.1.4.31.3.1.4.2.1|70|14773269553409606240
1.3.6.1.2.1.4.31.3.1.5.2.1|65|3253317272
1.3.6.1.2.1.4.31.3.1.6.2.1|70|5850246508087891671
1.3.6.1.2.1.4.31.3.1.7.2.1|65|717602070
1.3.6.1.2.1.4.31.3.1.8.2.1|65|3556718126
1.3.6.1.2.1.4.31.3.1.9.2.1|65|550927255
1.3.6.1.2.1.4.31.3.1.10.2.1|65|1018740666
1.3.6.1.2.1.4.31.3.1.11.2.1|65|1205293629
1.3.6.1.2.1.4.31.3.1.12.2.1|65|4147874411
1.3.6.1.2.1.4.31.3.1.13.2.1|70|1134393669980925658
1.3.6.1.2.1.4.31.3.1.14.2.1|65|2321468725
1.3.6.1.2.1.4.31.3.1.15.2.1|65|4017253985
1.3.6.1.2.1.4.31.3.1.16.2.1|65|496316044
1.3.6.1.2.1.4.31.3.1.17.2.1|65|1452990766
1.3.6.1.2.1.4.31.3.1.18.2.1|65|2350148553
1.3.6.1.2.1.4.31.3.1.19.2.1|70|8604721799167563239
1.3.6.1.2.1.4.31.3.1.20.2.1|65|3160325252
1.3.6.1.2.1.4.31.3.1.21.2.1|70|7127755570941844834
1.3.6.1.2.1.4.31.3.1.23.2.1|65|1417319954
1.3.6.1.2.1.4.31.3.1.24.2.1|70|10439468285489285907
1.3.6.1.2.1.4.31.3.1.25.2.1|65|3031160401
1.3.6.1.2.1.4.31.3.1.26.2.1|65|3362580360
1.3.6.1.2.1.4.31.3.1.27.2.1|65|4265453024
1.3.6.1.2.1.4.31.3.1.28.2.1|65|954533339
1.3.6.1.2.1.4.31.3.1.29.2.1|65|1066419429
1.3.6.1.2.1.4.31.3.1.30.2.1|65|3245681214
1.3.6.1.2.1.4.31.3.1.31.2.1|70|14257172622717697607
1.3.6.1.2.1.4.31.3.1.32.2.1|65|1242357745
1.3.6.1.2.1.4.31.3.1.33.2.1|70|11441142468662171212
1.3.6.1.2.1.4.31.3.1.34.2.1|65|3783275833
1.3.6.1.2.1.4.31.3.1.35.2.1|70|7571810925098172639
1.3.6.1.2.1.4.31.3.1.36.2.1|65|3455104647
1.3.6.1.2.1.4.31.3.1.37.2.1|70|3950873085647366592
1.3.6.1.2.1.4.31.3.1.38.2.1|65|4098489152
1.3.6.1.2.1.4.31.3.1.39.2.1|70|7832875572405130113
1.3.6.1.2.1.4.31.3.1.40.2.1|65|910283785
1.3.6.1.2.1.4.31.3.1.41.2.1|70|5723471996600972430
1.3.6.1.2.1.4.31.3.1.42.2.1|65|3432510124
1.3.6.1.2.1.4.31.3.1.43.2.1|70|15926793957662572130
1.3.6.1.2.1.4.31.3.1.44.2.1|65|2529487197
1.3.6.1.2.1.4.31.3.1.45.2.1|70|13879071524031488768
1.3.6.1.2.1.4.31.3.1.46.2.1|67|3552208177
1.3.6.1.2.1.4.31.3.1.47.2.1|66|3638164635
1.3.6.1.2.1.4.32.1.1.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|2|3
1.3.6.1.2.1.4.32.1.2.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|2|4
1.3.6.1.2.1.4.32.1.3.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|4|
1.3.6.1.2.1.4.32.1.4.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|66|1024
1.3.6.1.2.1.4.32.1.5.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|2|2
1.3.6.1.2.1.4.32.1.6.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|2|1
1.3.6.1.2.1.4.32.1.7.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|2|1
1.3.6.1.2.1.4.32.1.8.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|66|1700165974
1.3.6.1.2.1.4.32.1.9.4.3.20.119.104.105.115.107.121.32.97.117.32.106.117.103.101.32.98.108.111.110.100.1024|66|3582716905
1.3.6.1.2.1.4.33.0|2|3
1.3.6.1.2.1.4.34.1.1.2.9.80.111.114.116.101.122.32.99.101|2|4
1.3.6.1.2.1.4.34.1.2.2.9.80.111.114.116.101.122.32.99.101|4|
1.3.6.1.2.1.4.34.1.3.2.9.80.111.114.116.101.122.32.99.101|2|1
1.3.6.1.2.1.4.34.1.4.2.9.80.111.114.116.101.122.32.99.101|2|3
1.3.6.1.2.1.4.34.1.5.2.9.80.111.114.116.101.122.32.99.101|6|1.3.6.1.3.22.183.198
1.3.6.1.2.1.4.34.1.6.2.9.80.111.114.116.101.122.32.99.101|2|1
1.3.6.1.2.1.4.34.1.7.2.9.80.111.114.116.101.122.32.99.101|2|4
1.3.6.1.2.1.4.34.1.8.2.9.80.111.114.116.101.122.32.99.101|67|1588934134
1.3.6.1.2.1.4.34.1.9.2.9.80.111.114.116.101.122.32.99.101|67|2183890173
1.3.6.1.2.1.4.34.1.10.2.9.80.111.114.116.101.122.32.99.101|2|4
1.3.6.1.2.1.4.34.1.11.2.9.80.111.114.116.101.122.32.99.101|2|2
1.3.6.1.2.1.4.35.1.1.4.2.8.99.101.32.118.105.101.117.120|2|4
1.3.6.1.2.1.4.35.1.2.4.2.8.99.101.32.118.105.101.117.120|2|2
1.3.6.1.2.1.4.35.1.3.4.2.8.99.101.32.118.105.101.117.120|4|
1.3.6.1.2.1.4.35.1.4.4.2.8.99.101.32.118.105.101.117.120|4|au
1.3.6.1.2.1.4.35.1.5.4.2.8.99.101.32.118.105.101.117.120|67|1732615518
1.3.6.1.2.1.4.35.1.6.4.2.8.99.101.32.118.105.101.117.120|2|4
1.3.6.1.2.1.4.35.1.7.4.2.8.99.101.32.118.105.101.117.120|2|1
1.3.6.1.2.1.4.35.1.8.4.2.8.99.101.32.118.105.101.117.120|2|4
1.3.6.1.2.1.4.36.1.1.3|2|3
1.3.6.1.2.1.4.36.1.2.3|66|1683105251
1.3.6.1.2.1.4.36.1.3.3|66|4256827442
1.3.6.1.2.1.4.36.1.4.3|66|4001770793
1.3.6.1.2.1.4.36.1.5.3|66|3542314859
1.3.6.1.2.1.4.36.1.6.3|66|2277534487
1.3.6.1.2.1.4.36.1.7.3|66|1540232449
1.3.6.1.2.1.4.36.1.8.3|66|3702323962
1.3.6.1.2.1.4.36.1.9.3|66|3030984132
1.3.6.1.2.1.4.36.1.10.3|66|2747560800
1.3.6.1.2.1.4.36.1.11.3|66|1006055067
1.3.6.1.2.1.4.36.1.12.3|66|111186861
1.3.6.1.2.1.4.36.1.13.3|66|2242294978
1.3.6.1.2.1.4.37.1.1.3.0.4|2|4
1.3.6.1.2.1.4.37.1.2.3.0.4|4|Portez ce vieux whisky au juge blond
1.3.6.1.2.1.4.37.1.3.3.0.4|2|1
1.3.6.1.2.1.4.37.1.4.3.0.4|66|4096
1.3.6.1.2.1.4.37.1.5.3.0.4|2|-1
1.3.6.1.2.1.4.38.0|2|2
1.3.6.1.2.1.4.39.1.1.1|2|1
1.3.6.1.2.1.4.39.1.2.1|2|2
1.3.6.1.2.1.4.39.1.3.1|66|10
1.3.6.1.2.1.4.39.1.4.1|66|1300
1.3.6.1.2.1.4.39.1.5.1|2|2
1.3.6.1.2.1.4.39.1.6.1|2|1
1.3.6.1.2.1.4.39.1.7.1|66|777153796
1.3.6.1.2.1.4.39.1.8.1|66|450000
1.3.6.1.2.1.4.39.1.9.1|66|2629296628
1.3.6.1.2.1.4.39.1.10.1|66|128
1.3.6.1.2.1.4.39.1.11.1|66|1341968118
1.3.6.1.2.1.4.39.1.12.1|2|1
snmpsim-0.4.5/data/mib2dev/host-resources-mib.snmprec 0000664 0063214 0063214 00000004152 13051045252 022773 0 ustar ietingof ietingof 1.3.6.1.2.1.25.1.1.0|67|4175557108
1.3.6.1.2.1.25.1.2.0|4|20110101
1.3.6.1.2.1.25.1.3.0|2|3
1.3.6.1.2.1.25.1.4.0|4|vieux whisky au juge blond qui
1.3.6.1.2.1.25.1.5.0|66|1183702690
1.3.6.1.2.1.25.1.6.0|66|2540579922
1.3.6.1.2.1.25.1.7.0|2|3
1.3.6.1.2.1.25.2.2.0|2|1
1.3.6.1.2.1.25.2.3.1.1.4|2|1
1.3.6.1.2.1.25.2.3.1.2.4|6|1.3.6.1.3.221.117.100.94.111.22
1.3.6.1.2.1.25.2.3.1.3.4|4|
1.3.6.1.2.1.25.2.3.1.4.4|2|4
1.3.6.1.2.1.25.2.3.1.5.4|2|1
1.3.6.1.2.1.25.2.3.1.6.4|2|3
1.3.6.1.2.1.25.2.3.1.7.4|65|2906387076
1.3.6.1.2.1.25.3.2.1.1.1|2|2
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.3.34.211.108.116.136.240.225.193
1.3.6.1.2.1.25.3.2.1.3.1|4|whisky au juge blond
1.3.6.1.2.1.25.3.2.1.4.1|6|1.3.6.1.3.183.196.18.36.205.211.219.136
1.3.6.1.2.1.25.3.2.1.5.1|2|4
1.3.6.1.2.1.25.3.2.1.6.1|65|1896119347
1.3.6.1.2.1.25.3.3.1.1.1|6|1.3.6.1.3.30
1.3.6.1.2.1.25.3.3.1.2.1|2|2
1.3.6.1.2.1.25.3.4.1.1.4|2|1
1.3.6.1.2.1.25.3.5.1.1.2|2|1
1.3.6.1.2.1.25.3.5.1.2.2|4|
1.3.6.1.2.1.25.3.6.1.1.1|2|1
1.3.6.1.2.1.25.3.6.1.2.1|2|1
1.3.6.1.2.1.25.3.6.1.3.1|2|1
1.3.6.1.2.1.25.3.6.1.4.1|2|2
1.3.6.1.2.1.25.3.7.1.1.2.4|2|1
1.3.6.1.2.1.25.3.7.1.2.2.4|4|
1.3.6.1.2.1.25.3.7.1.3.2.4|4|
1.3.6.1.2.1.25.3.7.1.4.2.4|2|1
1.3.6.1.2.1.25.3.7.1.5.2.4|2|3
1.3.6.1.2.1.25.3.8.1.1.2|2|4
1.3.6.1.2.1.25.3.8.1.2.2|4|au juge
1.3.6.1.2.1.25.3.8.1.3.2|4|vieux whisky
1.3.6.1.2.1.25.3.8.1.4.2|6|1.3.6.1.3.81.114.168
1.3.6.1.2.1.25.3.8.1.5.2|2|2
1.3.6.1.2.1.25.3.8.1.6.2|2|1
1.3.6.1.2.1.25.3.8.1.7.2|2|3
1.3.6.1.2.1.25.3.8.1.8.2|4|20110214
1.3.6.1.2.1.25.3.8.1.9.2|4|19700111
1.3.6.1.2.1.25.4.1.0|2|4
1.3.6.1.2.1.25.4.2.1.1.4|2|3
1.3.6.1.2.1.25.4.2.1.2.4|4|qui
1.3.6.1.2.1.25.4.2.1.3.4|6|1.3.6.1.3.155.55.75.63.104.201
1.3.6.1.2.1.25.4.2.1.4.4|4|whisky
1.3.6.1.2.1.25.4.2.1.5.4|4|
1.3.6.1.2.1.25.4.2.1.6.4|2|2
1.3.6.1.2.1.25.4.2.1.7.4|2|1
1.3.6.1.2.1.25.5.1.1.1.1|2|1
1.3.6.1.2.1.25.5.1.1.2.1|2|3
1.3.6.1.2.1.25.6.1.0|67|3649597163
1.3.6.1.2.1.25.6.2.0|67|2573436539
1.3.6.1.2.1.25.6.3.1.1.4|2|1
1.3.6.1.2.1.25.6.3.1.2.4|4|
1.3.6.1.2.1.25.6.3.1.3.4|6|1.3.6.1.3.11.111.171.47.69.91
1.3.6.1.2.1.25.6.3.1.4.4|2|1
1.3.6.1.2.1.25.6.3.1.5.4|4|20000111
snmpsim-0.4.5/data/mib2dev/tcp-mib.snmprec 0000664 0063214 0063214 00000002471 13051045252 020576 0 ustar ietingof ietingof 1.3.6.1.2.1.6.1.0|2|1
1.3.6.1.2.1.6.2.0|2|4
1.3.6.1.2.1.6.3.0|2|2
1.3.6.1.2.1.6.4.0|2|4
1.3.6.1.2.1.6.5.0|65|1662058536
1.3.6.1.2.1.6.6.0|65|2028504670
1.3.6.1.2.1.6.7.0|65|2288312282
1.3.6.1.2.1.6.8.0|65|4004255424
1.3.6.1.2.1.6.9.0|66|4025272842
1.3.6.1.2.1.6.10.0|65|3255638859
1.3.6.1.2.1.6.11.0|65|1489319358
1.3.6.1.2.1.6.12.0|65|749604405
1.3.6.1.2.1.6.13.1.1.72.192.51.208.2.234.233.215.7.3|2|1
1.3.6.1.2.1.6.13.1.2.72.192.51.208.2.234.233.215.7.3|64x|8b896863
1.3.6.1.2.1.6.13.1.3.72.192.51.208.2.234.233.215.7.3|2|3
1.3.6.1.2.1.6.13.1.4.72.192.51.208.2.234.233.215.7.3|64x|4f1182fe
1.3.6.1.2.1.6.13.1.5.72.192.51.208.2.234.233.215.7.3|2|3
1.3.6.1.2.1.6.14.0|65|2597920355
1.3.6.1.2.1.6.15.0|65|4033500253
1.3.6.1.2.1.6.17.0|70|6872960564629597274
1.3.6.1.2.1.6.18.0|70|5530204217969443411
1.3.6.1.2.1.6.19.1.1.2.0.768.3.0.768|2|3
1.3.6.1.2.1.6.19.1.2.2.0.768.3.0.768|4|whisky au juge blond
1.3.6.1.2.1.6.19.1.3.2.0.768.3.0.768|66|422
1.3.6.1.2.1.6.19.1.4.2.0.768.3.0.768|2|1
1.3.6.1.2.1.6.19.1.5.2.0.768.3.0.768|4|
1.3.6.1.2.1.6.19.1.6.2.0.768.3.0.768|66|844
1.3.6.1.2.1.6.19.1.7.2.0.768.3.0.768|2|3
1.3.6.1.2.1.6.19.1.8.2.0.768.3.0.768|66|3360701264
1.3.6.1.2.1.6.20.1.1.2.0.432|2|1
1.3.6.1.2.1.6.20.1.2.2.0.432|4|
1.3.6.1.2.1.6.20.1.3.2.0.432|66|80
1.3.6.1.2.1.6.20.1.4.2.0.432|66|1524968792
snmpsim-0.4.5/data/bgp.snmprec 0000644 0063214 0063214 00000002433 13143031224 016453 0 ustar ietingof ietingof 1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.1|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.2|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.3|4x|7065657220756e636f6e66696775726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.4|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.5|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.6|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.7|4x|7065657220756e636f6e66696775726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.8|4x|7065657220756e636f6e66696775726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.9|4x|7065657220756e636f6e66696775726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.192.168.1.10|4x|61646d696e6973747261746976652073687574646f776e
1.3.6.1.4.1.9.9.187.1.2.5.1.28.2.16.42.1.72.96.0.1.0.1.0.0.0.0.0.0.0.100|4x|7065657220756e636f6e66696775726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.2.16.42.1.72.96.0.1.0.1.0.0.0.0.0.0.0.101|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.2.16.42.1.72.96.0.1.0.1.0.0.0.0.0.0.0.102|4x|686f6c642074696d652065787069726564
1.3.6.1.4.1.9.9.187.1.2.5.1.28.2.16.42.1.72.96.0.1.0.1.0.0.0.0.0.0.0.103|4x|686f6c642074696d652065787069726564
snmpsim-0.4.5/data/variation/ 0000775 0063214 0063214 00000000000 13412164240 016312 5 ustar ietingof ietingof snmpsim-0.4.5/data/variation/README.txt 0000664 0063214 0063214 00000000217 13051045252 020010 0 ustar ietingof ietingof This directory is an example repository of .snmprec files that use
various value variation modules for the purpose of building SNMP
responses.
snmpsim-0.4.5/data/variation/sql.snmprec 0000664 0063214 0063214 00000000031 13051045252 020474 0 ustar ietingof ietingof 1.3.6.1.2.1|:sql|snmprec
snmpsim-0.4.5/data/variation/notification.snmprec 0000664 0063214 0063214 00000001334 13051045252 022372 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4:notification|op=get,version=1,community=public,proto=udp,host=127.0.0.1,port=162,ntftype=trap,trapoid=1.3.6.1.4.1.20408.4.1.1.2.0.432,uptime=12345,agentaddress=127.0.0.1,enterprise=1.3.6.1.4.1.20408.4.1.1.2,varbinds=1.3.6.1.2.1.1.1.0:s:snmpsim agent:1.3.6.1.2.1.1.3.0:i:42,value=SNMPv1 trap sender
1.3.6.1.2.1.1.2.0|6:notification|op=set,vlist=eq:1.3.6.1.1.2,version=2c,community=public,bindaddr=127.0.0.1,host=127.0.0.1,ntftype=trap,trapoid=1.3.6.1.6.3.1.1.5.1,varbinds=1.3.6.1.2.1.1.1.0:s:snmpsim agent:1.3.6.1.2.1.1.3.0:i:42,value=1.3.6.1.1.1
1.3.6.1.2.1.1.3.0|67:notification|version=3,user=usr-md5-des,authkey=authkey1,privkey=privkey1,host=127.0.0.1,ntftype=inform,trapoid=1.3.6.1.6.3.1.1.5.2,value=123456
snmpsim-0.4.5/data/variation/multiplex.snmprec 0000664 0063214 0063214 00000000075 13051045252 021730 0 ustar ietingof ietingof 1.3.6.1.2.1.2|:multiplex|dir=variation/multiplex,period=10.0
snmpsim-0.4.5/data/variation/delay.snmprec 0000664 0063214 0063214 00000000763 13051045252 021007 0 ustar ietingof ietingof 1.3.6.1.2.1.2.2.1.1.1|2:delay|value=1
1.3.6.1.2.1.2.2.1.2.1|4:delay|value=eth0
1.3.6.1.2.1.2.2.1.3.1|2:delay|value=6,wait=100,deviation=200
1.3.6.1.2.1.2.2.1.5.1|66:delay|value=100000000
1.3.6.1.2.1.2.2.1.6.1|4:delay|hexvalue=00127962f940,wait=800
1.3.6.1.2.1.2.2.1.7.1|2:delay|wait=1,value=0
1.3.6.1.2.1.2.2.1.8.1|2:delay|vlist=eq:0:100:eq:1:1000,value=1
1.3.6.1.2.1.2.2.1.9.1|67:delay|vlist=lt:100:1:gt:300:1000000,value=150
1.3.6.1.2.1.2.2.1.10.1|65:delay|tlist=gt:1364860800:1000000,value=12345
snmpsim-0.4.5/data/variation/subprocess.snmprec 0000664 0063214 0063214 00000001070 13051045252 022071 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4:subprocess|echo SNMP info: transportDomain @TRANSPORTDOMAIN@, transportAddress @TRANSPORTADDRESS@, securityModel @SECURITYMODEL@, securityName @SECURITYNAME@, securityLevel @SECURITYLEVEL@, contextName @CONTEXTNAME@\r\nUsing data file @DATAFILE@\r\nReceived request for @ORIGOID@, matched @OID@, received tag/value "@ORIGTAG@"/"@ORIGVALUE@", would return value tagged @TAG@, request write mode flag is @SETFLAG@, next flag is @NEXTFLAG@, subtree flag is @SUBTREEFLAG@
1.3.6.1.2.1.1.3.0|2:subprocess|echo 123455
1.3.6.1.2.1.1.5.0|4|new system name
snmpsim-0.4.5/data/variation/virtualtable.snmprec 0000664 0063214 0063214 00000002300 13051045252 022374 0 ustar ietingof ietingof 1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.2.1|4|eth0
1.3.6.1.2.1.2.2.1.3.1|2|6
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|100000000
1.3.6.1.2.1.2.2.1.6.1|4x|00127962f940
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.9.1|67:numeric|rate=100,initial=100000000
1.3.6.1.2.1.2.2.1.10.1|65:numeric|rate=200,deviation=10,cumulative=1
1.3.6.1.2.1.2.2.1.11.1|65:numeric|rate=18,initial=1,cumulative=1
1.3.6.1.2.1.2.2.1.12.1|65:numeric|rate=2,cumulative=1
1.3.6.1.2.1.2.2.1.13.1|65:numeric|scale=0.6,offset=1,deviation=1,function=cos,cumulative=1
1.3.6.1.2.1.2.2.1.14.1|65:numeric|scale=0.4,offset=1,deviation=1,function=sin,cumulative=1
1.3.6.1.2.1.2.2.1.15.1|65:numeric|rate=0.1,deviation=2,cumulative=1
1.3.6.1.2.1.2.2.1.16.1|65:numeric|rate=100,deviation=5,cumulative=1
1.3.6.1.2.1.2.2.1.17.1|65:numeric|rate=9,initial=1,cumulative=1
1.3.6.1.2.1.2.2.1.18.1|65:numeric|rate=1,cumulative=1
1.3.6.1.2.1.2.2.1.19.1|65:numeric|scale=0.6,offset=1,deviation=1,function=sin,cumulative=1
1.3.6.1.2.1.2.2.1.20.1|65:numeric|scale=0.4,offset=1,deviation=1,function=cos,cumulative=1
1.3.6.1.2.1.2.2.1.21.1|66:numeric|function=pow%%2,scale=100,offset=100,rate=150
1.3.6.1.2.1.2.2.1.22.1|6|0.0
snmpsim-0.4.5/data/variation/multiplex/ 0000775 0063214 0063214 00000000000 13412164240 020335 5 ustar ietingof ietingof snmpsim-0.4.5/data/variation/multiplex/README.txt 0000664 0063214 0063214 00000000445 13051045252 022036 0 ustar ietingof ietingof This directory is an example repository of .snmprec files that can
be used by the "multiplex" variation module for the purpose of building SNMP
responses choosing one of these snmprec files in a time-dependent fashion.
Such .snmprec files can be created automatically by the snmprec.py tool.
snmpsim-0.4.5/data/variation/multiplex/00000.snmprec 0000664 0063214 0063214 00000006111 13051045252 022364 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91573985
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|103494595
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2111506
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|454961
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91573985
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|50936669
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1055926
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|214346
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00006.snmprec 0000664 0063214 0063214 00000006111 13051045252 022372 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91678853
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|110409788
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2114202
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|464269
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91678853
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|51013240
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1057274
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|215486
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00010.snmprec 0000664 0063214 0063214 00000006111 13051045252 022365 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91748781
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|115293901
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2115998
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|470789
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91748781
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|51056869
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1058172
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|216237
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00001.snmprec 0000664 0063214 0063214 00000006111 13051045252 022365 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91591803
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|104650070
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2111962
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|456497
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91591803
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|50946673
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1056154
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|214521
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00007.snmprec 0000664 0063214 0063214 00000006111 13051045252 022373 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91696263
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|111551408
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2114650
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|465783
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91696263
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|51022312
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1057498
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|215654
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00002.snmprec 0000664 0063214 0063214 00000006111 13051045252 022366 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91609213
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|105805340
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2112410
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|458031
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91609213
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|50955853
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1056378
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|214691
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00008.snmprec 0000664 0063214 0063214 00000006111 13051045252 022374 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91713961
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|112694898
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2115102
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|467321
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91713961
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|51034648
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1057724
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|215836
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00009.snmprec 0000664 0063214 0063214 00000006111 13051045252 022375 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91731371
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|113664378
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2115550
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|468607
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91731371
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|51042748
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1057948
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|215986
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00004.snmprec 0000664 0063214 0063214 00000006111 13051045252 022370 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91644033
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|108124865
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2113306
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|461215
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91644033
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|50990615
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1056826
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|215136
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00003.snmprec 0000664 0063214 0063214 00000006111 13051045252 022367 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91626623
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|106969235
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2112858
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|459619
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91626623
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|50977505
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1056602
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|214897
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/multiplex/00005.snmprec 0000664 0063214 0063214 00000006111 13051045252 022371 0 ustar ietingof ietingof 1.3.6.1.2.1.2.1.0|2|5
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|91661443
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|109266000
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2113754
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|462745
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|91661443
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|51001897
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|1057050
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|215313
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/variation/error.snmprec 0000664 0063214 0063214 00000000400 13051045252 021026 0 ustar ietingof ietingof 1.3.6.1.2.1.2.2.1.1.1|2:error|op=get,status=authorizationError,value=1
1.3.6.1.2.1.2.2.1.2.1|4:error|op=set,status=commitfailed,hexvalue=00127962f940
1.3.6.1.2.1.2.2.1.3.1|2:error|vlist=gt:2:wrongvalue,value=1
1.3.6.1.2.1.2.2.1.6.1|4:error|status=noaccess
snmpsim-0.4.5/data/variation/writecache.snmprec 0000664 0063214 0063214 00000000766 13051045252 022032 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4:writecache|hexvalue=49276d206120737472696e672c20706c65617365206d6f64696679206d6520616e64204927642072656d656d626572207468617421
1.3.6.1.2.1.1.3.0|2:writecache|value=42,vlist=lt:40:wrongvalue:gt:50:noaccess
# write-only OID, can be configured readable via other .snmprec
1.3.6.1.2.1.2.2.1.5.1|66:writecache|value=100000000,op=get,status=noaccess
# read-only OID, can be configured writable via other .snmprec
1.3.6.1.2.1.2.2.1.5.2|66:writecache|value=100000000,op=set,status=noaccess
snmpsim-0.4.5/data/public/ 0000775 0063214 0063214 00000000000 13412164240 015574 5 ustar ietingof ietingof snmpsim-0.4.5/data/public/1.3.6.1.2.1.100.1.13.0.snmprec 0000664 0063214 0063214 00000006707 13051045252 021320 0 ustar ietingof ietingof 1.3.6.1.2.1.65.1.1.1.1.1.2491477258|66|1240088554
1.3.6.1.2.1.65.1.1.1.1.2.2491477258|4|
1.3.6.1.2.1.65.1.1.1.1.3.2491477258|4|
1.3.6.1.2.1.65.1.1.1.1.4.2491477258|6|1.3.6.1.3.71.29.79.121.92.7.97.187.235
1.3.6.1.2.1.65.1.1.1.1.5.2491477258|4|
1.3.6.1.2.1.65.1.1.1.1.6.2491477258|2|4
1.3.6.1.2.1.65.1.1.1.1.7.2491477258|4|14:31:24
1.3.6.1.2.1.65.1.1.1.1.8.2491477258|2|4
1.3.6.1.2.1.65.1.1.1.1.9.2491477258|4|14:31:26
1.3.6.1.2.1.65.1.2.1.1.1.2920161144|65|3534725493
1.3.6.1.2.1.65.1.2.1.1.2.2920161144|65|1751514660
1.3.6.1.2.1.65.1.2.1.1.3.2920161144|65|891894086
1.3.6.1.2.1.65.1.2.1.1.4.2920161144|65|3126352885
1.3.6.1.2.1.65.1.2.1.1.5.2920161144|70|2052060354331380761
1.3.6.1.2.1.65.1.2.1.1.6.2920161144|65|3193221874
1.3.6.1.2.1.65.1.2.1.1.7.2920161144|70|17071983544991890733
1.3.6.1.2.1.65.1.2.1.1.8.2920161144|65|1151151384
1.3.6.1.2.1.65.1.2.2.1.1.752834939.8.99.101.32.118.105.101.117.120|4|vieux
1.3.6.1.2.1.65.1.2.2.1.2.752834939.8.99.101.32.118.105.101.117.120|65|3259460605
1.3.6.1.2.1.65.1.2.2.1.3.752834939.8.99.101.32.118.105.101.117.120|65|2427275578
1.3.6.1.2.1.65.1.2.2.1.4.752834939.8.99.101.32.118.105.101.117.120|4|14:31:12
1.3.6.1.2.1.65.1.2.3.1.1.3355157438.4.49.50.51.52|4|12345
1.3.6.1.2.1.65.1.2.3.1.2.3355157438.4.49.50.51.52|65|3516268121
1.3.6.1.2.1.65.1.2.3.1.3.3355157438.4.49.50.51.52|65|3444223038
1.3.6.1.2.1.65.1.2.3.1.4.3355157438.4.49.50.51.52|4|14:31:00
1.3.6.1.2.1.65.1.2.4.1.1.1109696810.32|2|42
1.3.6.1.2.1.65.1.2.4.1.2.1109696810.32|65|2750099630
1.3.6.1.2.1.65.1.2.4.1.3.1109696810.32|65|643421796
1.3.6.1.2.1.65.1.2.4.1.4.1109696810.32|4|14:31:01
1.3.6.1.2.1.65.1.2.5.1.1.891234355.1186048973|2|424
1.3.6.1.2.1.65.1.2.5.1.2.891234355.1186048973|65|3745919968
1.3.6.1.2.1.65.1.2.5.1.3.891234355.1186048973|65|1609728942
1.3.6.1.2.1.65.1.2.5.1.4.891234355.1186048973|4|14:31:54
1.3.6.1.2.1.65.1.3.1.1.1.3909683568|66|3778096247
1.3.6.1.2.1.65.1.3.1.1.2.3909683568|67|1976776282
1.3.6.1.2.1.65.1.3.1.1.3.3909683568|66|176566820
1.3.6.1.2.1.65.1.3.1.1.4.3909683568|2|3
1.3.6.1.2.1.65.1.3.1.1.5.3909683568|66|2958272842
1.3.6.1.2.1.65.1.3.2.1.1.454672057.782031308|66|1018112614
1.3.6.1.2.1.65.1.3.2.1.2.454672057.782031308|4|
1.3.6.1.2.1.65.1.3.2.1.3.454672057.782031308|4|14:31:54
1.3.6.1.2.1.65.1.3.2.1.4.454672057.782031308|4|Portez ce vieux whisky
1.3.6.1.2.1.65.1.3.2.1.5.454672057.782031308|2|32
1.3.6.1.2.1.65.1.3.2.1.6.454672057.782031308|4|
1.3.6.1.2.1.65.1.3.2.1.7.454672057.782031308|66|816137354
1.3.6.1.2.1.65.1.3.3.1.1.3418400702.1126737735|66|677000034
1.3.6.1.2.1.65.1.3.3.1.2.3418400702.1126737735|4|14:31:30
1.3.6.1.2.1.65.1.3.3.1.3.3418400702.1126737735|66|1074864196
1.3.6.1.2.1.65.1.3.3.1.4.3418400702.1126737735|66|770332995
1.3.6.1.2.1.65.1.3.3.1.5.3418400702.1126737735|66|2564722719
1.3.6.1.2.1.65.1.3.4.1.1.2839426749.1729856555.975538438|66|2935756094
1.3.6.1.2.1.65.1.3.4.1.2.2839426749.1729856555.975538438|4|vieux whisky au juge blond qui
1.3.6.1.2.1.65.1.3.4.1.3.2839426749.1729856555.975538438|66|2342278812
1.3.6.1.2.1.65.1.3.4.1.4.2839426749.1729856555.975538438|66|1647168534
1.3.6.1.2.1.65.1.3.4.1.5.2839426749.1729856555.975538438|2|563333918
1.3.6.1.2.1.65.1.3.5.1.1.4219337744.462442388.3160862722|66|3689302604
1.3.6.1.2.1.65.1.3.5.1.2.4219337744.462442388.3160862722|4|
1.3.6.1.2.1.65.1.3.5.1.3.4219337744.462442388.3160862722|66|752907954
1.3.6.1.2.1.65.1.3.5.1.4.4219337744.462442388.3160862722|66|894388439
1.3.6.1.2.1.65.1.3.5.1.5.4219337744.462442388.3160862722|2|1590665839
snmpsim-0.4.5/data/public/README-v2c.txt 0000664 0063214 0063214 00000000451 13051045252 017762 0 ustar ietingof ietingof This directory serves as a special case only when Simulator is running
in --v2c-arch mode.
This is a community name specific directory.
The .snmprec files in this directory would be used by Simulator whenever
community name in request AND Manager's source address matches the .snmprec
filename.
snmpsim-0.4.5/data/public/1.3.6.1.2.1.100.1.2.0/ 0000775 0063214 0063214 00000000000 13412164240 017633 5 ustar ietingof ietingof snmpsim-0.4.5/data/public/1.3.6.1.2.1.100.1.2.0/__1.snmprec 0000664 0063214 0063214 00000001561 13051045252 021665 0 ustar ietingof ietingof 1.3.6.1.2.1.6.16.1.1.55.51.50.55.50.52.52.56.56.51.57.50.52.55.51.50.434.55.51.50.55.50.52.52.56.56.51.57.50.52.55.52.51.64.1853700339|4|7327244883929832
1.3.6.1.2.1.6.16.1.2.55.51.50.55.50.52.52.56.56.51.57.50.52.55.51.50.434.55.51.50.55.50.52.52.56.56.51.57.50.52.55.52.51.64.1853700339|2|89
1.3.6.1.2.1.6.16.1.3.55.51.50.55.50.52.52.56.56.51.57.50.52.55.51.50.434.55.51.50.55.50.52.52.56.56.51.57.50.52.55.52.51.64.1853700339|4|7327244883924545
1.3.6.1.2.1.6.16.1.4.55.51.50.55.50.52.52.56.56.51.57.50.52.55.51.50.434.55.51.50.55.50.52.52.56.56.51.57.50.52.55.52.51.64.1853700339|2|87
1.3.6.1.2.1.6.16.1.5.55.51.50.55.50.52.52.56.56.51.57.50.52.55.51.50.434.55.51.50.55.50.52.52.56.56.51.57.50.52.55.52.51.64.1853700339|2|402562730
1.3.6.1.2.1.6.16.1.6.55.51.50.55.50.52.52.56.56.51.57.50.52.55.51.50.434.55.51.50.55.50.52.52.56.56.51.57.50.52.55.52.51.64.1853700339|2|10
snmpsim-0.4.5/data/public/1.3.6.1.2.1.100.1.2.0/README-v2c.txt 0000664 0063214 0063214 00000000737 13051045252 022030 0 ustar ietingof ietingof This directory serves as a special case only when Simulator is running
in --v2c-arch mode.
This is a community name AND transport domain specific directory.
The .snmprec files in this directory would be used by Simulator whenever
community name in request AND transport domain AND source address being
used matches the .snmprec filename.
Since this is a IPv6 transport domain, .snmprec files take shape of
an IPv6 IP address with semicolons (:) replaces with underscores (_).
snmpsim-0.4.5/data/public/1.3.6.1.2.1.100.1.2.0/README-v3.txt 0000664 0063214 0063214 00000000735 13051045252 021664 0 ustar ietingof ietingof This directory serves as a special case only when Simulator is NOT running
in --v2c-arch mode.
This is a ContextName AND transport domain specific directory.
The .snmprec files in this directory would be used by Simulator whenever
ContextName in request AND transport domain AND source address being
used matches the .snmprec filename.
Since this is a IPv6 transport domain, .snmprec files take shape of
an IPv6 IP address with semicolons (:) replaces with underscores (_).
snmpsim-0.4.5/data/public/README-v3.txt 0000664 0063214 0063214 00000000447 13051045252 017625 0 ustar ietingof ietingof This directory serves as a special case only when Simulator is NOT running
in --v2c-arch mode.
This is a ContextName specific directory.
The .snmprec files in this directory would be used by Simulator whenever
ContextName in request AND Manager's source address matches the .snmprec
filename.
snmpsim-0.4.5/data/public/1.3.6.1.6.1.1.0/ 0000775 0063214 0063214 00000000000 13412164240 017200 5 ustar ietingof ietingof snmpsim-0.4.5/data/public/1.3.6.1.6.1.1.0/127.0.0.1.snmprec 0000664 0063214 0063214 00000010215 13051045252 021534 0 ustar ietingof ietingof 1.3.6.1.2.1.55.1.1.0|2|1
1.3.6.1.2.1.55.1.2.0|2|23
1.3.6.1.2.1.55.1.3.0|66|3884160696
1.3.6.1.2.1.55.1.4.0|67|1010376997
1.3.6.1.2.1.55.1.5.1.1.437129477|2|1468729669
1.3.6.1.2.1.55.1.5.1.2.437129477|4|Portez ce vieux whisky
1.3.6.1.2.1.55.1.5.1.3.437129477|6|1.3.6.1.3.93.16.95.170.12
1.3.6.1.2.1.55.1.5.1.4.437129477|66|2017198405
1.3.6.1.2.1.55.1.5.1.5.437129477|66|32
1.3.6.1.2.1.55.1.5.1.6.437129477|4|
1.3.6.1.2.1.55.1.5.1.7.437129477|2|34
1.3.6.1.2.1.55.1.5.1.8.437129477|4|ce vieux whisky au juge blond
1.3.6.1.2.1.55.1.5.1.9.437129477|2|1
1.3.6.1.2.1.55.1.5.1.10.437129477|2|5
1.3.6.1.2.1.55.1.5.1.11.437129477|67|140703861
1.3.6.1.2.1.55.1.6.1.1.2343|65|897693393
1.3.6.1.2.1.55.1.6.1.2.2343|65|578164447
1.3.6.1.2.1.55.1.6.1.3.2343|65|4275991335
1.3.6.1.2.1.55.1.6.1.4.2343|65|3734473321
1.3.6.1.2.1.55.1.6.1.5.2343|65|2237916606
1.3.6.1.2.1.55.1.6.1.6.2343|65|2034185504
1.3.6.1.2.1.55.1.6.1.7.2343|65|3228734844
1.3.6.1.2.1.55.1.6.1.8.2343|65|304386907
1.3.6.1.2.1.55.1.6.1.9.2343|65|797753556
1.3.6.1.2.1.55.1.6.1.10.2343|65|4162405662
1.3.6.1.2.1.55.1.6.1.11.2343|65|3871894465
1.3.6.1.2.1.55.1.6.1.12.2343|65|2647588090
1.3.6.1.2.1.55.1.6.1.13.2343|65|567634931
1.3.6.1.2.1.55.1.6.1.14.2343|65|575307791
1.3.6.1.2.1.55.1.6.1.15.2343|65|3122932114
1.3.6.1.2.1.55.1.6.1.16.2343|65|3028836428
1.3.6.1.2.1.55.1.6.1.17.2343|65|2824741338
1.3.6.1.2.1.55.1.6.1.18.2343|65|2622708835
1.3.6.1.2.1.55.1.6.1.19.2343|65|2104376593
1.3.6.1.2.1.55.1.6.1.20.2343|65|3026378638
1.3.6.1.2.1.55.1.7.1.1.243252.2.97.117.45|4|
1.3.6.1.2.1.55.1.7.1.2.243252.2.97.117.45|2|64
1.3.6.1.2.1.55.1.7.1.3.243252.2.97.117.45|2|2
1.3.6.1.2.1.55.1.7.1.4.243252.2.97.117.45|2|2
1.3.6.1.2.1.55.1.7.1.5.243252.2.97.117.45|66|407485050
1.3.6.1.2.1.55.1.7.1.6.243252.2.97.117.45|66|1492117427
1.3.6.1.2.1.55.1.8.1.1.3453453.49.50.51.52.53.54.55.56.57.48.49.50.51.52.53.54|4|1234567890123456
1.3.6.1.2.1.55.1.8.1.2.3453453.49.50.51.52.53.54.55.56.57.48.49.50.51.52.53.54|2|3
1.3.6.1.2.1.55.1.8.1.3.3453453.49.50.51.52.53.54.55.56.57.48.49.50.51.52.53.54|2|2
1.3.6.1.2.1.55.1.8.1.4.3453453.49.50.51.52.53.54.55.56.57.48.49.50.51.52.53.54|2|2
1.3.6.1.2.1.55.1.8.1.5.3453453.49.50.51.52.53.54.55.56.57.48.49.50.51.52.53.54|2|3
1.3.6.1.2.1.55.1.9.0|66|4097551729
1.3.6.1.2.1.55.1.10.0|65|806967731
1.3.6.1.2.1.55.1.11.1.1.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|4|1234567890183746
1.3.6.1.2.1.55.1.11.1.2.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|2|33
1.3.6.1.2.1.55.1.11.1.3.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|66|2669298525
1.3.6.1.2.1.55.1.11.1.4.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|2|42342
1.3.6.1.2.1.55.1.11.1.5.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|4|1234567890987364
1.3.6.1.2.1.55.1.11.1.6.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|2|4
1.3.6.1.2.1.55.1.11.1.7.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|2|4
1.3.6.1.2.1.55.1.11.1.8.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|2|1964647128
1.3.6.1.2.1.55.1.11.1.9.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|66|223191947
1.3.6.1.2.1.55.1.11.1.10.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|66|2077221305
1.3.6.1.2.1.55.1.11.1.11.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|66|1858347616
1.3.6.1.2.1.55.1.11.1.12.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|66|1774875274
1.3.6.1.2.1.55.1.11.1.13.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|6|1.3.6.1.3.94.191.94.48
1.3.6.1.2.1.55.1.11.1.14.49.50.51.52.53.54.55.56.57.48.49.50.51.51.52.49.3.206159178|2|2
1.3.6.1.2.1.55.1.12.1.1.1467697360.49.50.51.52.53.54.55.56.57.48.49.50.57.56.55.56|4|1234567890129832
1.3.6.1.2.1.55.1.12.1.2.1467697360.49.50.51.52.53.54.55.56.57.48.49.50.57.56.55.56|4|
1.3.6.1.2.1.55.1.12.1.3.1467697360.49.50.51.52.53.54.55.56.57.48.49.50.57.56.55.56|2|4
1.3.6.1.2.1.55.1.12.1.4.1467697360.49.50.51.52.53.54.55.56.57.48.49.50.57.56.55.56|2|6
1.3.6.1.2.1.55.1.12.1.5.1467697360.49.50.51.52.53.54.55.56.57.48.49.50.57.56.55.56|67|619649841
1.3.6.1.2.1.55.1.12.1.6.1467697360.49.50.51.52.53.54.55.56.57.48.49.50.57.56.55.56|2|1
snmpsim-0.4.5/data/public/1.3.6.1.6.1.1.0/README-v2c.txt 0000664 0063214 0063214 00000000524 13051045252 021367 0 ustar ietingof ietingof This directory serves as a special case only when Simulator is running
in --v2c-arch mode.
This is a community name AND transport domain specific directory.
The .snmprec files in this directory would be used by Simulator whenever
community name in request AND transport domain AND source address being
used matches the .snmprec filename.
snmpsim-0.4.5/data/public/1.3.6.1.6.1.1.0/README-v3.txt 0000664 0063214 0063214 00000000522 13051045252 021223 0 ustar ietingof ietingof This directory serves as a special case only when Simulator is NOT running
in --v2c-arch mode.
This is a ContextName AND transport domain specific directory.
The .snmprec files in this directory would be used by Simulator whenever
ContextName in request AND transport domain AND source address being
used matches the .snmprec filename.
snmpsim-0.4.5/data/hp_perf2.snmprec 0000664 0063214 0063214 00000132546 13127541673 017443 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4x|50726f4375727665204a39303231412053776974636820323831302d3234472c207265766973696f6e204e2e31312e37352c20524f4d204e2e31302e303120282f73772f636f64652f6275696c642f6261737329
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11.2.3.7.11.63
1.3.6.1.2.1.1.3.0|67|931440500
1.3.6.1.2.1.1.4.0|4|
1.3.6.1.2.1.1.5.0|4x|50726f43757276652053776974636820323831302d323447
1.3.6.1.2.1.1.6.0|4|
1.3.6.1.2.1.1.7.0|2|74
1.3.6.1.2.1.2.1.0|2|32
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.4.22.1.2.30.10.10.10.10|4x|0b16212c3742
1.3.6.1.2.1.4.22.1.2.30.10.10.10.11|4x|0b16212c3743
1.3.6.1.2.1.4.22.1.2.30.10.10.10.12|4x|0b16212c3744
1.3.6.1.2.1.4.22.1.2.30.10.10.10.13|4x|0b16212c3745
1.3.6.1.2.1.4.22.1.2.30.10.10.10.14|4x|0b16212c3746
1.3.6.1.2.1.4.22.1.2.30.10.10.10.15|4x|0b16212c3747
1.3.6.1.2.1.4.22.1.2.30.10.10.10.16|4x|0b16212c3748
1.3.6.1.2.1.4.22.1.2.30.10.10.10.17|4x|0b16212c3749
1.3.6.1.2.1.4.22.1.2.30.10.10.10.18|4x|0b16212c374a
1.3.6.1.2.1.4.22.1.2.30.10.10.10.19|4x|0b16212c374b
1.3.6.1.2.1.4.22.1.2.31.10.10.10.20|4x|0b16212c374c
1.3.6.1.2.1.4.22.1.2.31.10.10.10.21|4x|0b16212c374d
1.3.6.1.2.1.4.22.1.2.31.10.10.10.22|4x|0b16212c374e
1.3.6.1.2.1.4.22.1.2.31.10.10.10.23|4x|0b16212c374f
1.3.6.1.2.1.4.22.1.2.31.10.10.10.24|4x|0b16212c3750
1.3.6.1.2.1.4.22.1.2.31.10.10.10.25|4x|0b16212c3751
1.3.6.1.2.1.4.22.1.2.31.10.10.10.26|4x|0b16212c3752
1.3.6.1.2.1.4.22.1.2.31.10.10.10.27|4x|0b16212c3753
1.3.6.1.2.1.4.22.1.2.31.10.10.10.28|4x|0b16212c3754
1.3.6.1.2.1.4.22.1.2.31.10.10.10.29|4x|0b16212c3755
1.3.6.1.2.1.4.22.1.2.32.10.10.10.30|4x|0b16212c3756
1.3.6.1.2.1.4.22.1.2.32.10.10.10.31|4x|0b16212c3757
1.3.6.1.2.1.4.22.1.2.32.10.10.10.32|4x|0b16212c3758
1.3.6.1.2.1.4.22.1.2.32.10.10.10.33|4x|0b16212c3759
1.3.6.1.2.1.4.22.1.2.32.10.10.10.34|4x|0b16212c375a
1.3.6.1.2.1.4.22.1.2.32.10.10.10.35|4x|0b16212c375b
1.3.6.1.2.1.4.22.1.2.32.10.10.10.36|4x|0b16212c375c
1.3.6.1.2.1.4.22.1.2.32.10.10.10.37|4x|0b16212c375d
1.3.6.1.2.1.4.22.1.2.32.10.10.10.38|4x|0b16212c375e
1.3.6.1.2.1.4.22.1.2.32.10.10.10.39|4x|0b16212c375f
1.3.6.1.2.1.4.22.1.2.33.10.10.10.40|4x|0b16212c3760
1.3.6.1.2.1.4.22.1.2.33.10.10.10.41|4x|0b16212c3761
1.3.6.1.2.1.4.22.1.2.33.10.10.10.42|4x|0b16212c3762
1.3.6.1.2.1.4.22.1.2.33.10.10.10.43|4x|0b16212c3763
1.3.6.1.2.1.4.22.1.2.33.10.10.10.44|4x|0b16212c3800
1.3.6.1.2.1.4.22.1.2.33.10.10.10.45|4x|0b16212c3801
1.3.6.1.2.1.4.22.1.2.33.10.10.10.46|4x|0b16212c3802
1.3.6.1.2.1.4.22.1.2.33.10.10.10.47|4x|0b16212c3803
1.3.6.1.2.1.4.22.1.2.33.10.10.10.48|4x|0b16212c3804
1.3.6.1.2.1.4.22.1.2.33.10.10.10.49|4x|0b16212c3805
1.3.6.1.2.1.4.22.1.2.34.10.10.10.50|4x|0b16212c3806
1.3.6.1.2.1.4.22.1.2.34.10.10.10.51|4x|0b16212c3807
1.3.6.1.2.1.4.22.1.2.34.10.10.10.52|4x|0b16212c3808
1.3.6.1.2.1.4.22.1.2.34.10.10.10.53|4x|0b16212c3809
1.3.6.1.2.1.4.22.1.2.34.10.10.10.54|4x|0b16212c380a
1.3.6.1.2.1.4.22.1.2.34.10.10.10.55|4x|0b16212c380b
1.3.6.1.2.1.4.22.1.2.34.10.10.10.56|4x|0b16212c380c
1.3.6.1.2.1.4.22.1.2.34.10.10.10.57|4x|0b16212c380d
1.3.6.1.2.1.4.22.1.2.34.10.10.10.58|4x|0b16212c380e
1.3.6.1.2.1.4.22.1.2.34.10.10.10.59|4x|0b16212c380f
1.3.6.1.2.1.4.22.1.2.35.10.10.10.60|4x|0b16212c3810
1.3.6.1.2.1.4.22.1.2.35.10.10.10.61|4x|0b16212c3811
1.3.6.1.2.1.4.22.1.2.35.10.10.10.62|4x|0b16212c3812
1.3.6.1.2.1.4.22.1.2.35.10.10.10.63|4x|0b16212c3813
1.3.6.1.2.1.4.22.1.2.35.10.10.10.64|4x|0b16212c3814
1.3.6.1.2.1.4.22.1.2.35.10.10.10.65|4x|0b16212c3815
1.3.6.1.2.1.4.22.1.2.35.10.10.10.66|4x|0b16212c3816
1.3.6.1.2.1.4.22.1.2.35.10.10.10.67|4x|0b16212c3817
1.3.6.1.2.1.4.22.1.2.35.10.10.10.68|4x|0b16212c3818
1.3.6.1.2.1.4.22.1.2.35.10.10.10.69|4x|0b16212c3819
1.3.6.1.2.1.4.22.1.2.36.10.10.10.70|4x|0b16212c381a
1.3.6.1.2.1.4.22.1.2.36.10.10.10.71|4x|0b16212c381b
1.3.6.1.2.1.4.22.1.2.36.10.10.10.72|4x|0b16212c381c
1.3.6.1.2.1.4.22.1.2.36.10.10.10.73|4x|0b16212c381d
1.3.6.1.2.1.4.22.1.2.36.10.10.10.74|4x|0b16212c381e
1.3.6.1.2.1.4.22.1.2.36.10.10.10.75|4x|0b16212c381f
1.3.6.1.2.1.4.22.1.2.36.10.10.10.76|4x|0b16212c3820
1.3.6.1.2.1.4.22.1.2.36.10.10.10.77|4x|0b16212c3821
1.3.6.1.2.1.4.22.1.2.36.10.10.10.78|4x|0b16212c3822
1.3.6.1.2.1.4.22.1.2.36.10.10.10.79|4x|0b16212c3823
1.3.6.1.2.1.4.22.1.2.37.10.10.10.80|4x|0b16212c3824
1.3.6.1.2.1.4.22.1.2.37.10.10.10.81|4x|0b16212c3825
1.3.6.1.2.1.4.22.1.2.37.10.10.10.82|4x|0b16212c3826
1.3.6.1.2.1.4.22.1.2.37.10.10.10.83|4x|0b16212c3827
1.3.6.1.2.1.4.22.1.2.37.10.10.10.84|4x|0b16212c3828
1.3.6.1.2.1.4.22.1.2.37.10.10.10.85|4x|0b16212c3829
1.3.6.1.2.1.4.22.1.2.37.10.10.10.86|4x|0b16212c382a
1.3.6.1.2.1.4.22.1.2.37.10.10.10.87|4x|0b16212c382b
1.3.6.1.2.1.4.22.1.2.37.10.10.10.88|4x|0b16212c382c
1.3.6.1.2.1.4.22.1.2.37.10.10.10.89|4x|0b16212c382d
1.3.6.1.2.1.4.22.1.2.38.10.10.10.90|4x|0b16212c382e
1.3.6.1.2.1.4.22.1.2.38.10.10.10.91|4x|0b16212c382f
1.3.6.1.2.1.4.22.1.2.38.10.10.10.92|4x|0b16212c3830
1.3.6.1.2.1.4.22.1.2.38.10.10.10.93|4x|0b16212c3831
1.3.6.1.2.1.4.22.1.2.38.10.10.10.94|4x|0b16212c3832
1.3.6.1.2.1.4.22.1.2.38.10.10.10.95|4x|0b16212c3833
1.3.6.1.2.1.4.22.1.2.38.10.10.10.96|4x|0b16212c3834
1.3.6.1.2.1.4.22.1.2.38.10.10.10.97|4x|0b16212c3835
1.3.6.1.2.1.4.22.1.2.38.10.10.10.98|4x|0b16212c3836
1.3.6.1.2.1.4.22.1.2.38.10.10.10.99|4x|0b16212c3837
1.3.6.1.2.1.4.22.1.2.39.10.10.10.100|4x|0b16212c3838
1.3.6.1.2.1.4.22.1.2.39.10.10.10.101|4x|0b16212c3839
1.3.6.1.2.1.4.22.1.2.39.10.10.10.102|4x|0b16212c383a
1.3.6.1.2.1.4.22.1.2.39.10.10.10.103|4x|0b16212c383b
1.3.6.1.2.1.4.22.1.2.39.10.10.10.104|4x|0b16212c383c
1.3.6.1.2.1.4.22.1.2.39.10.10.10.105|4x|0b16212c383d
1.3.6.1.2.1.4.22.1.2.39.10.10.10.106|4x|0b16212c383e
1.3.6.1.2.1.4.22.1.2.39.10.10.10.107|4x|0b16212c383f
1.3.6.1.2.1.4.22.1.2.39.10.10.10.108|4x|0b16212c3840
1.3.6.1.2.1.4.22.1.2.39.10.10.10.109|4x|0b16212c3841
1.3.6.1.2.1.4.22.1.2.40.10.10.10.110|4x|0b16212c3842
1.3.6.1.2.1.4.22.1.2.40.10.10.10.111|4x|0b16212c3843
1.3.6.1.2.1.4.22.1.2.40.10.10.10.112|4x|0b16212c3844
1.3.6.1.2.1.4.22.1.2.40.10.10.10.113|4x|0b16212c3845
1.3.6.1.2.1.4.22.1.2.40.10.10.10.114|4x|0b16212c3846
1.3.6.1.2.1.4.22.1.2.40.10.10.10.115|4x|0b16212c3847
1.3.6.1.2.1.4.22.1.2.40.10.10.10.116|4x|0b16212c3848
1.3.6.1.2.1.4.22.1.2.40.10.10.10.117|4x|0b16212c3849
1.3.6.1.2.1.4.22.1.2.40.10.10.10.118|4x|0b16212c384a
1.3.6.1.2.1.4.22.1.2.40.10.10.10.119|4x|0b16212c384b
1.3.6.1.2.1.4.22.1.2.41.10.10.10.120|4x|0b16212c384c
1.3.6.1.2.1.4.22.1.2.41.10.10.10.121|4x|0b16212c384d
1.3.6.1.2.1.4.22.1.2.41.10.10.10.122|4x|0b16212c384e
1.3.6.1.2.1.4.22.1.2.41.10.10.10.123|4x|0b16212c384f
1.3.6.1.2.1.4.22.1.2.41.10.10.10.124|4x|0b16212c3850
1.3.6.1.2.1.4.22.1.2.41.10.10.10.125|4x|0b16212c3851
1.3.6.1.2.1.4.22.1.2.41.10.10.10.126|4x|0b16212c3852
1.3.6.1.2.1.4.22.1.2.41.10.10.10.127|4x|0b16212c3853
1.3.6.1.2.1.4.22.1.2.41.10.10.10.128|4x|0b16212c3854
1.3.6.1.2.1.4.22.1.2.41.10.10.10.129|4x|0b16212c3855
1.3.6.1.2.1.4.22.1.2.42.10.10.10.130|4x|0b16212c3856
1.3.6.1.2.1.4.22.1.2.42.10.10.10.131|4x|0b16212c3857
1.3.6.1.2.1.4.22.1.2.42.10.10.10.132|4x|0b16212c3858
1.3.6.1.2.1.4.22.1.2.42.10.10.10.133|4x|0b16212c3859
1.3.6.1.2.1.4.22.1.2.42.10.10.10.134|4x|0b16212c385a
1.3.6.1.2.1.4.22.1.2.42.10.10.10.135|4x|0b16212c385b
1.3.6.1.2.1.4.22.1.2.42.10.10.10.136|4x|0b16212c385c
1.3.6.1.2.1.4.22.1.2.42.10.10.10.137|4x|0b16212c385d
1.3.6.1.2.1.4.22.1.2.42.10.10.10.138|4x|0b16212c385e
1.3.6.1.2.1.4.22.1.2.42.10.10.10.139|4x|0b16212c385f
1.3.6.1.2.1.4.22.1.2.43.10.10.10.140|4x|0b16212c3860
1.3.6.1.2.1.4.22.1.2.43.10.10.10.141|4x|0b16212c3861
1.3.6.1.2.1.4.22.1.2.43.10.10.10.142|4x|0b16212c3862
1.3.6.1.2.1.4.22.1.2.43.10.10.10.143|4x|0b16212c3863
1.3.6.1.2.1.4.22.1.2.43.10.10.10.144|4x|0b16212c3900
1.3.6.1.2.1.4.22.1.2.43.10.10.10.145|4x|0b16212c3901
1.3.6.1.2.1.4.22.1.2.43.10.10.10.146|4x|0b16212c3902
1.3.6.1.2.1.4.22.1.2.43.10.10.10.147|4x|0b16212c3903
1.3.6.1.2.1.4.22.1.2.43.10.10.10.148|4x|0b16212c3904
1.3.6.1.2.1.4.22.1.2.43.10.10.10.149|4x|0b16212c3905
1.3.6.1.2.1.4.22.1.2.44.10.10.10.150|4x|0b16212c3906
1.3.6.1.2.1.4.22.1.2.44.10.10.10.151|4x|0b16212c3907
1.3.6.1.2.1.4.22.1.2.44.10.10.10.152|4x|0b16212c3908
1.3.6.1.2.1.4.22.1.2.44.10.10.10.153|4x|0b16212c3909
1.3.6.1.2.1.4.22.1.2.44.10.10.10.154|4x|0b16212c390a
1.3.6.1.2.1.4.22.1.2.44.10.10.10.155|4x|0b16212c390b
1.3.6.1.2.1.4.22.1.2.44.10.10.10.156|4x|0b16212c390c
1.3.6.1.2.1.4.22.1.2.44.10.10.10.157|4x|0b16212c390d
1.3.6.1.2.1.4.22.1.2.44.10.10.10.158|4x|0b16212c390e
1.3.6.1.2.1.4.22.1.2.44.10.10.10.159|4x|0b16212c390f
1.3.6.1.2.1.4.22.1.2.45.10.10.10.160|4x|0b16212c3910
1.3.6.1.2.1.4.22.1.2.45.10.10.10.161|4x|0b16212c3911
1.3.6.1.2.1.4.22.1.2.45.10.10.10.162|4x|0b16212c3912
1.3.6.1.2.1.4.22.1.2.45.10.10.10.163|4x|0b16212c3913
1.3.6.1.2.1.4.22.1.2.45.10.10.10.164|4x|0b16212c3914
1.3.6.1.2.1.4.22.1.2.45.10.10.10.165|4x|0b16212c3915
1.3.6.1.2.1.4.22.1.2.45.10.10.10.166|4x|0b16212c3916
1.3.6.1.2.1.4.22.1.2.45.10.10.10.167|4x|0b16212c3917
1.3.6.1.2.1.4.22.1.2.45.10.10.10.168|4x|0b16212c3918
1.3.6.1.2.1.4.22.1.2.45.10.10.10.169|4x|0b16212c3919
1.3.6.1.2.1.4.22.1.2.46.10.10.10.170|4x|0b16212c391a
1.3.6.1.2.1.4.22.1.2.46.10.10.10.171|4x|0b16212c391b
1.3.6.1.2.1.4.22.1.2.46.10.10.10.172|4x|0b16212c391c
1.3.6.1.2.1.4.22.1.2.46.10.10.10.173|4x|0b16212c391d
1.3.6.1.2.1.4.22.1.2.46.10.10.10.174|4x|0b16212c391e
1.3.6.1.2.1.4.22.1.2.46.10.10.10.175|4x|0b16212c391f
1.3.6.1.2.1.4.22.1.2.46.10.10.10.176|4x|0b16212c3920
1.3.6.1.2.1.4.22.1.2.46.10.10.10.177|4x|0b16212c3921
1.3.6.1.2.1.4.22.1.2.46.10.10.10.178|4x|0b16212c3922
1.3.6.1.2.1.4.22.1.2.46.10.10.10.179|4x|0b16212c3923
1.3.6.1.2.1.4.22.1.2.47.10.10.10.180|4x|0b16212c3924
1.3.6.1.2.1.4.22.1.2.47.10.10.10.181|4x|0b16212c3925
1.3.6.1.2.1.4.22.1.2.47.10.10.10.182|4x|0b16212c3926
1.3.6.1.2.1.4.22.1.2.47.10.10.10.183|4x|0b16212c3927
1.3.6.1.2.1.4.22.1.2.47.10.10.10.184|4x|0b16212c3928
1.3.6.1.2.1.4.22.1.2.47.10.10.10.185|4x|0b16212c3929
1.3.6.1.2.1.4.22.1.2.47.10.10.10.186|4x|0b16212c392a
1.3.6.1.2.1.4.22.1.2.47.10.10.10.187|4x|0b16212c392b
1.3.6.1.2.1.4.22.1.2.47.10.10.10.188|4x|0b16212c392c
1.3.6.1.2.1.4.22.1.2.47.10.10.10.189|4x|0b16212c392d
1.3.6.1.2.1.4.22.1.2.48.10.10.10.190|4x|0b16212c392e
1.3.6.1.2.1.4.22.1.2.48.10.10.10.191|4x|0b16212c392f
1.3.6.1.2.1.4.22.1.2.48.10.10.10.192|4x|0b16212c3930
1.3.6.1.2.1.4.22.1.2.48.10.10.10.193|4x|0b16212c3931
1.3.6.1.2.1.4.22.1.2.48.10.10.10.194|4x|0b16212c3932
1.3.6.1.2.1.4.22.1.2.48.10.10.10.195|4x|0b16212c3933
1.3.6.1.2.1.4.22.1.2.48.10.10.10.196|4x|0b16212c3934
1.3.6.1.2.1.4.22.1.2.48.10.10.10.197|4x|0b16212c3935
1.3.6.1.2.1.4.22.1.2.48.10.10.10.198|4x|0b16212c3936
1.3.6.1.2.1.4.22.1.2.48.10.10.10.199|4x|0b16212c3937
1.3.6.1.2.1.4.22.1.2.49.10.10.10.200|4x|0b16212c3938
1.3.6.1.2.1.4.22.1.2.49.10.10.10.201|4x|0b16212c3939
1.3.6.1.2.1.4.22.1.2.49.10.10.10.202|4x|0b16212c393a
1.3.6.1.2.1.4.22.1.2.49.10.10.10.203|4x|0b16212c393b
1.3.6.1.2.1.4.22.1.2.49.10.10.10.204|4x|0b16212c393c
1.3.6.1.2.1.4.22.1.2.49.10.10.10.205|4x|0b16212c393d
1.3.6.1.2.1.4.22.1.2.49.10.10.10.206|4x|0b16212c393e
1.3.6.1.2.1.4.22.1.2.49.10.10.10.207|4x|0b16212c393f
1.3.6.1.2.1.4.22.1.2.49.10.10.10.208|4x|0b16212c3940
1.3.6.1.2.1.4.22.1.2.49.10.10.10.209|4x|0b16212c3941
1.3.6.1.2.1.4.22.1.2.50.10.10.10.210|4x|0b16212c3942
1.3.6.1.2.1.4.22.1.2.50.10.10.10.211|4x|0b16212c3943
1.3.6.1.2.1.4.22.1.2.50.10.10.10.212|4x|0b16212c3944
1.3.6.1.2.1.4.22.1.2.50.10.10.10.213|4x|0b16212c3945
1.3.6.1.2.1.4.22.1.2.50.10.10.10.214|4x|0b16212c3946
1.3.6.1.2.1.4.22.1.2.50.10.10.10.215|4x|0b16212c3947
1.3.6.1.2.1.4.22.1.2.50.10.10.10.216|4x|0b16212c3948
1.3.6.1.2.1.4.22.1.2.50.10.10.10.217|4x|0b16212c3949
1.3.6.1.2.1.4.22.1.2.50.10.10.10.218|4x|0b16212c394a
1.3.6.1.2.1.4.22.1.2.50.10.10.10.219|4x|0b16212c394b
1.3.6.1.2.1.4.22.1.2.51.10.10.10.220|4x|0b16212c394c
1.3.6.1.2.1.4.22.1.2.51.10.10.10.221|4x|0b16212c394d
1.3.6.1.2.1.4.22.1.2.51.10.10.10.222|4x|0b16212c394e
1.3.6.1.2.1.4.22.1.2.51.10.10.10.223|4x|0b16212c394f
1.3.6.1.2.1.4.22.1.2.51.10.10.10.224|4x|0b16212c3950
1.3.6.1.2.1.4.22.1.2.51.10.10.10.225|4x|0b16212c3951
1.3.6.1.2.1.4.22.1.2.51.10.10.10.226|4x|0b16212c3952
1.3.6.1.2.1.4.22.1.2.51.10.10.10.227|4x|0b16212c3953
1.3.6.1.2.1.4.22.1.2.51.10.10.10.228|4x|0b16212c3954
1.3.6.1.2.1.4.22.1.2.51.10.10.10.229|4x|0b16212c3955
1.3.6.1.2.1.4.22.1.2.52.10.10.10.230|4x|0b16212c3956
1.3.6.1.2.1.4.22.1.2.52.10.10.10.231|4x|0b16212c3957
1.3.6.1.2.1.4.22.1.2.52.10.10.10.232|4x|0b16212c3958
1.3.6.1.2.1.4.22.1.2.52.10.10.10.233|4x|0b16212c3959
1.3.6.1.2.1.4.22.1.2.52.10.10.10.234|4x|0b16212c395a
1.3.6.1.2.1.4.22.1.2.52.10.10.10.235|4x|0b16212c395b
1.3.6.1.2.1.4.22.1.2.52.10.10.10.236|4x|0b16212c395c
1.3.6.1.2.1.4.22.1.2.52.10.10.10.237|4x|0b16212c395d
1.3.6.1.2.1.4.22.1.2.52.10.10.10.238|4x|0b16212c395e
1.3.6.1.2.1.4.22.1.2.52.10.10.10.239|4x|0b16212c395f
1.3.6.1.2.1.4.22.1.2.53.10.10.10.240|4x|0b16212c3960
1.3.6.1.2.1.4.22.1.2.53.10.10.10.241|4x|0b16212c3961
1.3.6.1.2.1.4.22.1.2.53.10.10.10.242|4x|0b16212c3962
1.3.6.1.2.1.4.22.1.2.53.10.10.10.243|4x|0b16212c3963
1.3.6.1.2.1.4.22.1.2.53.10.10.10.244|4x|0b16212c3a00
1.3.6.1.2.1.4.22.1.2.53.10.10.10.245|4x|0b16212c3a01
1.3.6.1.2.1.4.22.1.2.53.10.10.10.246|4x|0b16212c3a02
1.3.6.1.2.1.4.22.1.2.53.10.10.10.247|4x|0b16212c3a03
1.3.6.1.2.1.4.22.1.2.53.10.10.10.248|4x|0b16212c3a04
1.3.6.1.2.1.4.22.1.2.53.10.10.10.249|4x|0b16212c3a05
1.3.6.1.2.1.4.22.1.2.54.10.10.10.250|4x|0b16212c3a06
1.3.6.1.2.1.4.22.1.2.54.10.10.10.251|4x|0b16212c3a07
1.3.6.1.2.1.4.22.1.2.54.10.10.10.252|4x|0b16212c3a08
1.3.6.1.2.1.4.22.1.2.54.10.10.10.253|4x|0b16212c3a09
1.3.6.1.2.1.4.22.1.2.54.10.10.10.254|4x|0b16212c3a0a
1.3.6.1.2.1.4.22.1.2.54.10.10.10.255|4x|0b16212c3a0b
1.3.6.1.2.1.4.22.1.2.54.10.10.11.0|4x|0b16212c3a0c
1.3.6.1.2.1.4.22.1.2.54.10.10.11.1|4x|0b16212c3a0d
1.3.6.1.2.1.4.22.1.2.54.10.10.11.2|4x|0b16212c3a0e
1.3.6.1.2.1.4.22.1.2.54.10.10.11.3|4x|0b16212c3a0f
1.3.6.1.2.1.4.22.1.2.55.10.10.11.4|4x|0b16212c3a10
1.3.6.1.2.1.4.22.1.2.55.10.10.11.5|4x|0b16212c3a11
1.3.6.1.2.1.4.22.1.2.55.10.10.11.6|4x|0b16212c3a12
1.3.6.1.2.1.4.22.1.2.55.10.10.11.7|4x|0b16212c3a13
1.3.6.1.2.1.4.22.1.2.55.10.10.11.8|4x|0b16212c3a14
1.3.6.1.2.1.4.22.1.2.55.10.10.11.9|4x|0b16212c3a15
1.3.6.1.2.1.4.22.1.2.55.10.10.11.10|4x|0b16212c3a16
1.3.6.1.2.1.4.22.1.2.55.10.10.11.11|4x|0b16212c3a17
1.3.6.1.2.1.4.22.1.2.55.10.10.11.12|4x|0b16212c3a18
1.3.6.1.2.1.4.22.1.2.55.10.10.11.13|4x|0b16212c3a19
1.3.6.1.2.1.4.22.1.2.56.10.10.11.14|4x|0b16212c3a1a
1.3.6.1.2.1.4.22.1.2.56.10.10.11.15|4x|0b16212c3a1b
1.3.6.1.2.1.4.22.1.2.56.10.10.11.16|4x|0b16212c3a1c
1.3.6.1.2.1.4.22.1.2.56.10.10.11.17|4x|0b16212c3a1d
1.3.6.1.2.1.4.22.1.2.56.10.10.11.18|4x|0b16212c3a1e
1.3.6.1.2.1.4.22.1.2.56.10.10.11.19|4x|0b16212c3a1f
1.3.6.1.2.1.4.22.1.2.56.10.10.11.20|4x|0b16212c3a20
1.3.6.1.2.1.4.22.1.2.56.10.10.11.21|4x|0b16212c3a21
1.3.6.1.2.1.4.22.1.2.56.10.10.11.22|4x|0b16212c3a22
1.3.6.1.2.1.4.22.1.2.56.10.10.11.23|4x|0b16212c3a23
1.3.6.1.2.1.4.22.1.2.57.10.10.11.24|4x|0b16212c3a24
1.3.6.1.2.1.4.22.1.2.57.10.10.11.25|4x|0b16212c3a25
1.3.6.1.2.1.4.22.1.2.57.10.10.11.26|4x|0b16212c3a26
1.3.6.1.2.1.4.22.1.2.57.10.10.11.27|4x|0b16212c3a27
1.3.6.1.2.1.4.22.1.2.57.10.10.11.28|4x|0b16212c3a28
1.3.6.1.2.1.4.22.1.2.57.10.10.11.29|4x|0b16212c3a29
1.3.6.1.2.1.4.22.1.2.57.10.10.11.30|4x|0b16212c3a2a
1.3.6.1.2.1.4.22.1.2.57.10.10.11.31|4x|0b16212c3a2b
1.3.6.1.2.1.4.22.1.2.57.10.10.11.32|4x|0b16212c3a2c
1.3.6.1.2.1.4.22.1.2.57.10.10.11.33|4x|0b16212c3a2d
1.3.6.1.2.1.4.22.1.2.58.10.10.11.34|4x|0b16212c3a2e
1.3.6.1.2.1.4.22.1.2.58.10.10.11.35|4x|0b16212c3a2f
1.3.6.1.2.1.4.22.1.2.58.10.10.11.36|4x|0b16212c3a30
1.3.6.1.2.1.4.22.1.2.58.10.10.11.37|4x|0b16212c3a31
1.3.6.1.2.1.4.22.1.2.58.10.10.11.38|4x|0b16212c3a32
1.3.6.1.2.1.4.22.1.2.58.10.10.11.39|4x|0b16212c3a33
1.3.6.1.2.1.4.22.1.2.58.10.10.11.40|4x|0b16212c3a34
1.3.6.1.2.1.4.22.1.2.58.10.10.11.41|4x|0b16212c3a35
1.3.6.1.2.1.4.22.1.2.58.10.10.11.42|4x|0b16212c3a36
1.3.6.1.2.1.4.22.1.2.58.10.10.11.43|4x|0b16212c3a37
1.3.6.1.2.1.4.22.1.2.59.10.10.11.44|4x|0b16212c3a38
1.3.6.1.2.1.4.22.1.2.59.10.10.11.45|4x|0b16212c3a39
1.3.6.1.2.1.4.22.1.2.59.10.10.11.46|4x|0b16212c3a3a
1.3.6.1.2.1.4.22.1.2.59.10.10.11.47|4x|0b16212c3a3b
1.3.6.1.2.1.4.22.1.2.59.10.10.11.48|4x|0b16212c3a3c
1.3.6.1.2.1.4.22.1.2.59.10.10.11.49|4x|0b16212c3a3d
1.3.6.1.2.1.4.22.1.2.59.10.10.11.50|4x|0b16212c3a3e
1.3.6.1.2.1.4.22.1.2.59.10.10.11.51|4x|0b16212c3a3f
1.3.6.1.2.1.4.22.1.2.59.10.10.11.52|4x|0b16212c3a40
1.3.6.1.2.1.4.22.1.2.59.10.10.11.53|4x|0b16212c3a41
1.3.6.1.2.1.4.22.1.2.60.10.10.11.54|4x|0b16212c3a42
1.3.6.1.2.1.4.22.1.2.60.10.10.11.55|4x|0b16212c3a43
1.3.6.1.2.1.4.22.1.2.60.10.10.11.56|4x|0b16212c3a44
1.3.6.1.2.1.4.22.1.2.60.10.10.11.57|4x|0b16212c3a45
1.3.6.1.2.1.4.22.1.2.60.10.10.11.58|4x|0b16212c3a46
1.3.6.1.2.1.4.22.1.2.60.10.10.11.59|4x|0b16212c3a47
1.3.6.1.2.1.4.22.1.2.60.10.10.11.60|4x|0b16212c3a48
1.3.6.1.2.1.4.22.1.2.60.10.10.11.61|4x|0b16212c3a49
1.3.6.1.2.1.4.22.1.2.60.10.10.11.62|4x|0b16212c3a4a
1.3.6.1.2.1.4.22.1.2.60.10.10.11.63|4x|0b16212c3a4b
1.3.6.1.2.1.4.22.1.2.61.10.10.11.64|4x|0b16212c3a4c
1.3.6.1.2.1.4.22.1.2.61.10.10.11.65|4x|0b16212c3a4d
1.3.6.1.2.1.4.22.1.2.61.10.10.11.66|4x|0b16212c3a4e
1.3.6.1.2.1.4.22.1.2.61.10.10.11.67|4x|0b16212c3a4f
1.3.6.1.2.1.4.22.1.2.61.10.10.11.68|4x|0b16212c3a50
1.3.6.1.2.1.4.22.1.2.61.10.10.11.69|4x|0b16212c3a51
1.3.6.1.2.1.4.22.1.2.61.10.10.11.70|4x|0b16212c3a52
1.3.6.1.2.1.4.22.1.2.61.10.10.11.71|4x|0b16212c3a53
1.3.6.1.2.1.4.22.1.2.61.10.10.11.72|4x|0b16212c3a54
1.3.6.1.2.1.4.22.1.2.61.10.10.11.73|4x|0b16212c3a55
1.3.6.1.2.1.4.22.1.2.62.10.10.11.74|4x|0b16212c3a56
1.3.6.1.2.1.4.22.1.2.62.10.10.11.75|4x|0b16212c3a57
1.3.6.1.2.1.4.22.1.2.62.10.10.11.76|4x|0b16212c3a58
1.3.6.1.2.1.4.22.1.2.62.10.10.11.77|4x|0b16212c3a59
1.3.6.1.2.1.4.22.1.2.62.10.10.11.78|4x|0b16212c3a5a
1.3.6.1.2.1.4.22.1.2.62.10.10.11.79|4x|0b16212c3a5b
1.3.6.1.2.1.4.22.1.2.62.10.10.11.80|4x|0b16212c3a5c
1.3.6.1.2.1.4.22.1.2.62.10.10.11.81|4x|0b16212c3a5d
1.3.6.1.2.1.4.22.1.2.62.10.10.11.82|4x|0b16212c3a5e
1.3.6.1.2.1.4.22.1.2.62.10.10.11.83|4x|0b16212c3a5f
1.3.6.1.2.1.4.22.1.2.63.10.10.11.84|4x|0b16212c3a60
1.3.6.1.2.1.4.22.1.2.63.10.10.11.85|4x|0b16212c3a61
1.3.6.1.2.1.4.22.1.2.63.10.10.11.86|4x|0b16212c3a62
1.3.6.1.2.1.4.22.1.2.63.10.10.11.87|4x|0b16212c3a63
1.3.6.1.2.1.4.22.1.2.63.10.10.11.88|4x|0b16212c3b00
1.3.6.1.2.1.4.22.1.2.63.10.10.11.89|4x|0b16212c3b01
1.3.6.1.2.1.4.22.1.2.63.10.10.11.90|4x|0b16212c3b02
1.3.6.1.2.1.4.22.1.2.63.10.10.11.91|4x|0b16212c3b03
1.3.6.1.2.1.4.22.1.2.63.10.10.11.92|4x|0b16212c3b04
1.3.6.1.2.1.4.22.1.2.63.10.10.11.93|4x|0b16212c3b05
1.3.6.1.2.1.4.22.1.2.64.10.10.11.94|4x|0b16212c3b06
1.3.6.1.2.1.4.22.1.2.64.10.10.11.95|4x|0b16212c3b07
1.3.6.1.2.1.4.22.1.2.64.10.10.11.96|4x|0b16212c3b08
1.3.6.1.2.1.4.22.1.2.64.10.10.11.97|4x|0b16212c3b09
1.3.6.1.2.1.4.22.1.2.64.10.10.11.98|4x|0b16212c3b0a
1.3.6.1.2.1.4.22.1.2.64.10.10.11.99|4x|0b16212c3b0b
1.3.6.1.2.1.4.22.1.2.64.10.10.11.100|4x|0b16212c3b0c
1.3.6.1.2.1.4.22.1.2.64.10.10.11.101|4x|0b16212c3b0d
1.3.6.1.2.1.4.22.1.2.64.10.10.11.102|4x|0b16212c3b0e
1.3.6.1.2.1.4.22.1.2.64.10.10.11.103|4x|0b16212c3b0f
1.3.6.1.2.1.17.1.4.1.2.1|2|1
1.3.6.1.2.1.17.1.4.1.2.2|2|2
1.3.6.1.2.1.17.1.4.1.2.3|2|3
1.3.6.1.2.1.17.1.4.1.2.4|2|4
1.3.6.1.2.1.17.1.4.1.2.5|2|5
1.3.6.1.2.1.17.1.4.1.2.6|2|6
1.3.6.1.2.1.17.1.4.1.2.7|2|7
1.3.6.1.2.1.17.1.4.1.2.8|2|8
1.3.6.1.2.1.17.1.4.1.2.9|2|9
1.3.6.1.2.1.17.1.4.1.2.10|2|10
1.3.6.1.2.1.17.1.4.1.2.11|2|11
1.3.6.1.2.1.17.1.4.1.2.12|2|12
1.3.6.1.2.1.17.1.4.1.2.13|2|13
1.3.6.1.2.1.17.1.4.1.2.14|2|14
1.3.6.1.2.1.17.1.4.1.2.15|2|15
1.3.6.1.2.1.17.1.4.1.2.16|2|16
1.3.6.1.2.1.17.1.4.1.2.17|2|17
1.3.6.1.2.1.17.1.4.1.2.18|2|18
1.3.6.1.2.1.17.1.4.1.2.19|2|19
1.3.6.1.2.1.17.1.4.1.2.20|2|20
1.3.6.1.2.1.17.1.4.1.2.21|2|21
1.3.6.1.2.1.17.1.4.1.2.22|2|22
1.3.6.1.2.1.17.1.4.1.2.23|2|23
1.3.6.1.2.1.17.1.4.1.2.24|2|24
1.3.6.1.2.1.17.1.4.1.2.25|2|25
1.3.6.1.2.1.17.1.4.1.2.26|2|26
1.3.6.1.2.1.17.1.4.1.2.27|2|27
1.3.6.1.2.1.17.1.4.1.2.28|2|28
1.3.6.1.2.1.17.1.4.1.2.29|2|29
1.3.6.1.2.1.17.1.4.1.2.30|2|30
1.3.6.1.2.1.17.1.4.1.2.31|2|31
1.3.6.1.2.1.17.1.4.1.2.32|2|32
1.3.6.1.2.1.17.1.4.1.2.33|2|33
1.3.6.1.2.1.17.1.4.1.2.34|2|34
1.3.6.1.2.1.17.1.4.1.2.35|2|35
1.3.6.1.2.1.17.1.4.1.2.36|2|36
1.3.6.1.2.1.17.1.4.1.2.37|2|37
1.3.6.1.2.1.17.1.4.1.2.38|2|38
1.3.6.1.2.1.17.1.4.1.2.39|2|39
1.3.6.1.2.1.17.1.4.1.2.40|2|40
1.3.6.1.2.1.17.1.4.1.2.41|2|41
1.3.6.1.2.1.17.1.4.1.2.42|2|42
1.3.6.1.2.1.17.1.4.1.2.43|2|43
1.3.6.1.2.1.17.1.4.1.2.44|2|44
1.3.6.1.2.1.17.1.4.1.2.45|2|45
1.3.6.1.2.1.17.1.4.1.2.46|2|46
1.3.6.1.2.1.17.1.4.1.2.47|2|47
1.3.6.1.2.1.17.1.4.1.2.48|2|48
1.3.6.1.2.1.17.1.4.1.2.49|2|49
1.3.6.1.2.1.17.1.4.1.2.50|2|50
1.3.6.1.2.1.17.1.4.1.2.51|2|51
1.3.6.1.2.1.17.1.4.1.2.52|2|52
1.3.6.1.2.1.17.1.4.1.2.53|2|53
1.3.6.1.2.1.17.1.4.1.2.54|2|54
1.3.6.1.2.1.17.1.4.1.2.55|2|55
1.3.6.1.2.1.17.1.4.1.2.56|2|56
1.3.6.1.2.1.17.1.4.1.2.57|2|57
1.3.6.1.2.1.17.1.4.1.2.58|2|58
1.3.6.1.2.1.17.1.4.1.2.59|2|59
1.3.6.1.2.1.17.1.4.1.2.60|2|60
1.3.6.1.2.1.17.1.4.1.2.61|2|61
1.3.6.1.2.1.17.1.4.1.2.62|2|62
1.3.6.1.2.1.17.1.4.1.2.63|2|63
1.3.6.1.2.1.17.1.4.1.2.64|2|64
1.3.6.1.2.1.17.1.4.1.2.65|2|65
1.3.6.1.2.1.17.1.4.1.2.66|2|66
1.3.6.1.2.1.17.1.4.1.2.67|2|67
1.3.6.1.2.1.17.1.4.1.2.68|2|68
1.3.6.1.2.1.17.1.4.1.2.69|2|69
1.3.6.1.2.1.17.1.4.1.2.70|2|70
1.3.6.1.2.1.17.1.4.1.2.71|2|71
1.3.6.1.2.1.17.1.4.1.2.72|2|72
1.3.6.1.2.1.17.1.4.1.2.73|2|73
1.3.6.1.2.1.17.1.4.1.2.74|2|74
1.3.6.1.2.1.17.1.4.1.2.75|2|75
1.3.6.1.2.1.17.1.4.1.2.76|2|76
1.3.6.1.2.1.17.1.4.1.2.77|2|77
1.3.6.1.2.1.17.1.4.1.2.78|2|78
1.3.6.1.2.1.17.1.4.1.2.79|2|79
1.3.6.1.2.1.17.1.4.1.2.80|2|80
1.3.6.1.2.1.17.1.4.1.2.81|2|81
1.3.6.1.2.1.17.1.4.1.2.82|2|82
1.3.6.1.2.1.17.1.4.1.2.83|2|83
1.3.6.1.2.1.17.1.4.1.2.84|2|84
1.3.6.1.2.1.17.1.4.1.2.85|2|85
1.3.6.1.2.1.17.1.4.1.2.86|2|86
1.3.6.1.2.1.17.1.4.1.2.87|2|87
1.3.6.1.2.1.17.1.4.1.2.88|2|88
1.3.6.1.2.1.17.1.4.1.2.89|2|89
1.3.6.1.2.1.17.1.4.1.2.90|2|90
1.3.6.1.2.1.17.1.4.1.2.91|2|91
1.3.6.1.2.1.17.1.4.1.2.92|2|92
1.3.6.1.2.1.17.1.4.1.2.93|2|93
1.3.6.1.2.1.17.1.4.1.2.94|2|94
1.3.6.1.2.1.17.1.4.1.2.95|2|95
1.3.6.1.2.1.17.1.4.1.2.96|2|96
1.3.6.1.2.1.17.1.4.1.2.97|2|97
1.3.6.1.2.1.17.1.4.1.2.98|2|98
1.3.6.1.2.1.17.1.4.1.2.99|2|99
1.3.6.1.2.1.17.1.4.1.2.100|2|100
1.3.6.1.2.1.17.1.4.1.2.101|2|101
1.3.6.1.2.1.17.1.4.1.2.102|2|102
1.3.6.1.2.1.17.1.4.1.2.103|2|103
1.3.6.1.2.1.17.1.4.1.2.104|2|104
1.3.6.1.2.1.17.1.4.1.2.105|2|105
1.3.6.1.2.1.17.1.4.1.2.106|2|106
1.3.6.1.2.1.17.1.4.1.2.107|2|107
1.3.6.1.2.1.17.1.4.1.2.108|2|108
1.3.6.1.2.1.17.1.4.1.2.109|2|109
1.3.6.1.2.1.17.1.4.1.2.110|2|110
1.3.6.1.2.1.17.1.4.1.2.111|2|111
1.3.6.1.2.1.17.1.4.1.2.112|2|112
1.3.6.1.2.1.17.1.4.1.2.113|2|113
1.3.6.1.2.1.17.1.4.1.2.114|2|114
1.3.6.1.2.1.17.1.4.1.2.115|2|115
1.3.6.1.2.1.17.1.4.1.2.116|2|116
1.3.6.1.2.1.17.1.4.1.2.117|2|117
1.3.6.1.2.1.17.1.4.1.2.118|2|118
1.3.6.1.2.1.17.1.4.1.2.119|2|119
1.3.6.1.2.1.17.1.4.1.2.120|2|120
1.3.6.1.2.1.17.1.4.1.2.121|2|121
1.3.6.1.2.1.17.1.4.1.2.122|2|122
1.3.6.1.2.1.17.1.4.1.2.123|2|123
1.3.6.1.2.1.17.1.4.1.2.124|2|124
1.3.6.1.2.1.17.1.4.1.2.125|2|125
1.3.6.1.2.1.17.1.4.1.2.126|2|126
1.3.6.1.2.1.17.1.4.1.2.127|2|127
1.3.6.1.2.1.17.1.4.1.2.128|2|128
1.3.6.1.2.1.17.1.4.1.2.129|2|129
1.3.6.1.2.1.17.1.4.1.2.130|2|130
1.3.6.1.2.1.17.1.4.1.2.131|2|131
1.3.6.1.2.1.17.1.4.1.2.132|2|132
1.3.6.1.2.1.17.1.4.1.2.133|2|133
1.3.6.1.2.1.17.1.4.1.2.134|2|134
1.3.6.1.2.1.17.1.4.1.2.135|2|135
1.3.6.1.2.1.17.1.4.1.2.136|2|136
1.3.6.1.2.1.17.1.4.1.2.137|2|137
1.3.6.1.2.1.17.1.4.1.2.138|2|138
1.3.6.1.2.1.17.1.4.1.2.139|2|139
1.3.6.1.2.1.17.1.4.1.2.140|2|140
1.3.6.1.2.1.17.1.4.1.2.141|2|141
1.3.6.1.2.1.17.1.4.1.2.142|2|142
1.3.6.1.2.1.17.1.4.1.2.143|2|143
1.3.6.1.2.1.17.1.4.1.2.144|2|144
1.3.6.1.2.1.17.1.4.1.2.145|2|145
1.3.6.1.2.1.17.1.4.1.2.146|2|146
1.3.6.1.2.1.17.1.4.1.2.147|2|147
1.3.6.1.2.1.17.1.4.1.2.148|2|148
1.3.6.1.2.1.17.1.4.1.2.149|2|149
1.3.6.1.2.1.17.1.4.1.2.150|2|150
1.3.6.1.2.1.17.1.4.1.2.151|2|151
1.3.6.1.2.1.17.1.4.1.2.152|2|152
1.3.6.1.2.1.17.1.4.1.2.153|2|153
1.3.6.1.2.1.17.1.4.1.2.154|2|154
1.3.6.1.2.1.17.1.4.1.2.155|2|155
1.3.6.1.2.1.17.1.4.1.2.156|2|156
1.3.6.1.2.1.17.1.4.1.2.157|2|157
1.3.6.1.2.1.17.1.4.1.2.158|2|158
1.3.6.1.2.1.17.1.4.1.2.159|2|159
1.3.6.1.2.1.17.1.4.1.2.160|2|160
1.3.6.1.2.1.17.1.4.1.2.161|2|161
1.3.6.1.2.1.17.1.4.1.2.162|2|162
1.3.6.1.2.1.17.1.4.1.2.163|2|163
1.3.6.1.2.1.17.1.4.1.2.164|2|164
1.3.6.1.2.1.17.1.4.1.2.165|2|165
1.3.6.1.2.1.17.1.4.1.2.166|2|166
1.3.6.1.2.1.17.1.4.1.2.167|2|167
1.3.6.1.2.1.17.1.4.1.2.168|2|168
1.3.6.1.2.1.17.1.4.1.2.169|2|169
1.3.6.1.2.1.17.1.4.1.2.170|2|170
1.3.6.1.2.1.17.1.4.1.2.171|2|171
1.3.6.1.2.1.17.1.4.1.2.172|2|172
1.3.6.1.2.1.17.1.4.1.2.173|2|173
1.3.6.1.2.1.17.1.4.1.2.174|2|174
1.3.6.1.2.1.17.1.4.1.2.175|2|175
1.3.6.1.2.1.17.1.4.1.2.176|2|176
1.3.6.1.2.1.17.1.4.1.2.177|2|177
1.3.6.1.2.1.17.1.4.1.2.178|2|178
1.3.6.1.2.1.17.1.4.1.2.179|2|179
1.3.6.1.2.1.17.1.4.1.2.180|2|180
1.3.6.1.2.1.17.1.4.1.2.181|2|181
1.3.6.1.2.1.17.1.4.1.2.182|2|182
1.3.6.1.2.1.17.1.4.1.2.183|2|183
1.3.6.1.2.1.17.1.4.1.2.184|2|184
1.3.6.1.2.1.17.1.4.1.2.185|2|185
1.3.6.1.2.1.17.1.4.1.2.186|2|186
1.3.6.1.2.1.17.1.4.1.2.187|2|187
1.3.6.1.2.1.17.1.4.1.2.188|2|188
1.3.6.1.2.1.17.1.4.1.2.189|2|189
1.3.6.1.2.1.17.1.4.1.2.190|2|190
1.3.6.1.2.1.17.1.4.1.2.191|2|191
1.3.6.1.2.1.17.1.4.1.2.192|2|192
1.3.6.1.2.1.17.1.4.1.2.193|2|193
1.3.6.1.2.1.17.1.4.1.2.194|2|194
1.3.6.1.2.1.17.1.4.1.2.195|2|195
1.3.6.1.2.1.17.1.4.1.2.196|2|196
1.3.6.1.2.1.17.1.4.1.2.197|2|197
1.3.6.1.2.1.17.1.4.1.2.198|2|198
1.3.6.1.2.1.17.1.4.1.2.199|2|199
1.3.6.1.2.1.17.1.4.1.2.200|2|200
1.3.6.1.2.1.17.1.4.1.2.201|2|201
1.3.6.1.2.1.17.1.4.1.2.202|2|202
1.3.6.1.2.1.17.1.4.1.2.203|2|203
1.3.6.1.2.1.17.1.4.1.2.204|2|204
1.3.6.1.2.1.17.1.4.1.2.205|2|205
1.3.6.1.2.1.17.1.4.1.2.206|2|206
1.3.6.1.2.1.17.1.4.1.2.207|2|207
1.3.6.1.2.1.17.1.4.1.2.208|2|208
1.3.6.1.2.1.17.1.4.1.2.209|2|209
1.3.6.1.2.1.17.1.4.1.2.210|2|210
1.3.6.1.2.1.17.1.4.1.2.211|2|211
1.3.6.1.2.1.17.1.4.1.2.212|2|212
1.3.6.1.2.1.17.1.4.1.2.213|2|213
1.3.6.1.2.1.17.1.4.1.2.214|2|214
1.3.6.1.2.1.17.1.4.1.2.215|2|215
1.3.6.1.2.1.17.1.4.1.2.216|2|216
1.3.6.1.2.1.17.1.4.1.2.217|2|217
1.3.6.1.2.1.17.1.4.1.2.218|2|218
1.3.6.1.2.1.17.1.4.1.2.219|2|219
1.3.6.1.2.1.17.1.4.1.2.220|2|220
1.3.6.1.2.1.17.1.4.1.2.221|2|221
1.3.6.1.2.1.17.1.4.1.2.222|2|222
1.3.6.1.2.1.17.1.4.1.2.223|2|223
1.3.6.1.2.1.17.1.4.1.2.224|2|224
1.3.6.1.2.1.17.1.4.1.2.225|2|225
1.3.6.1.2.1.17.1.4.1.2.226|2|226
1.3.6.1.2.1.17.1.4.1.2.227|2|227
1.3.6.1.2.1.17.1.4.1.2.228|2|228
1.3.6.1.2.1.17.1.4.1.2.229|2|229
1.3.6.1.2.1.17.1.4.1.2.230|2|230
1.3.6.1.2.1.17.1.4.1.2.231|2|231
1.3.6.1.2.1.17.1.4.1.2.232|2|232
1.3.6.1.2.1.17.1.4.1.2.233|2|233
1.3.6.1.2.1.17.1.4.1.2.234|2|234
1.3.6.1.2.1.17.1.4.1.2.235|2|235
1.3.6.1.2.1.17.1.4.1.2.236|2|236
1.3.6.1.2.1.17.1.4.1.2.237|2|237
1.3.6.1.2.1.17.1.4.1.2.238|2|238
1.3.6.1.2.1.17.1.4.1.2.239|2|239
1.3.6.1.2.1.17.1.4.1.2.240|2|240
1.3.6.1.2.1.17.1.4.1.2.241|2|241
1.3.6.1.2.1.17.1.4.1.2.242|2|242
1.3.6.1.2.1.17.1.4.1.2.243|2|243
1.3.6.1.2.1.17.1.4.1.2.244|2|244
1.3.6.1.2.1.17.1.4.1.2.245|2|245
1.3.6.1.2.1.17.1.4.1.2.246|2|246
1.3.6.1.2.1.17.1.4.1.2.247|2|247
1.3.6.1.2.1.17.1.4.1.2.248|2|248
1.3.6.1.2.1.17.1.4.1.2.249|2|249
1.3.6.1.2.1.17.1.4.1.2.250|2|250
1.3.6.1.2.1.17.1.4.1.2.251|2|251
1.3.6.1.2.1.17.1.4.1.2.252|2|252
1.3.6.1.2.1.17.1.4.1.2.253|2|253
1.3.6.1.2.1.17.1.4.1.2.254|2|254
1.3.6.1.2.1.17.1.4.1.2.255|2|255
1.3.6.1.2.1.17.1.4.1.2.256|2|256
1.3.6.1.2.1.17.1.4.1.2.257|2|257
1.3.6.1.2.1.17.1.4.1.2.258|2|258
1.3.6.1.2.1.17.1.4.1.2.259|2|259
1.3.6.1.2.1.17.1.4.1.2.260|2|260
1.3.6.1.2.1.17.1.4.1.2.261|2|261
1.3.6.1.2.1.17.1.4.1.2.262|2|262
1.3.6.1.2.1.17.1.4.1.2.263|2|263
1.3.6.1.2.1.17.1.4.1.2.264|2|264
1.3.6.1.2.1.17.1.4.1.2.265|2|265
1.3.6.1.2.1.17.1.4.1.2.266|2|266
1.3.6.1.2.1.17.1.4.1.2.267|2|267
1.3.6.1.2.1.17.1.4.1.2.268|2|268
1.3.6.1.2.1.17.1.4.1.2.269|2|269
1.3.6.1.2.1.17.1.4.1.2.270|2|270
1.3.6.1.2.1.17.1.4.1.2.271|2|271
1.3.6.1.2.1.17.1.4.1.2.272|2|272
1.3.6.1.2.1.17.1.4.1.2.273|2|273
1.3.6.1.2.1.17.1.4.1.2.274|2|274
1.3.6.1.2.1.17.1.4.1.2.275|2|275
1.3.6.1.2.1.17.1.4.1.2.276|2|276
1.3.6.1.2.1.17.1.4.1.2.277|2|277
1.3.6.1.2.1.17.1.4.1.2.278|2|278
1.3.6.1.2.1.17.1.4.1.2.279|2|279
1.3.6.1.2.1.17.1.4.1.2.280|2|280
1.3.6.1.2.1.17.1.4.1.2.281|2|281
1.3.6.1.2.1.17.1.4.1.2.282|2|282
1.3.6.1.2.1.17.1.4.1.2.283|2|283
1.3.6.1.2.1.17.1.4.1.2.284|2|284
1.3.6.1.2.1.17.1.4.1.2.285|2|285
1.3.6.1.2.1.17.1.4.1.2.286|2|286
1.3.6.1.2.1.17.1.4.1.2.287|2|287
1.3.6.1.2.1.17.1.4.1.2.288|2|288
1.3.6.1.2.1.17.1.4.1.2.289|2|289
1.3.6.1.2.1.17.1.4.1.2.290|2|290
1.3.6.1.2.1.17.1.4.1.2.291|2|291
1.3.6.1.2.1.17.1.4.1.2.292|2|292
1.3.6.1.2.1.17.1.4.1.2.293|2|293
1.3.6.1.2.1.17.1.4.1.2.294|2|294
1.3.6.1.2.1.17.1.4.1.2.295|2|295
1.3.6.1.2.1.17.1.4.1.2.296|2|296
1.3.6.1.2.1.17.1.4.1.2.297|2|297
1.3.6.1.2.1.17.1.4.1.2.298|2|298
1.3.6.1.2.1.17.1.4.1.2.299|2|299
1.3.6.1.2.1.17.1.4.1.2.300|2|300
1.3.6.1.2.1.17.1.4.1.2.301|2|301
1.3.6.1.2.1.17.1.4.1.2.302|2|302
1.3.6.1.2.1.17.1.4.1.2.303|2|303
1.3.6.1.2.1.17.1.4.1.2.304|2|304
1.3.6.1.2.1.17.1.4.1.2.305|2|305
1.3.6.1.2.1.17.1.4.1.2.306|2|306
1.3.6.1.2.1.17.1.4.1.2.307|2|307
1.3.6.1.2.1.17.1.4.1.2.308|2|308
1.3.6.1.2.1.17.1.4.1.2.309|2|309
1.3.6.1.2.1.17.1.4.1.2.310|2|310
1.3.6.1.2.1.17.1.4.1.2.311|2|311
1.3.6.1.2.1.17.1.4.1.2.312|2|312
1.3.6.1.2.1.17.1.4.1.2.313|2|313
1.3.6.1.2.1.17.1.4.1.2.314|2|314
1.3.6.1.2.1.17.1.4.1.2.315|2|315
1.3.6.1.2.1.17.1.4.1.2.316|2|316
1.3.6.1.2.1.17.1.4.1.2.317|2|317
1.3.6.1.2.1.17.1.4.1.2.318|2|318
1.3.6.1.2.1.17.1.4.1.2.319|2|319
1.3.6.1.2.1.17.1.4.1.2.320|2|320
1.3.6.1.2.1.17.1.4.1.2.321|2|321
1.3.6.1.2.1.17.1.4.1.2.322|2|322
1.3.6.1.2.1.17.1.4.1.2.323|2|323
1.3.6.1.2.1.17.1.4.1.2.324|2|324
1.3.6.1.2.1.17.1.4.1.2.325|2|325
1.3.6.1.2.1.17.1.4.1.2.326|2|326
1.3.6.1.2.1.17.1.4.1.2.327|2|327
1.3.6.1.2.1.17.1.4.1.2.328|2|328
1.3.6.1.2.1.17.1.4.1.2.329|2|329
1.3.6.1.2.1.17.1.4.1.2.330|2|330
1.3.6.1.2.1.17.1.4.1.2.331|2|331
1.3.6.1.2.1.17.1.4.1.2.332|2|332
1.3.6.1.2.1.17.1.4.1.2.333|2|333
1.3.6.1.2.1.17.1.4.1.2.334|2|334
1.3.6.1.2.1.17.1.4.1.2.335|2|335
1.3.6.1.2.1.17.1.4.1.2.336|2|336
1.3.6.1.2.1.17.1.4.1.2.337|2|337
1.3.6.1.2.1.17.1.4.1.2.338|2|338
1.3.6.1.2.1.17.1.4.1.2.339|2|339
1.3.6.1.2.1.17.1.4.1.2.340|2|340
1.3.6.1.2.1.17.1.4.1.2.341|2|341
1.3.6.1.2.1.17.1.4.1.2.342|2|342
1.3.6.1.2.1.17.1.4.1.2.343|2|343
1.3.6.1.2.1.17.1.4.1.2.344|2|344
1.3.6.1.2.1.17.1.4.1.2.345|2|345
1.3.6.1.2.1.17.1.4.1.2.346|2|346
1.3.6.1.2.1.17.1.4.1.2.347|2|347
1.3.6.1.2.1.17.1.4.1.2.348|2|348
1.3.6.1.2.1.17.1.4.1.2.349|2|349
1.3.6.1.2.1.17.1.4.1.2.350|2|350
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.66|2|1
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.67|2|2
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.68|2|3
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.69|2|4
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.70|2|5
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.71|2|6
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.72|2|7
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.73|2|8
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.74|2|9
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.75|2|10
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.76|2|11
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.77|2|12
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.78|2|13
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.79|2|14
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.80|2|15
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.81|2|16
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.82|2|17
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.83|2|18
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.84|2|19
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.85|2|20
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.86|2|21
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.87|2|22
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.88|2|23
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.89|2|24
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.90|2|25
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.91|2|26
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.92|2|27
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.93|2|28
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.94|2|29
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.95|2|30
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.96|2|31
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.97|2|32
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.98|2|33
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.99|2|34
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.0|2|35
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.1|2|36
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.2|2|37
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.3|2|38
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.4|2|39
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.5|2|40
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.6|2|41
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.7|2|42
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.8|2|43
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.9|2|44
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.10|2|45
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.11|2|46
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.12|2|47
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.13|2|48
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.14|2|49
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.15|2|50
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.16|2|51
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.17|2|52
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.18|2|53
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.19|2|54
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.20|2|55
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.21|2|56
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.22|2|57
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.23|2|58
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.24|2|59
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.25|2|60
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.26|2|61
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.27|2|62
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.28|2|63
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.29|2|64
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.30|2|65
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.31|2|66
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.32|2|67
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.33|2|68
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.34|2|69
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.35|2|70
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.36|2|71
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.37|2|72
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.38|2|73
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.39|2|74
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.40|2|75
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.41|2|76
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.42|2|77
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.43|2|78
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.44|2|79
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.45|2|80
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.46|2|81
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.47|2|82
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.48|2|83
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.49|2|84
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.50|2|85
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.51|2|86
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.52|2|87
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.53|2|88
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.54|2|89
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.55|2|90
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.56|2|91
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.57|2|92
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.58|2|93
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.59|2|94
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.60|2|95
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.61|2|96
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.62|2|97
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.63|2|98
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.64|2|99
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.65|2|100
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.66|2|101
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.67|2|102
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.68|2|103
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.69|2|104
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.70|2|105
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.71|2|106
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.72|2|107
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.73|2|108
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.74|2|109
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.75|2|110
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.76|2|111
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.77|2|112
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.78|2|113
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.79|2|114
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.80|2|115
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.81|2|116
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.82|2|117
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.83|2|118
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.84|2|119
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.85|2|120
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.86|2|121
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.87|2|122
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.88|2|123
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.89|2|124
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.90|2|125
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.91|2|126
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.92|2|127
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.93|2|128
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.94|2|129
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.95|2|130
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.96|2|131
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.97|2|132
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.98|2|133
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.99|2|134
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.0|2|135
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.1|2|136
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.2|2|137
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.3|2|138
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.4|2|139
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.5|2|140
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.6|2|141
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.7|2|142
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.8|2|143
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.9|2|144
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.10|2|145
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.11|2|146
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.12|2|147
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.13|2|148
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.14|2|149
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.15|2|150
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.16|2|151
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.17|2|152
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.18|2|153
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.19|2|154
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.20|2|155
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.21|2|156
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.22|2|157
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.23|2|158
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.24|2|159
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.25|2|160
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.26|2|161
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.27|2|162
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.28|2|163
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.29|2|164
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.30|2|165
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.31|2|166
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.32|2|167
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.33|2|168
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.34|2|169
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.35|2|170
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.36|2|171
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.37|2|172
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.38|2|173
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.39|2|174
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.40|2|175
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.41|2|176
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.42|2|177
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.43|2|178
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.44|2|179
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.45|2|180
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.46|2|181
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.47|2|182
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.48|2|183
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.49|2|184
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.50|2|185
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.51|2|186
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.52|2|187
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.53|2|188
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.54|2|189
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.55|2|190
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.56|2|191
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.57|2|192
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.58|2|193
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.59|2|194
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.60|2|195
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.61|2|196
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.62|2|197
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.63|2|198
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.64|2|199
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.65|2|200
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.66|2|201
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.67|2|202
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.68|2|203
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.69|2|204
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.70|2|205
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.71|2|206
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.72|2|207
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.73|2|208
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.74|2|209
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.75|2|210
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.76|2|211
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.77|2|212
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.78|2|213
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.79|2|214
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.80|2|215
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.81|2|216
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.82|2|217
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.83|2|218
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.84|2|219
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.85|2|220
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.86|2|221
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.87|2|222
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.88|2|223
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.89|2|224
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.90|2|225
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.91|2|226
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.92|2|227
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.93|2|228
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.94|2|229
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.95|2|230
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.96|2|231
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.97|2|232
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.98|2|233
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.99|2|234
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.0|2|235
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.1|2|236
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.2|2|237
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.3|2|238
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.4|2|239
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.5|2|240
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.6|2|241
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.7|2|242
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.8|2|243
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.9|2|244
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.10|2|245
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.11|2|246
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.12|2|247
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.13|2|248
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.14|2|249
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.15|2|250
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.16|2|251
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.17|2|252
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.18|2|253
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.19|2|254
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.20|2|255
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.21|2|256
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.22|2|257
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.23|2|258
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.24|2|259
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.25|2|260
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.26|2|261
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.27|2|262
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.28|2|263
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.29|2|264
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.30|2|265
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.31|2|266
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.32|2|267
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.33|2|268
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.34|2|269
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.35|2|270
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.36|2|271
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.37|2|272
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.38|2|273
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.39|2|274
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.40|2|275
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.41|2|276
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.42|2|277
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.43|2|278
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.44|2|279
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.45|2|280
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.46|2|281
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.47|2|282
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.48|2|283
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.49|2|284
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.50|2|285
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.51|2|286
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.52|2|287
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.53|2|288
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.54|2|289
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.55|2|290
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.56|2|291
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.57|2|292
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.58|2|293
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.59|2|294
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.60|2|295
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.61|2|296
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.62|2|297
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.63|2|298
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.64|2|299
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.65|2|300
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.66|2|301
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.67|2|302
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.68|2|303
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.69|2|304
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.70|2|305
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.71|2|306
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.72|2|307
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.73|2|308
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.74|2|309
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.75|2|310
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.76|2|311
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.77|2|312
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.78|2|313
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.79|2|314
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.80|2|315
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.81|2|316
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.82|2|317
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.83|2|318
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.84|2|319
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.85|2|320
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.86|2|321
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.87|2|322
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.88|2|323
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.89|2|324
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.90|2|325
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.91|2|326
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.92|2|327
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.93|2|328
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.94|2|329
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.95|2|330
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.96|2|331
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.97|2|332
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.98|2|333
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.99|2|334
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.0|2|335
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.1|2|336
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.2|2|337
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.3|2|338
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.4|2|339
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.5|2|340
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.6|2|341
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.7|2|342
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.8|2|343
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.9|2|344
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.10|2|345
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.11|2|346
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.12|2|347
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.13|2|348
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.14|2|349
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.15|2|350
snmpsim-0.4.5/data/public.snmprec 0000664 0063214 0063214 00000624606 13145417350 017211 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4|Linux zeus 4.8.6.5-smp #2 SMP Sun Nov 13 14:58:11 CDT 2016 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67:numeric|rate=100,initial=123999999
1.3.6.1.2.1.1.4.0|4|SNMP Laboratories, info@snmplabs.com
1.3.6.1.2.1.1.5.0|4:writecache|value=zeus.snmplabs.com (you can change this!)
1.3.6.1.2.1.1.6.0|4|San Francisco, California, United States
1.3.6.1.2.1.1.7.0|2|72
1.3.6.1.2.1.1.8.0|67:numeric|rate=100,initial=123999999
1.3.6.1.2.1.1.9.1.2.1|6|1.3.6.1.6.3.10.3.1.1
1.3.6.1.2.1.1.9.1.2.2|6|1.3.6.1.6.3.11.3.1.1
1.3.6.1.2.1.1.9.1.2.3|6|1.3.6.1.6.3.15.2.1.1
1.3.6.1.2.1.1.9.1.2.4|6|1.3.6.1.6.3.1
1.3.6.1.2.1.1.9.1.2.5|6|1.3.6.1.2.1.49
1.3.6.1.2.1.1.9.1.2.6|6|1.3.6.1.2.1.4
1.3.6.1.2.1.1.9.1.2.7|6|1.3.6.1.2.1.50
1.3.6.1.2.1.1.9.1.2.8|6|1.3.6.1.6.3.16.2.2.1
1.3.6.1.2.1.1.9.1.3.1|4|The SNMP Management Architecture MIB.
1.3.6.1.2.1.1.9.1.3.2|4|The MIB for Message Processing and Dispatching.
1.3.6.1.2.1.1.9.1.3.3|4|The management information definitions for the SNMP User-based Security Model.
1.3.6.1.2.1.1.9.1.3.4|4|The MIB module for SNMPv2 entities
1.3.6.1.2.1.1.9.1.3.5|4|The MIB module for managing TCP implementations
1.3.6.1.2.1.1.9.1.3.6|4|The MIB module for managing IP and ICMP implementations
1.3.6.1.2.1.1.9.1.3.7|4|The MIB module for managing UDP implementations
1.3.6.1.2.1.1.9.1.3.8|4|View-based Access Control Model for SNMP.
1.3.6.1.2.1.1.9.1.4.1|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.2|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.3|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.4|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.5|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.6|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.7|67:numeric|rate=0.001
1.3.6.1.2.1.1.9.1.4.8|67:numeric|rate=0.001
1.3.6.1.2.1.2.1.0|2|2
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|eth0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16436
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|100000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.9.1|67:numeric|rate=0.0001,initial=123999999
1.3.6.1.2.1.2.2.1.9.2|67:numeric|rate=0.0001,initial=123999999
1.3.6.1.2.1.2.2.1.10.1|65:numeric|rate=200,deviation=10,cumulative=1
1.3.6.1.2.1.2.2.1.10.2|65:numeric|rate=300,deviation=10,cumulative=1
1.3.6.1.2.1.2.2.1.11.1|65:numeric|rate=18,initial=1,cumulative=1
1.3.6.1.2.1.2.2.1.11.2|65:numeric|rate=38,initial=1,cumulative=1
1.3.6.1.2.1.2.2.1.12.1|65:numeric|rate=1,cumulative=1
1.3.6.1.2.1.2.2.1.12.2|65:numeric|rate=2,cumulative=1
1.3.6.1.2.1.2.2.1.13.1|65:numeric|scale=0.4,offset=1,deviation=1,function=cos,cumulative=1
1.3.6.1.2.1.2.2.1.13.2|65:numeric|scale=0.6,offset=1,deviation=1,function=cos,cumulative=1
1.3.6.1.2.1.2.2.1.14.1|65:numeric|scale=0.1,offset=1,deviation=1,function=sin,cumulative=1
1.3.6.1.2.1.2.2.1.14.2|65:numeric|scale=0.2,offset=1,deviation=1,function=sin,cumulative=1
1.3.6.1.2.1.2.2.1.15.1|65:numeric|rate=0.1,deviation=2,cumulative=1
1.3.6.1.2.1.2.2.1.15.2|65:numeric|rate=0.1,deviation=1,cumulative=1
1.3.6.1.2.1.2.2.1.16.1|65:numeric|rate=90,deviation=3,cumulative=1
1.3.6.1.2.1.2.2.1.16.2|65:numeric|rate=100,deviation=6,cumulative=1
1.3.6.1.2.1.2.2.1.17.1|65:numeric|rate=5,initial=1,cumulative=1
1.3.6.1.2.1.2.2.1.17.2|65:numeric|rate=9,initial=1,cumulative=1
1.3.6.1.2.1.2.2.1.18.1|65:numeric|rate=1,deviation=10,cumulative=1
1.3.6.1.2.1.2.2.1.18.2|65:numeric|rate=1,deviation=10,cumulative=1
1.3.6.1.2.1.2.2.1.19.1|65:numeric|scale=0.2,offset=1,deviation=1,function=sin,cumulative=1
1.3.6.1.2.1.2.2.1.19.2|65:numeric|scale=0.6,offset=1,deviation=1,function=sin,cumulative=1
1.3.6.1.2.1.2.2.1.20.1|65:numeric|scale=0.1,offset=1,deviation=1,function=cos,cumulative=1
1.3.6.1.2.1.2.2.1.20.2|65:numeric|scale=0.6,offset=1,deviation=1,function=cos,cumulative=1
1.3.6.1.2.1.2.2.1.21.1|66:numeric|function=pow%%2,scale=100,offset=100,rate=100
1.3.6.1.2.1.2.2.1.21.2|66:numeric|function=pow%%2,scale=100,offset=100,rate=200
1.3.6.1.2.1.3.1.1.1.2.1.195.218.254.97|2|2
1.3.6.1.2.1.3.1.1.2.2.1.195.218.254.97|4x|000e849f9c19
1.3.6.1.2.1.3.1.1.3.2.1.195.218.254.97|64x|c3dafe61
1.3.6.1.2.1.4.1.0|2|2
1.3.6.1.2.1.4.2.0|2|64
1.3.6.1.2.1.4.3.0|65|22908563
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|64050
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|22835646
1.3.6.1.2.1.4.10.0|65|15835620
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.13.0|2|30
1.3.6.1.2.1.4.14.0|65|92
1.3.6.1.2.1.4.15.0|65|46
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|31158
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|699707
1.3.6.1.2.1.4.20.1.1.127.0.0.1|64x|7f000001
1.3.6.1.2.1.4.20.1.1.195.218.254.105|64x|c3dafe69
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.195.218.254.105|2|2
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64x|ff000000
1.3.6.1.2.1.4.20.1.3.195.218.254.105|64x|ffffff00
1.3.6.1.2.1.4.20.1.4.127.0.0.1|2|0
1.3.6.1.2.1.4.20.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.21.1.1.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.1.127.0.0.0|64x|7f000000
1.3.6.1.2.1.4.21.1.1.195.218.254.0|64x|c3dafe00
1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|2
1.3.6.1.2.1.4.21.1.2.127.0.0.0|2|1
1.3.6.1.2.1.4.21.1.2.195.218.254.0|2|2
1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|1
1.3.6.1.2.1.4.21.1.3.127.0.0.0|2|0
1.3.6.1.2.1.4.21.1.3.195.218.254.0|2|0
1.3.6.1.2.1.4.21.1.7.0.0.0.0|64x|c3dafe61
1.3.6.1.2.1.4.21.1.7.127.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.7.195.218.254.0|64x|00000000
1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4
1.3.6.1.2.1.4.21.1.8.127.0.0.0|2|3
1.3.6.1.2.1.4.21.1.8.195.218.254.0|2|3
1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|2
1.3.6.1.2.1.4.21.1.9.127.0.0.0|2|2
1.3.6.1.2.1.4.21.1.9.195.218.254.0|2|2
1.3.6.1.2.1.4.21.1.11.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.11.127.0.0.0|64x|ff000000
1.3.6.1.2.1.4.21.1.11.195.218.254.0|64x|ffffff00
1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.127.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.195.218.254.0|6|0.0
1.3.6.1.2.1.4.22.1.1.2.195.218.254.97|2|2
1.3.6.1.2.1.4.22.1.2.2.195.218.254.97|4x|000e849f9c19
1.3.6.1.2.1.4.22.1.3.2.195.218.254.97|64x|c3dafe61
1.3.6.1.2.1.4.22.1.4.2.195.218.254.97|2|3
1.3.6.1.2.1.4.23.0|65|0
1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.195.218.254.97|64x|00000000
1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.0.0.0.255.0.0.0.0.0|64x|7f000000
1.3.6.1.2.1.4.24.4.1.1.195.218.254.0.0.255.255.255.0.0.0.0.0|64x|c3dafe00
1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.195.218.254.97|64x|00000000
1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.0.0.0.255.0.0.0.0.0|64x|000000ff
1.3.6.1.2.1.4.24.4.1.2.195.218.254.0.0.255.255.255.0.0.0.0.0|64x|00ffffff
1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.195.218.254.97|2|0
1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.0.0.0.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.3.195.218.254.0.0.255.255.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.195.218.254.97|64x|c3dafe61
1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.0.0.0.255.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.24.4.1.4.195.218.254.0.0.255.255.255.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.195.218.254.97|2|2
1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.0.0.0.255.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.4.1.5.195.218.254.0.0.255.255.255.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.195.218.254.97|2|4
1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.0.0.0.255.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.4.1.6.195.218.254.0.0.255.255.255.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.195.218.254.97|2|2
1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.0.0.0.255.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.7.195.218.254.0.0.255.255.255.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.195.218.254.97|6|0.0
1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.0.0.0.255.0.0.0.0.0|6|0.0
1.3.6.1.2.1.4.24.4.1.9.195.218.254.0.0.255.255.255.0.0.0.0.0|6|0.0
1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.195.218.254.97|2|0
1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.0.0.0.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.10.195.218.254.0.0.255.255.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.195.218.254.97|2|1
1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.0.0.0.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.11.195.218.254.0.0.255.255.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.12.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.13.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.14.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.15.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.195.218.254.97|2|1
1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.0.0.0.255.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.4.1.16.195.218.254.0.0.255.255.255.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.6.0|66|6
1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|2
1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.7.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|4
1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|2
1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|66|0
1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|1
1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256
1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256
1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|1
1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.25.0|2|2
1.3.6.1.2.1.4.26.0|2|64
1.3.6.1.2.1.4.31.1.1.3.1|65|22906399
1.3.6.1.2.1.4.31.1.1.3.2|65|0
1.3.6.1.2.1.4.31.1.1.4.1|70|22906399
1.3.6.1.2.1.4.31.1.1.4.2|70|0
1.3.6.1.2.1.4.31.1.1.6.1|70|0
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|64050
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.13.2|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|46
1.3.6.1.2.1.4.31.1.1.15.2|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|22833483
1.3.6.1.2.1.4.31.1.1.18.2|65|0
1.3.6.1.2.1.4.31.1.1.19.1|70|22833483
1.3.6.1.2.1.4.31.1.1.19.2|70|0
1.3.6.1.2.1.4.31.1.1.20.1|65|15833452
1.3.6.1.2.1.4.31.1.1.20.2|65|6
1.3.6.1.2.1.4.31.1.1.21.1|70|15833452
1.3.6.1.2.1.4.31.1.1.21.2|70|6
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|699707
1.3.6.1.2.1.4.31.1.1.29.2|65|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|30000
1.3.6.1.2.1.4.31.1.1.47.2|66|30000
1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.3.1.4.195.218.254.105|2|2
1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|2
1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.4.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|1
1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.1.4.215.218.234.183.0
1.3.6.1.2.1.4.34.1.5.1.4.195.218.254.105|6|1.3.6.1.2.1.4.32.1.5.2.1.4.215.218.234.183.0
1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|6|1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1|2|2
1.3.6.1.2.1.4.34.1.6.1.4.195.218.254.105|2|2
1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|5
1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.7.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|1
1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1|67|0
1.3.6.1.2.1.4.34.1.8.1.4.195.218.254.105|67|0
1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|67|0
1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|67|0
1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1|67|0
1.3.6.1.2.1.4.34.1.9.1.4.195.218.254.105|67|0
1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|67|0
1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|67|0
1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.10.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|1
1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1|2|2
1.3.6.1.2.1.4.34.1.11.1.4.195.218.254.105|2|2
1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|2
1.3.6.1.2.1.4.35.1.4.2.1.4.195.218.254.97|4x|000e849f9c19
1.3.6.1.2.1.4.35.1.6.2.1.4.195.218.254.97|2|3
1.3.6.1.2.1.4.35.1.7.2.1.4.195.218.254.97|2|1
1.3.6.1.2.1.4.35.1.8.2.1.4.195.218.254.97|2|1
1.3.6.1.2.1.5.1.0|65|324
1.3.6.1.2.1.5.2.0|65|3
1.3.6.1.2.1.5.3.0|65|248
1.3.6.1.2.1.5.4.0|65|54
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|0
1.3.6.1.2.1.5.9.0|65|22
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|2735
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|2735
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|0
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.6.1.0|2|1
1.3.6.1.2.1.6.2.0|2|200
1.3.6.1.2.1.6.3.0|2|120000
1.3.6.1.2.1.6.4.0|2|-1
1.3.6.1.2.1.6.5.0|65|104742
1.3.6.1.2.1.6.6.0|65|44969
1.3.6.1.2.1.6.7.0|65|1812
1.3.6.1.2.1.6.8.0|65|4441
1.3.6.1.2.1.6.9.0|66|9
1.3.6.1.2.1.6.10.0|65|22280578
1.3.6.1.2.1.6.11.0|65|15264067
1.3.6.1.2.1.6.12.0|65|7502
1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.25.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.37.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.111.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.113.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.587.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.668.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.2049.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.6000.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.36152.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.59364.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.60182.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.53.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.631.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.953.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.195.218.254.105.53.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.195.218.254.105.41511.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.41735.194.154.70.112.22|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.45632.10.105.41.179.3389|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.47639.208.71.169.36.6667|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.51620.74.125.77.125.5222|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.51684.194.67.10.226.22|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.55059.194.67.10.225.22|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.56134.205.188.8.43.5190|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.56769.194.67.2.106.5222|2|5
1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.25.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.37.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.111.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.113.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.587.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.668.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.2049.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.6000.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.36152.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.59364.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.60182.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.127.0.0.1.53.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.631.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.953.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.195.218.254.105.53.0.0.0.0.0|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.41511.194.67.1.250.993|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.41735.194.154.70.112.22|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.45632.10.105.41.179.3389|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.47639.208.71.169.36.6667|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.51620.74.125.77.125.5222|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.51684.194.67.10.226.22|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.55059.194.67.10.225.22|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.56134.205.188.8.43.5190|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.56769.194.67.2.106.5222|64x|c3dafe69
1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0|2|22
1.3.6.1.2.1.6.13.1.3.0.0.0.0.25.0.0.0.0.0|2|25
1.3.6.1.2.1.6.13.1.3.0.0.0.0.37.0.0.0.0.0|2|37
1.3.6.1.2.1.6.13.1.3.0.0.0.0.111.0.0.0.0.0|2|111
1.3.6.1.2.1.6.13.1.3.0.0.0.0.113.0.0.0.0.0|2|113
1.3.6.1.2.1.6.13.1.3.0.0.0.0.587.0.0.0.0.0|2|587
1.3.6.1.2.1.6.13.1.3.0.0.0.0.668.0.0.0.0.0|2|668
1.3.6.1.2.1.6.13.1.3.0.0.0.0.2049.0.0.0.0.0|2|2049
1.3.6.1.2.1.6.13.1.3.0.0.0.0.6000.0.0.0.0.0|2|6000
1.3.6.1.2.1.6.13.1.3.0.0.0.0.36152.0.0.0.0.0|2|36152
1.3.6.1.2.1.6.13.1.3.0.0.0.0.59364.0.0.0.0.0|2|59364
1.3.6.1.2.1.6.13.1.3.0.0.0.0.60182.0.0.0.0.0|2|60182
1.3.6.1.2.1.6.13.1.3.127.0.0.1.53.0.0.0.0.0|2|53
1.3.6.1.2.1.6.13.1.3.127.0.0.1.631.0.0.0.0.0|2|631
1.3.6.1.2.1.6.13.1.3.127.0.0.1.953.0.0.0.0.0|2|953
1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.0|2|8118
1.3.6.1.2.1.6.13.1.3.195.218.254.105.53.0.0.0.0.0|2|53
1.3.6.1.2.1.6.13.1.3.195.218.254.105.41511.194.67.1.250.993|2|41511
1.3.6.1.2.1.6.13.1.3.195.218.254.105.41735.194.154.70.112.22|2|41735
1.3.6.1.2.1.6.13.1.3.195.218.254.105.45632.10.105.41.179.3389|2|45632
1.3.6.1.2.1.6.13.1.3.195.218.254.105.47639.208.71.169.36.6667|2|47639
1.3.6.1.2.1.6.13.1.3.195.218.254.105.51620.74.125.77.125.5222|2|51620
1.3.6.1.2.1.6.13.1.3.195.218.254.105.51684.194.67.10.226.22|2|51684
1.3.6.1.2.1.6.13.1.3.195.218.254.105.55059.194.67.10.225.22|2|55059
1.3.6.1.2.1.6.13.1.3.195.218.254.105.56134.205.188.8.43.5190|2|56134
1.3.6.1.2.1.6.13.1.3.195.218.254.105.56769.194.67.2.106.5222|2|56769
1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.25.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.37.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.111.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.113.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.587.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.668.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.2049.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.6000.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.36152.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.59364.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.60182.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.53.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.631.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.953.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.195.218.254.105.53.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.195.218.254.105.41511.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.195.218.254.105.41735.194.154.70.112.22|64x|c29a4670
1.3.6.1.2.1.6.13.1.4.195.218.254.105.45632.10.105.41.179.3389|64x|0a6929b3
1.3.6.1.2.1.6.13.1.4.195.218.254.105.47639.208.71.169.36.6667|64x|d047a924
1.3.6.1.2.1.6.13.1.4.195.218.254.105.51620.74.125.77.125.5222|64|J}M}
1.3.6.1.2.1.6.13.1.4.195.218.254.105.51684.194.67.10.226.22|64x|c2430ae2
1.3.6.1.2.1.6.13.1.4.195.218.254.105.55059.194.67.10.225.22|64x|c2430ae1
1.3.6.1.2.1.6.13.1.4.195.218.254.105.56134.205.188.8.43.5190|64x|cdbc082b
1.3.6.1.2.1.6.13.1.4.195.218.254.105.56769.194.67.2.106.5222|64x|c243026a
1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.25.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.37.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.111.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.113.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.587.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.668.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.2049.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.6000.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.36152.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.59364.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.60182.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.53.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.631.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.953.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.195.218.254.105.53.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.195.218.254.105.41511.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.195.218.254.105.41735.194.154.70.112.22|2|22
1.3.6.1.2.1.6.13.1.5.195.218.254.105.45632.10.105.41.179.3389|2|3389
1.3.6.1.2.1.6.13.1.5.195.218.254.105.47639.208.71.169.36.6667|2|6667
1.3.6.1.2.1.6.13.1.5.195.218.254.105.51620.74.125.77.125.5222|2|5222
1.3.6.1.2.1.6.13.1.5.195.218.254.105.51684.194.67.10.226.22|2|22
1.3.6.1.2.1.6.13.1.5.195.218.254.105.55059.194.67.10.225.22|2|22
1.3.6.1.2.1.6.13.1.5.195.218.254.105.56134.205.188.8.43.5190|2|5190
1.3.6.1.2.1.6.13.1.5.195.218.254.105.56769.194.67.2.106.5222|2|5222
1.3.6.1.2.1.6.14.0|65|3
1.3.6.1.2.1.6.15.0|65|6483
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.41511.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.41735.1.4.194.154.70.112.22|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.45632.1.4.10.105.41.179.3389|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.47639.1.4.208.71.169.36.6667|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.51620.1.4.74.125.77.125.5222|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.51684.1.4.194.67.10.226.22|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.55059.1.4.194.67.10.225.22|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.56134.1.4.205.188.8.43.5190|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.56769.1.4.194.67.2.106.5222|2|5
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.41511.1.4.194.67.1.250.993|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.41735.1.4.194.154.70.112.22|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.45632.1.4.10.105.41.179.3389|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.47639.1.4.208.71.169.36.6667|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.51620.1.4.74.125.77.125.5222|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.51684.1.4.194.67.10.226.22|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.55059.1.4.194.67.10.225.22|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.56134.1.4.205.188.8.43.5190|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.56769.1.4.194.67.2.106.5222|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.25|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.37|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.111|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.113|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.587|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.668|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.2049|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.6000|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.36152|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.59364|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.60182|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.53|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.631|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.953|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.8118|66|0
1.3.6.1.2.1.6.20.1.4.1.4.195.218.254.105.53|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.80|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6000|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.631|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.953|66|0
1.3.6.1.2.1.7.1.0|65|555447
1.3.6.1.2.1.7.2.0|65|229
1.3.6.1.2.1.7.3.0|65|1
1.3.6.1.2.1.7.4.0|65|560646
1.3.6.1.2.1.7.5.1.1.0.0.0.0.37|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.111|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.123|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.161|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.512|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.631|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.665|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.978|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.2049|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.32768|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.32769|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.32770|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.44998|64x|00000000
1.3.6.1.2.1.7.5.1.1.127.0.0.1.53|64x|7f000001
1.3.6.1.2.1.7.5.1.1.127.0.0.1.123|64x|7f000001
1.3.6.1.2.1.7.5.1.1.195.218.254.105.53|64x|c3dafe69
1.3.6.1.2.1.7.5.1.1.195.218.254.105.123|64x|c3dafe69
1.3.6.1.2.1.7.5.1.2.0.0.0.0.37|2|37
1.3.6.1.2.1.7.5.1.2.0.0.0.0.111|2|111
1.3.6.1.2.1.7.5.1.2.0.0.0.0.123|2|123
1.3.6.1.2.1.7.5.1.2.0.0.0.0.161|2|161
1.3.6.1.2.1.7.5.1.2.0.0.0.0.512|2|512
1.3.6.1.2.1.7.5.1.2.0.0.0.0.631|2|631
1.3.6.1.2.1.7.5.1.2.0.0.0.0.665|2|665
1.3.6.1.2.1.7.5.1.2.0.0.0.0.978|2|978
1.3.6.1.2.1.7.5.1.2.0.0.0.0.2049|2|2049
1.3.6.1.2.1.7.5.1.2.0.0.0.0.32768|2|32768
1.3.6.1.2.1.7.5.1.2.0.0.0.0.32769|2|32769
1.3.6.1.2.1.7.5.1.2.0.0.0.0.32770|2|32770
1.3.6.1.2.1.7.5.1.2.0.0.0.0.44998|2|44998
1.3.6.1.2.1.7.5.1.2.127.0.0.1.53|2|53
1.3.6.1.2.1.7.5.1.2.127.0.0.1.123|2|123
1.3.6.1.2.1.7.5.1.2.195.218.254.105.53|2|53
1.3.6.1.2.1.7.5.1.2.195.218.254.105.123|2|123
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.37.1.4.0.0.0.0.0.13480|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.111.1.4.0.0.0.0.0.13348|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.123.1.4.0.0.0.0.0.13701|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.161.1.4.0.0.0.0.0.17521|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.512.1.4.0.0.0.0.0.13481|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.631.1.4.0.0.0.0.0.16954|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.665.1.4.0.0.0.0.0.13621|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.978.1.4.0.0.0.0.0.13380|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.2049.1.4.0.0.0.0.0.13649|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32768.1.4.0.0.0.0.0.13386|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32769.1.4.0.0.0.0.0.13645|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32770.1.4.0.0.0.0.0.13671|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.44998.1.4.0.0.0.0.0.25448710|66|0
1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.53.1.4.0.0.0.0.0.13528|66|0
1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.123.1.4.0.0.0.0.0.13706|66|0
1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.53.1.4.0.0.0.0.0.13530|66|0
1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.123.1.4.0.0.0.0.0.13707|66|0
1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13702|66|0
1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13704|66|0
1.3.6.1.2.1.7.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13705|66|0
1.3.6.1.2.1.11.1.0|65:numeric|rate=1,deviation=1,cumulative=1
1.3.6.1.2.1.11.2.0|65:numeric|rate=1,deviation=1,cumulative=1
1.3.6.1.2.1.11.3.0|65:numeric|rate=0.003,cumulative=1
1.3.6.1.2.1.11.4.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.5.0|65:numeric|rate=0.002,cumulative=1
1.3.6.1.2.1.11.6.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.8.0|65:numeric|rate=0.003,cumulative=1
1.3.6.1.2.1.11.9.0|65:numeric|rate=0.002,cumulative=1
1.3.6.1.2.1.11.10.0|65:numeric|rate=0.002,cumulative=1
1.3.6.1.2.1.11.11.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.12.0|65:numeric|rate=0.002,cumulative=1
1.3.6.1.2.1.11.13.0|65:numeric|rate=1,deviation=1,cumulative=1
1.3.6.1.2.1.11.14.0|65:numeric|rate=0.001cumulative=1
1.3.6.1.2.1.11.15.0|65:numeric|rate=0.5,deviation=1,cumulative=1
1.3.6.1.2.1.11.16.0|65:numeric|rate=0.2,cumulative=1
1.3.6.1.2.1.11.17.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.18.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.19.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.20.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.21.0|65:numeric|rate=0.1,cumulative=1
1.3.6.1.2.1.11.22.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.24.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.25.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.26.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.27.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.28.0|65:numeric|rate=0.5,deviation=1,cumulative=1
1.3.6.1.2.1.11.29.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.31.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.11.32.0|65:numeric|rate=0.001,cumulative=1
1.3.6.1.2.1.25.1.1.0|67|233512142
1.3.6.1.2.1.25.1.2.0|4x|07da0a19160f0b002b0400
1.3.6.1.2.1.25.1.3.0|2|1536
1.3.6.1.2.1.25.1.4.0|4|424f4f545f494d4147453d4c696e757820726f20726f6f743d3830310a
1.3.6.1.2.1.25.1.5.0|66|15
1.3.6.1.2.1.25.1.6.0|66|165
1.3.6.1.2.1.25.1.7.0|2|0
1.3.6.1.2.1.25.2.2.0|2|1021976
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.3|2|3
1.3.6.1.2.1.25.2.3.1.1.6|2|6
1.3.6.1.2.1.25.2.3.1.1.7|2|7
1.3.6.1.2.1.25.2.3.1.1.10|2|10
1.3.6.1.2.1.25.2.3.1.1.31|2|31
1.3.6.1.2.1.25.2.3.1.1.32|2|32
1.3.6.1.2.1.25.2.3.1.1.33|2|33
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.31|4|/
1.3.6.1.2.1.25.2.3.1.3.32|4|/usr/local
1.3.6.1.2.1.25.2.3.1.3.33|4|/export
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.31|2|4096
1.3.6.1.2.1.25.2.3.1.4.32|2|4096
1.3.6.1.2.1.25.2.3.1.4.33|2|4096
1.3.6.1.2.1.25.2.3.1.5.1|2|1021976
1.3.6.1.2.1.25.2.3.1.5.3|2|2009964
1.3.6.1.2.1.25.2.3.1.5.6|2|1021976
1.3.6.1.2.1.25.2.3.1.5.7|2|207040
1.3.6.1.2.1.25.2.3.1.5.10|2|987988
1.3.6.1.2.1.25.2.3.1.5.31|2|2164327
1.3.6.1.2.1.25.2.3.1.5.32|2|16822765
1.3.6.1.2.1.25.2.3.1.5.33|2|96144541
1.3.6.1.2.1.25.2.3.1.6.1|2|958176
1.3.6.1.2.1.25.2.3.1.6.3|2|985608
1.3.6.1.2.1.25.2.3.1.6.6|2|23900
1.3.6.1.2.1.25.2.3.1.6.7|2|207040
1.3.6.1.2.1.25.2.3.1.6.10|2|27432
1.3.6.1.2.1.25.2.3.1.6.31|2|1667935
1.3.6.1.2.1.25.2.3.1.6.32|2|13299705
1.3.6.1.2.1.25.2.3.1.6.33|2|90601816
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.769|2|769
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
1.3.6.1.2.1.25.3.2.1.1.1280|2|1280
1.3.6.1.2.1.25.3.2.1.1.1281|2|1281
1.3.6.1.2.1.25.3.2.1.1.1537|2|1537
1.3.6.1.2.1.25.3.2.1.1.1552|2|1552
1.3.6.1.2.1.25.3.2.1.1.1553|2|1553
1.3.6.1.2.1.25.3.2.1.1.3072|2|3072
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.769|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1280|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.1281|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.1537|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1552|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1553|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12
1.3.6.1.2.1.25.3.2.1.3.768|4|GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.769|4|GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.1280|4|lj
1.3.6.1.2.1.25.3.2.1.3.1281|4|ljc
1.3.6.1.2.1.25.3.2.1.3.1537|4|LITE-ON COMBO SOHC-4832K
1.3.6.1.2.1.25.3.2.1.3.1552|4|SCSI disk (/dev/sda)
1.3.6.1.2.1.25.3.2.1.3.1553|4|SCSI disk (/dev/sdb)
1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
1.3.6.1.2.1.25.3.2.1.4.769|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1280|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1281|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1537|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1552|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1553|6|0.0
1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0
1.3.6.1.2.1.25.3.2.1.5.768|2|2
1.3.6.1.2.1.25.3.2.1.5.769|2|2
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
1.3.6.1.2.1.25.3.2.1.5.1026|2|2
1.3.6.1.2.1.25.3.2.1.5.1280|2|1
1.3.6.1.2.1.25.3.2.1.5.1281|2|1
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
1.3.6.1.2.1.25.3.2.1.6.1280|65|0
1.3.6.1.2.1.25.3.2.1.6.1281|65|0
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.1.769|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|13
1.3.6.1.2.1.25.3.3.1.2.769|2|9
1.3.6.1.2.1.25.3.4.1.1.1025|2|1
1.3.6.1.2.1.25.3.4.1.1.1026|2|2
1.3.6.1.2.1.25.3.5.1.1.1280|2|2
1.3.6.1.2.1.25.3.5.1.1.1281|2|2
1.3.6.1.2.1.25.3.6.1.1.1537|2|1
1.3.6.1.2.1.25.3.6.1.1.1552|2|1
1.3.6.1.2.1.25.3.6.1.1.1553|2|1
1.3.6.1.2.1.25.3.6.1.2.1537|2|2
1.3.6.1.2.1.25.3.6.1.2.1552|2|2
1.3.6.1.2.1.25.3.6.1.2.1553|2|2
1.3.6.1.2.1.25.3.6.1.3.1537|2|1
1.3.6.1.2.1.25.3.6.1.3.1552|2|2
1.3.6.1.2.1.25.3.6.1.3.1553|2|2
1.3.6.1.2.1.25.3.6.1.4.1537|2|0
1.3.6.1.2.1.25.3.6.1.4.1552|2|78150744
1.3.6.1.2.1.25.3.6.1.4.1553|2|390711384
1.3.6.1.2.1.25.3.7.1.1.1552.1|2|1
1.3.6.1.2.1.25.3.7.1.1.1552.2|2|2
1.3.6.1.2.1.25.3.7.1.1.1552.3|2|3
1.3.6.1.2.1.25.3.7.1.1.1553.1|2|1
1.3.6.1.2.1.25.3.7.1.2.1552.1|4|/dev/sda1
1.3.6.1.2.1.25.3.7.1.2.1552.2|4|/dev/sda2
1.3.6.1.2.1.25.3.7.1.2.1552.3|4|/dev/sda3
1.3.6.1.2.1.25.3.7.1.2.1553.1|4|/dev/sdb1
1.3.6.1.2.1.25.3.7.1.3.1552.1|4|0x801
1.3.6.1.2.1.25.3.7.1.3.1552.2|4|0x802
1.3.6.1.2.1.25.3.7.1.3.1552.3|4|0x803
1.3.6.1.2.1.25.3.7.1.3.1553.1|4|0x811
1.3.6.1.2.1.25.3.7.1.4.1552.1|2|8657308
1.3.6.1.2.1.25.3.7.1.4.1552.2|2|0
1.3.6.1.2.1.25.3.7.1.4.1552.3|2|67291060
1.3.6.1.2.1.25.3.7.1.4.1553.1|2|384578164
1.3.6.1.2.1.25.3.7.1.5.1552.1|2|1
1.3.6.1.2.1.25.3.7.1.5.1552.2|2|0
1.3.6.1.2.1.25.3.7.1.5.1552.3|2|2
1.3.6.1.2.1.25.3.7.1.5.1553.1|2|3
1.3.6.1.2.1.25.3.8.1.1.1|2|1
1.3.6.1.2.1.25.3.8.1.1.2|2|2
1.3.6.1.2.1.25.3.8.1.1.3|2|3
1.3.6.1.2.1.25.3.8.1.2.1|4|/
1.3.6.1.2.1.25.3.8.1.2.2|4|/usr/local
1.3.6.1.2.1.25.3.8.1.2.3|4|/export
1.3.6.1.2.1.25.3.8.1.3.1|4|
1.3.6.1.2.1.25.3.8.1.3.2|4|
1.3.6.1.2.1.25.3.8.1.3.3|4|
1.3.6.1.2.1.25.3.8.1.4.1|6|1.3.6.1.2.1.25.3.9.23
1.3.6.1.2.1.25.3.8.1.4.2|6|1.3.6.1.2.1.25.3.9.23
1.3.6.1.2.1.25.3.8.1.4.3|6|1.3.6.1.2.1.25.3.9.23
1.3.6.1.2.1.25.3.8.1.5.1|2|1
1.3.6.1.2.1.25.3.8.1.5.2|2|1
1.3.6.1.2.1.25.3.8.1.5.3|2|1
1.3.6.1.2.1.25.3.8.1.6.1|2|1
1.3.6.1.2.1.25.3.8.1.6.2|2|2
1.3.6.1.2.1.25.3.8.1.6.3|2|2
1.3.6.1.2.1.25.3.8.1.7.1|2|31
1.3.6.1.2.1.25.3.8.1.7.2|2|32
1.3.6.1.2.1.25.3.8.1.7.3|2|33
1.3.6.1.2.1.25.3.8.1.8.1|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.8.2|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.8.3|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.1|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.2|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.3|4x|0000010100000000
1.3.6.1.2.1.25.4.2.1.1.1|2|1
1.3.6.1.2.1.25.4.2.1.1.2|2|2
1.3.6.1.2.1.25.4.2.1.1.3|2|3
1.3.6.1.2.1.25.4.2.1.1.4|2|4
1.3.6.1.2.1.25.4.2.1.1.5|2|5
1.3.6.1.2.1.25.4.2.1.1.6|2|6
1.3.6.1.2.1.25.4.2.1.1.7|2|7
1.3.6.1.2.1.25.4.2.1.1.8|2|8
1.3.6.1.2.1.25.4.2.1.1.9|2|9
1.3.6.1.2.1.25.4.2.1.1.87|2|87
1.3.6.1.2.1.25.4.2.1.1.88|2|88
1.3.6.1.2.1.25.4.2.1.1.89|2|89
1.3.6.1.2.1.25.4.2.1.1.184|2|184
1.3.6.1.2.1.25.4.2.1.1.185|2|185
1.3.6.1.2.1.25.4.2.1.1.186|2|186
1.3.6.1.2.1.25.4.2.1.1.187|2|187
1.3.6.1.2.1.25.4.2.1.1.190|2|190
1.3.6.1.2.1.25.4.2.1.1.192|2|192
1.3.6.1.2.1.25.4.2.1.1.204|2|204
1.3.6.1.2.1.25.4.2.1.1.220|2|220
1.3.6.1.2.1.25.4.2.1.1.221|2|221
1.3.6.1.2.1.25.4.2.1.1.222|2|222
1.3.6.1.2.1.25.4.2.1.1.223|2|223
1.3.6.1.2.1.25.4.2.1.1.224|2|224
1.3.6.1.2.1.25.4.2.1.1.225|2|225
1.3.6.1.2.1.25.4.2.1.1.226|2|226
1.3.6.1.2.1.25.4.2.1.1.227|2|227
1.3.6.1.2.1.25.4.2.1.1.228|2|228
1.3.6.1.2.1.25.4.2.1.1.229|2|229
1.3.6.1.2.1.25.4.2.1.1.230|2|230
1.3.6.1.2.1.25.4.2.1.1.231|2|231
1.3.6.1.2.1.25.4.2.1.1.232|2|232
1.3.6.1.2.1.25.4.2.1.1.233|2|233
1.3.6.1.2.1.25.4.2.1.1.234|2|234
1.3.6.1.2.1.25.4.2.1.1.903|2|903
1.3.6.1.2.1.25.4.2.1.1.904|2|904
1.3.6.1.2.1.25.4.2.1.1.940|2|940
1.3.6.1.2.1.25.4.2.1.1.941|2|941
1.3.6.1.2.1.25.4.2.1.1.969|2|969
1.3.6.1.2.1.25.4.2.1.1.970|2|970
1.3.6.1.2.1.25.4.2.1.1.975|2|975
1.3.6.1.2.1.25.4.2.1.1.976|2|976
1.3.6.1.2.1.25.4.2.1.1.1045|2|1045
1.3.6.1.2.1.25.4.2.1.1.1046|2|1046
1.3.6.1.2.1.25.4.2.1.1.1050|2|1050
1.3.6.1.2.1.25.4.2.1.1.1119|2|1119
1.3.6.1.2.1.25.4.2.1.1.2375|2|2375
1.3.6.1.2.1.25.4.2.1.1.2452|2|2452
1.3.6.1.2.1.25.4.2.1.1.2454|2|2454
1.3.6.1.2.1.25.4.2.1.1.2497|2|2497
1.3.6.1.2.1.25.4.2.1.1.2501|2|2501
1.3.6.1.2.1.25.4.2.1.1.2918|2|2918
1.3.6.1.2.1.25.4.2.1.1.2922|2|2922
1.3.6.1.2.1.25.4.2.1.1.2991|2|2991
1.3.6.1.2.1.25.4.2.1.1.2999|2|2999
1.3.6.1.2.1.25.4.2.1.1.3002|2|3002
1.3.6.1.2.1.25.4.2.1.1.3032|2|3032
1.3.6.1.2.1.25.4.2.1.1.3034|2|3034
1.3.6.1.2.1.25.4.2.1.1.3035|2|3035
1.3.6.1.2.1.25.4.2.1.1.3036|2|3036
1.3.6.1.2.1.25.4.2.1.1.3037|2|3037
1.3.6.1.2.1.25.4.2.1.1.3038|2|3038
1.3.6.1.2.1.25.4.2.1.1.3039|2|3039
1.3.6.1.2.1.25.4.2.1.1.3040|2|3040
1.3.6.1.2.1.25.4.2.1.1.3041|2|3041
1.3.6.1.2.1.25.4.2.1.1.3042|2|3042
1.3.6.1.2.1.25.4.2.1.1.3043|2|3043
1.3.6.1.2.1.25.4.2.1.1.3044|2|3044
1.3.6.1.2.1.25.4.2.1.1.3045|2|3045
1.3.6.1.2.1.25.4.2.1.1.3047|2|3047
1.3.6.1.2.1.25.4.2.1.1.3050|2|3050
1.3.6.1.2.1.25.4.2.1.1.3055|2|3055
1.3.6.1.2.1.25.4.2.1.1.3066|2|3066
1.3.6.1.2.1.25.4.2.1.1.3068|2|3068
1.3.6.1.2.1.25.4.2.1.1.3070|2|3070
1.3.6.1.2.1.25.4.2.1.1.3071|2|3071
1.3.6.1.2.1.25.4.2.1.1.3077|2|3077
1.3.6.1.2.1.25.4.2.1.1.3078|2|3078
1.3.6.1.2.1.25.4.2.1.1.3079|2|3079
1.3.6.1.2.1.25.4.2.1.1.3082|2|3082
1.3.6.1.2.1.25.4.2.1.1.3083|2|3083
1.3.6.1.2.1.25.4.2.1.1.3103|2|3103
1.3.6.1.2.1.25.4.2.1.1.3108|2|3108
1.3.6.1.2.1.25.4.2.1.1.3110|2|3110
1.3.6.1.2.1.25.4.2.1.1.3113|2|3113
1.3.6.1.2.1.25.4.2.1.1.3116|2|3116
1.3.6.1.2.1.25.4.2.1.1.3194|2|3194
1.3.6.1.2.1.25.4.2.1.1.3214|2|3214
1.3.6.1.2.1.25.4.2.1.1.3225|2|3225
1.3.6.1.2.1.25.4.2.1.1.3234|2|3234
1.3.6.1.2.1.25.4.2.1.1.3235|2|3235
1.3.6.1.2.1.25.4.2.1.1.3236|2|3236
1.3.6.1.2.1.25.4.2.1.1.3237|2|3237
1.3.6.1.2.1.25.4.2.1.1.3238|2|3238
1.3.6.1.2.1.25.4.2.1.1.3243|2|3243
1.3.6.1.2.1.25.4.2.1.1.3329|2|3329
1.3.6.1.2.1.25.4.2.1.1.3373|2|3373
1.3.6.1.2.1.25.4.2.1.1.3466|2|3466
1.3.6.1.2.1.25.4.2.1.1.3532|2|3532
1.3.6.1.2.1.25.4.2.1.1.3920|2|3920
1.3.6.1.2.1.25.4.2.1.1.3921|2|3921
1.3.6.1.2.1.25.4.2.1.1.3932|2|3932
1.3.6.1.2.1.25.4.2.1.1.3968|2|3968
1.3.6.1.2.1.25.4.2.1.1.3969|2|3969
1.3.6.1.2.1.25.4.2.1.1.3972|2|3972
1.3.6.1.2.1.25.4.2.1.1.3977|2|3977
1.3.6.1.2.1.25.4.2.1.1.3979|2|3979
1.3.6.1.2.1.25.4.2.1.1.3981|2|3981
1.3.6.1.2.1.25.4.2.1.1.3984|2|3984
1.3.6.1.2.1.25.4.2.1.1.3985|2|3985
1.3.6.1.2.1.25.4.2.1.1.3986|2|3986
1.3.6.1.2.1.25.4.2.1.1.3988|2|3988
1.3.6.1.2.1.25.4.2.1.1.3993|2|3993
1.3.6.1.2.1.25.4.2.1.1.3994|2|3994
1.3.6.1.2.1.25.4.2.1.1.3995|2|3995
1.3.6.1.2.1.25.4.2.1.1.3996|2|3996
1.3.6.1.2.1.25.4.2.1.1.3997|2|3997
1.3.6.1.2.1.25.4.2.1.1.3998|2|3998
1.3.6.1.2.1.25.4.2.1.1.3999|2|3999
1.3.6.1.2.1.25.4.2.1.1.4004|2|4004
1.3.6.1.2.1.25.4.2.1.1.4007|2|4007
1.3.6.1.2.1.25.4.2.1.1.4008|2|4008
1.3.6.1.2.1.25.4.2.1.1.4009|2|4009
1.3.6.1.2.1.25.4.2.1.1.4010|2|4010
1.3.6.1.2.1.25.4.2.1.1.4011|2|4011
1.3.6.1.2.1.25.4.2.1.1.4012|2|4012
1.3.6.1.2.1.25.4.2.1.1.4014|2|4014
1.3.6.1.2.1.25.4.2.1.1.4016|2|4016
1.3.6.1.2.1.25.4.2.1.1.4018|2|4018
1.3.6.1.2.1.25.4.2.1.1.4019|2|4019
1.3.6.1.2.1.25.4.2.1.1.4021|2|4021
1.3.6.1.2.1.25.4.2.1.1.4026|2|4026
1.3.6.1.2.1.25.4.2.1.1.4027|2|4027
1.3.6.1.2.1.25.4.2.1.1.4031|2|4031
1.3.6.1.2.1.25.4.2.1.1.4036|2|4036
1.3.6.1.2.1.25.4.2.1.1.4037|2|4037
1.3.6.1.2.1.25.4.2.1.1.4041|2|4041
1.3.6.1.2.1.25.4.2.1.1.4045|2|4045
1.3.6.1.2.1.25.4.2.1.1.4048|2|4048
1.3.6.1.2.1.25.4.2.1.1.4049|2|4049
1.3.6.1.2.1.25.4.2.1.1.4053|2|4053
1.3.6.1.2.1.25.4.2.1.1.4054|2|4054
1.3.6.1.2.1.25.4.2.1.1.4059|2|4059
1.3.6.1.2.1.25.4.2.1.1.4063|2|4063
1.3.6.1.2.1.25.4.2.1.1.4064|2|4064
1.3.6.1.2.1.25.4.2.1.1.4132|2|4132
1.3.6.1.2.1.25.4.2.1.1.4138|2|4138
1.3.6.1.2.1.25.4.2.1.1.4151|2|4151
1.3.6.1.2.1.25.4.2.1.1.4155|2|4155
1.3.6.1.2.1.25.4.2.1.1.8332|2|8332
1.3.6.1.2.1.25.4.2.1.1.8337|2|8337
1.3.6.1.2.1.25.4.2.1.1.11508|2|11508
1.3.6.1.2.1.25.4.2.1.1.11511|2|11511
1.3.6.1.2.1.25.4.2.1.1.14710|2|14710
1.3.6.1.2.1.25.4.2.1.1.14797|2|14797
1.3.6.1.2.1.25.4.2.1.1.19461|2|19461
1.3.6.1.2.1.25.4.2.1.1.19802|2|19802
1.3.6.1.2.1.25.4.2.1.1.20269|2|20269
1.3.6.1.2.1.25.4.2.1.1.20571|2|20571
1.3.6.1.2.1.25.4.2.1.1.20996|2|20996
1.3.6.1.2.1.25.4.2.1.1.21620|2|21620
1.3.6.1.2.1.25.4.2.1.1.22336|2|22336
1.3.6.1.2.1.25.4.2.1.1.22476|2|22476
1.3.6.1.2.1.25.4.2.1.1.22477|2|22477
1.3.6.1.2.1.25.4.2.1.1.22558|2|22558
1.3.6.1.2.1.25.4.2.1.2.1|4|init
1.3.6.1.2.1.25.4.2.1.2.2|4|migration/0
1.3.6.1.2.1.25.4.2.1.2.3|4|ksoftirqd/0
1.3.6.1.2.1.25.4.2.1.2.4|4|migration/1
1.3.6.1.2.1.25.4.2.1.2.5|4|ksoftirqd/1
1.3.6.1.2.1.25.4.2.1.2.6|4|events/0
1.3.6.1.2.1.25.4.2.1.2.7|4|events/1
1.3.6.1.2.1.25.4.2.1.2.8|4|khelper
1.3.6.1.2.1.25.4.2.1.2.9|4|kthread
1.3.6.1.2.1.25.4.2.1.2.87|4|kblockd/0
1.3.6.1.2.1.25.4.2.1.2.88|4|kblockd/1
1.3.6.1.2.1.25.4.2.1.2.89|4|kacpid
1.3.6.1.2.1.25.4.2.1.2.184|4|ata/0
1.3.6.1.2.1.25.4.2.1.2.185|4|ata/1
1.3.6.1.2.1.25.4.2.1.2.186|4|ata_aux
1.3.6.1.2.1.25.4.2.1.2.187|4|ksuspend_usbd
1.3.6.1.2.1.25.4.2.1.2.190|4|khubd
1.3.6.1.2.1.25.4.2.1.2.192|4|kseriod
1.3.6.1.2.1.25.4.2.1.2.204|4|khpsbpkt
1.3.6.1.2.1.25.4.2.1.2.220|4|pdflush
1.3.6.1.2.1.25.4.2.1.2.221|4|pdflush
1.3.6.1.2.1.25.4.2.1.2.222|4|kswapd0
1.3.6.1.2.1.25.4.2.1.2.223|4|aio/0
1.3.6.1.2.1.25.4.2.1.2.224|4|aio/1
1.3.6.1.2.1.25.4.2.1.2.225|4|jfsIO
1.3.6.1.2.1.25.4.2.1.2.226|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.2.227|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.2.228|4|jfsSync
1.3.6.1.2.1.25.4.2.1.2.229|4|xfslogd/0
1.3.6.1.2.1.25.4.2.1.2.230|4|xfslogd/1
1.3.6.1.2.1.25.4.2.1.2.231|4|xfsdatad/0
1.3.6.1.2.1.25.4.2.1.2.232|4|xfsdatad/1
1.3.6.1.2.1.25.4.2.1.2.233|4|ocfs2_wq
1.3.6.1.2.1.25.4.2.1.2.234|4|user_dlm
1.3.6.1.2.1.25.4.2.1.2.903|4|scsi_tgtd/0
1.3.6.1.2.1.25.4.2.1.2.904|4|scsi_tgtd/1
1.3.6.1.2.1.25.4.2.1.2.940|4|scsi_eh_2
1.3.6.1.2.1.25.4.2.1.2.941|4|scsi_eh_3
1.3.6.1.2.1.25.4.2.1.2.969|4|exec-osm/0
1.3.6.1.2.1.25.4.2.1.2.970|4|exec-osm/1
1.3.6.1.2.1.25.4.2.1.2.975|4|block-osm/0
1.3.6.1.2.1.25.4.2.1.2.976|4|block-osm/1
1.3.6.1.2.1.25.4.2.1.2.1045|4|kcryptd/0
1.3.6.1.2.1.25.4.2.1.2.1046|4|kcryptd/1
1.3.6.1.2.1.25.4.2.1.2.1050|4|kjournald
1.3.6.1.2.1.25.4.2.1.2.1119|4|udevd
1.3.6.1.2.1.25.4.2.1.2.2375|4|kpsmoused
1.3.6.1.2.1.25.4.2.1.2.2452|4|kjournald
1.3.6.1.2.1.25.4.2.1.2.2454|4|kjournald
1.3.6.1.2.1.25.4.2.1.2.2497|4|syslogd
1.3.6.1.2.1.25.4.2.1.2.2501|4|klogd
1.3.6.1.2.1.25.4.2.1.2.2918|4|rpc.portmap
1.3.6.1.2.1.25.4.2.1.2.2922|4|rpc.statd
1.3.6.1.2.1.25.4.2.1.2.2991|4|inetd
1.3.6.1.2.1.25.4.2.1.2.2999|4|sshd
1.3.6.1.2.1.25.4.2.1.2.3002|4|named
1.3.6.1.2.1.25.4.2.1.2.3032|4|rpc.rquotad
1.3.6.1.2.1.25.4.2.1.2.3034|4|nfsd4
1.3.6.1.2.1.25.4.2.1.2.3035|4|lockd
1.3.6.1.2.1.25.4.2.1.2.3036|4|rpciod/0
1.3.6.1.2.1.25.4.2.1.2.3037|4|rpciod/1
1.3.6.1.2.1.25.4.2.1.2.3038|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3039|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3040|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3041|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3042|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3043|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3044|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3045|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3047|4|rpc.mountd
1.3.6.1.2.1.25.4.2.1.2.3050|4|ntpd
1.3.6.1.2.1.25.4.2.1.2.3055|4|acpid
1.3.6.1.2.1.25.4.2.1.2.3066|4|dbus-daemon
1.3.6.1.2.1.25.4.2.1.2.3068|4|ntpd
1.3.6.1.2.1.25.4.2.1.2.3070|4|hald
1.3.6.1.2.1.25.4.2.1.2.3071|4|hald-runner
1.3.6.1.2.1.25.4.2.1.2.3077|4|hald-addon-keyb
1.3.6.1.2.1.25.4.2.1.2.3078|4|hald-addon-keyb
1.3.6.1.2.1.25.4.2.1.2.3079|4|hald-addon-keyb
1.3.6.1.2.1.25.4.2.1.2.3082|4|hald-addon-acpi
1.3.6.1.2.1.25.4.2.1.2.3083|4|hald-addon-stor
1.3.6.1.2.1.25.4.2.1.2.3103|4|cupsd
1.3.6.1.2.1.25.4.2.1.2.3108|4|crond
1.3.6.1.2.1.25.4.2.1.2.3110|4|atd
1.3.6.1.2.1.25.4.2.1.2.3113|4|sendmail
1.3.6.1.2.1.25.4.2.1.2.3116|4|sendmail
1.3.6.1.2.1.25.4.2.1.2.3194|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3214|4|automount
1.3.6.1.2.1.25.4.2.1.2.3225|4|snmpd
1.3.6.1.2.1.25.4.2.1.2.3234|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3235|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3236|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3237|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3238|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3243|4|xdm
1.3.6.1.2.1.25.4.2.1.2.3329|4|dbus-daemon
1.3.6.1.2.1.25.4.2.1.2.3373|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3466|4|agetty
1.3.6.1.2.1.25.4.2.1.2.3532|4|gam_server
1.3.6.1.2.1.25.4.2.1.2.3920|4|X
1.3.6.1.2.1.25.4.2.1.2.3921|4|xdm
1.3.6.1.2.1.25.4.2.1.2.3932|4|xinitrc
1.3.6.1.2.1.25.4.2.1.2.3968|4|xinitrc
1.3.6.1.2.1.25.4.2.1.2.3969|4|xscreensaver
1.3.6.1.2.1.25.4.2.1.2.3972|4|ssh-agent
1.3.6.1.2.1.25.4.2.1.2.3977|4|dbus-launch
1.3.6.1.2.1.25.4.2.1.2.3979|4|dbus-daemon
1.3.6.1.2.1.25.4.2.1.2.3981|4|xfce4-session
1.3.6.1.2.1.25.4.2.1.2.3984|4|xfce-mcs-manage
1.3.6.1.2.1.25.4.2.1.2.3985|4|xfwm4
1.3.6.1.2.1.25.4.2.1.2.3986|4|xfdesktop
1.3.6.1.2.1.25.4.2.1.2.3988|4|Thunar
1.3.6.1.2.1.25.4.2.1.2.3993|4|xfce4-panel
1.3.6.1.2.1.25.4.2.1.2.3994|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3995|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3996|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3997|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3998|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3999|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4004|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4007|4|xfce4-menu-plug
1.3.6.1.2.1.25.4.2.1.2.4008|4|bash
1.3.6.1.2.1.25.4.2.1.2.4009|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4010|4|bash
1.3.6.1.2.1.25.4.2.1.2.4011|4|bash
1.3.6.1.2.1.25.4.2.1.2.4012|4|bash
1.3.6.1.2.1.25.4.2.1.2.4014|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4016|4|bash
1.3.6.1.2.1.25.4.2.1.2.4018|4|xfce4-xmms-plug
1.3.6.1.2.1.25.4.2.1.2.4019|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4021|4|bash
1.3.6.1.2.1.25.4.2.1.2.4026|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4027|4|bash
1.3.6.1.2.1.25.4.2.1.2.4031|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4036|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4037|4|bash
1.3.6.1.2.1.25.4.2.1.2.4041|4|bash
1.3.6.1.2.1.25.4.2.1.2.4045|4|bash
1.3.6.1.2.1.25.4.2.1.2.4048|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4049|4|bash
1.3.6.1.2.1.25.4.2.1.2.4053|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4054|4|bash
1.3.6.1.2.1.25.4.2.1.2.4059|4|bash
1.3.6.1.2.1.25.4.2.1.2.4063|4|bash
1.3.6.1.2.1.25.4.2.1.2.4064|4|bash
1.3.6.1.2.1.25.4.2.1.2.4132|4|pidgin
1.3.6.1.2.1.25.4.2.1.2.4138|4|firefox
1.3.6.1.2.1.25.4.2.1.2.4151|4|run-mozilla.sh
1.3.6.1.2.1.25.4.2.1.2.4155|4|firefox-bin
1.3.6.1.2.1.25.4.2.1.2.8332|4|ssh
1.3.6.1.2.1.25.4.2.1.2.8337|4|ssh
1.3.6.1.2.1.25.4.2.1.2.11508|4|less
1.3.6.1.2.1.25.4.2.1.2.11511|4|less
1.3.6.1.2.1.25.4.2.1.2.14710|4|wireshark
1.3.6.1.2.1.25.4.2.1.2.14797|4|wireshark
1.3.6.1.2.1.25.4.2.1.2.19461|4|privoxy
1.3.6.1.2.1.25.4.2.1.2.19802|4|emacs
1.3.6.1.2.1.25.4.2.1.2.20269|4|python
1.3.6.1.2.1.25.4.2.1.2.20571|4|ssh
1.3.6.1.2.1.25.4.2.1.2.20996|4|alpine
1.3.6.1.2.1.25.4.2.1.2.21620|4|python
1.3.6.1.2.1.25.4.2.1.2.22336|4|mpg321
1.3.6.1.2.1.25.4.2.1.2.22476|4|lotus
1.3.6.1.2.1.25.4.2.1.2.22477|4|rdesktop
1.3.6.1.2.1.25.4.2.1.2.22558|4|python
1.3.6.1.2.1.25.4.2.1.3.1|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4|6|0.0
1.3.6.1.2.1.25.4.2.1.3.5|6|0.0
1.3.6.1.2.1.25.4.2.1.3.6|6|0.0
1.3.6.1.2.1.25.4.2.1.3.7|6|0.0
1.3.6.1.2.1.25.4.2.1.3.8|6|0.0
1.3.6.1.2.1.25.4.2.1.3.9|6|0.0
1.3.6.1.2.1.25.4.2.1.3.87|6|0.0
1.3.6.1.2.1.25.4.2.1.3.88|6|0.0
1.3.6.1.2.1.25.4.2.1.3.89|6|0.0
1.3.6.1.2.1.25.4.2.1.3.184|6|0.0
1.3.6.1.2.1.25.4.2.1.3.185|6|0.0
1.3.6.1.2.1.25.4.2.1.3.186|6|0.0
1.3.6.1.2.1.25.4.2.1.3.187|6|0.0
1.3.6.1.2.1.25.4.2.1.3.190|6|0.0
1.3.6.1.2.1.25.4.2.1.3.192|6|0.0
1.3.6.1.2.1.25.4.2.1.3.204|6|0.0
1.3.6.1.2.1.25.4.2.1.3.220|6|0.0
1.3.6.1.2.1.25.4.2.1.3.221|6|0.0
1.3.6.1.2.1.25.4.2.1.3.222|6|0.0
1.3.6.1.2.1.25.4.2.1.3.223|6|0.0
1.3.6.1.2.1.25.4.2.1.3.224|6|0.0
1.3.6.1.2.1.25.4.2.1.3.225|6|0.0
1.3.6.1.2.1.25.4.2.1.3.226|6|0.0
1.3.6.1.2.1.25.4.2.1.3.227|6|0.0
1.3.6.1.2.1.25.4.2.1.3.228|6|0.0
1.3.6.1.2.1.25.4.2.1.3.229|6|0.0
1.3.6.1.2.1.25.4.2.1.3.230|6|0.0
1.3.6.1.2.1.25.4.2.1.3.231|6|0.0
1.3.6.1.2.1.25.4.2.1.3.232|6|0.0
1.3.6.1.2.1.25.4.2.1.3.233|6|0.0
1.3.6.1.2.1.25.4.2.1.3.234|6|0.0
1.3.6.1.2.1.25.4.2.1.3.903|6|0.0
1.3.6.1.2.1.25.4.2.1.3.904|6|0.0
1.3.6.1.2.1.25.4.2.1.3.940|6|0.0
1.3.6.1.2.1.25.4.2.1.3.941|6|0.0
1.3.6.1.2.1.25.4.2.1.3.969|6|0.0
1.3.6.1.2.1.25.4.2.1.3.970|6|0.0
1.3.6.1.2.1.25.4.2.1.3.975|6|0.0
1.3.6.1.2.1.25.4.2.1.3.976|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1045|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1046|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1050|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1119|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2375|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2452|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2454|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2497|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2501|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2918|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2922|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2991|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2999|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3002|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3032|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3034|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3035|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3036|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3037|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3038|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3039|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3040|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3041|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3042|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3043|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3044|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3045|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3047|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3050|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3055|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3066|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3068|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3070|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3071|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3077|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3078|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3079|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3082|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3083|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3103|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3108|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3110|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3113|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3116|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3194|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3214|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3225|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3234|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3235|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3236|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3237|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3238|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3243|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3329|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3373|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3466|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3532|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3920|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3921|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3932|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3968|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3969|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3972|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3977|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3979|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3981|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3984|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3985|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3986|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3988|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3993|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3994|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3995|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3996|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3997|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3998|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3999|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4004|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4007|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4008|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4009|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4010|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4011|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4012|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4014|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4016|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4018|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4019|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4021|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4026|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4027|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4031|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4036|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4037|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4041|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4045|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4048|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4049|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4053|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4054|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4059|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4063|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4064|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4132|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4138|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4151|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4155|6|0.0
1.3.6.1.2.1.25.4.2.1.3.8332|6|0.0
1.3.6.1.2.1.25.4.2.1.3.8337|6|0.0
1.3.6.1.2.1.25.4.2.1.3.11508|6|0.0
1.3.6.1.2.1.25.4.2.1.3.11511|6|0.0
1.3.6.1.2.1.25.4.2.1.3.14710|6|0.0
1.3.6.1.2.1.25.4.2.1.3.14797|6|0.0
1.3.6.1.2.1.25.4.2.1.3.19461|6|0.0
1.3.6.1.2.1.25.4.2.1.3.19802|6|0.0
1.3.6.1.2.1.25.4.2.1.3.20269|6|0.0
1.3.6.1.2.1.25.4.2.1.3.20571|6|0.0
1.3.6.1.2.1.25.4.2.1.3.20996|6|0.0
1.3.6.1.2.1.25.4.2.1.3.21620|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22336|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22476|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22477|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22558|6|0.0
1.3.6.1.2.1.25.4.2.1.4.1|4|init [4]
1.3.6.1.2.1.25.4.2.1.4.2|4|migration/0
1.3.6.1.2.1.25.4.2.1.4.3|4|ksoftirqd/0
1.3.6.1.2.1.25.4.2.1.4.4|4|migration/1
1.3.6.1.2.1.25.4.2.1.4.5|4|ksoftirqd/1
1.3.6.1.2.1.25.4.2.1.4.6|4|events/0
1.3.6.1.2.1.25.4.2.1.4.7|4|events/1
1.3.6.1.2.1.25.4.2.1.4.8|4|khelper
1.3.6.1.2.1.25.4.2.1.4.9|4|kthread
1.3.6.1.2.1.25.4.2.1.4.87|4|kblockd/0
1.3.6.1.2.1.25.4.2.1.4.88|4|kblockd/1
1.3.6.1.2.1.25.4.2.1.4.89|4|kacpid
1.3.6.1.2.1.25.4.2.1.4.184|4|ata/0
1.3.6.1.2.1.25.4.2.1.4.185|4|ata/1
1.3.6.1.2.1.25.4.2.1.4.186|4|ata_aux
1.3.6.1.2.1.25.4.2.1.4.187|4|ksuspend_usbd
1.3.6.1.2.1.25.4.2.1.4.190|4|khubd
1.3.6.1.2.1.25.4.2.1.4.192|4|kseriod
1.3.6.1.2.1.25.4.2.1.4.204|4|khpsbpkt
1.3.6.1.2.1.25.4.2.1.4.220|4|pdflush
1.3.6.1.2.1.25.4.2.1.4.221|4|pdflush
1.3.6.1.2.1.25.4.2.1.4.222|4|kswapd0
1.3.6.1.2.1.25.4.2.1.4.223|4|aio/0
1.3.6.1.2.1.25.4.2.1.4.224|4|aio/1
1.3.6.1.2.1.25.4.2.1.4.225|4|jfsIO
1.3.6.1.2.1.25.4.2.1.4.226|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.4.227|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.4.228|4|jfsSync
1.3.6.1.2.1.25.4.2.1.4.229|4|xfslogd/0
1.3.6.1.2.1.25.4.2.1.4.230|4|xfslogd/1
1.3.6.1.2.1.25.4.2.1.4.231|4|xfsdatad/0
1.3.6.1.2.1.25.4.2.1.4.232|4|xfsdatad/1
1.3.6.1.2.1.25.4.2.1.4.233|4|ocfs2_wq
1.3.6.1.2.1.25.4.2.1.4.234|4|user_dlm
1.3.6.1.2.1.25.4.2.1.4.903|4|scsi_tgtd/0
1.3.6.1.2.1.25.4.2.1.4.904|4|scsi_tgtd/1
1.3.6.1.2.1.25.4.2.1.4.940|4|scsi_eh_2
1.3.6.1.2.1.25.4.2.1.4.941|4|scsi_eh_3
1.3.6.1.2.1.25.4.2.1.4.969|4|exec-osm/0
1.3.6.1.2.1.25.4.2.1.4.970|4|exec-osm/1
1.3.6.1.2.1.25.4.2.1.4.975|4|block-osm/0
1.3.6.1.2.1.25.4.2.1.4.976|4|block-osm/1
1.3.6.1.2.1.25.4.2.1.4.1045|4|kcryptd/0
1.3.6.1.2.1.25.4.2.1.4.1046|4|kcryptd/1
1.3.6.1.2.1.25.4.2.1.4.1050|4|kjournald
1.3.6.1.2.1.25.4.2.1.4.1119|4|/sbin/udevd
1.3.6.1.2.1.25.4.2.1.4.2375|4|kpsmoused
1.3.6.1.2.1.25.4.2.1.4.2452|4|kjournald
1.3.6.1.2.1.25.4.2.1.4.2454|4|kjournald
1.3.6.1.2.1.25.4.2.1.4.2497|4|/usr/sbin/syslogd
1.3.6.1.2.1.25.4.2.1.4.2501|4|/usr/sbin/klogd
1.3.6.1.2.1.25.4.2.1.4.2918|4|/sbin/rpc.portmap
1.3.6.1.2.1.25.4.2.1.4.2922|4|/sbin/rpc.statd
1.3.6.1.2.1.25.4.2.1.4.2991|4|/usr/sbin/inetd
1.3.6.1.2.1.25.4.2.1.4.2999|4|/usr/sbin/sshd
1.3.6.1.2.1.25.4.2.1.4.3002|4|/usr/sbin/named
1.3.6.1.2.1.25.4.2.1.4.3032|4|/usr/sbin/rpc.rquotad
1.3.6.1.2.1.25.4.2.1.4.3034|4|nfsd4
1.3.6.1.2.1.25.4.2.1.4.3035|4|lockd
1.3.6.1.2.1.25.4.2.1.4.3036|4|rpciod/0
1.3.6.1.2.1.25.4.2.1.4.3037|4|rpciod/1
1.3.6.1.2.1.25.4.2.1.4.3038|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3039|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3040|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3041|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3042|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3043|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3044|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3045|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3047|4|/usr/sbin/rpc.mountd
1.3.6.1.2.1.25.4.2.1.4.3050|4|/usr/sbin/ntpd
1.3.6.1.2.1.25.4.2.1.4.3055|4|/usr/sbin/acpid
1.3.6.1.2.1.25.4.2.1.4.3066|4|/usr/bin/dbus-daemon
1.3.6.1.2.1.25.4.2.1.4.3068|4|/usr/sbin/ntpd
1.3.6.1.2.1.25.4.2.1.4.3070|4|/usr/sbin/hald
1.3.6.1.2.1.25.4.2.1.4.3071|4|hald-runner
1.3.6.1.2.1.25.4.2.1.4.3077|4|hald-addon-keyboard: listening on /dev/input/event1
1.3.6.1.2.1.25.4.2.1.4.3078|4|hald-addon-keyboard: listening on /dev/input/event4
1.3.6.1.2.1.25.4.2.1.4.3079|4|hald-addon-keyboard: listening on /dev/input/event5
1.3.6.1.2.1.25.4.2.1.4.3082|4|hald-addon-acpi: listening on acpid socket /var/run/acpid.socket
1.3.6.1.2.1.25.4.2.1.4.3083|4|hald-addon-storage: polling /dev/hdb (every 2 sec)
1.3.6.1.2.1.25.4.2.1.4.3103|4|/usr/sbin/cupsd
1.3.6.1.2.1.25.4.2.1.4.3108|4|/usr/sbin/crond
1.3.6.1.2.1.25.4.2.1.4.3110|4|/usr/sbin/atd
1.3.6.1.2.1.25.4.2.1.4.3113|4|sendmail: accepting connections
1.3.6.1.2.1.25.4.2.1.4.3116|4|sendmail: Queue runner@00:25:00 for /var/spool/clientmqueue
1.3.6.1.2.1.25.4.2.1.4.3194|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3214|4|/usr/sbin/automount
1.3.6.1.2.1.25.4.2.1.4.3225|4|/usr/sbin/snmpd
1.3.6.1.2.1.25.4.2.1.4.3234|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3235|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3236|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3237|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3238|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3243|4|/usr/bin/xdm
1.3.6.1.2.1.25.4.2.1.4.3329|4|/usr/bin/dbus-daemon
1.3.6.1.2.1.25.4.2.1.4.3373|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3466|4|/sbin/agetty
1.3.6.1.2.1.25.4.2.1.4.3532|4|/usr/libexec/gam_server
1.3.6.1.2.1.25.4.2.1.4.3920|4|/usr/bin/X
1.3.6.1.2.1.25.4.2.1.4.3921|4|2d3a3020202020202020202020202020202020202020
1.3.6.1.2.1.25.4.2.1.4.3932|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.3968|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.3969|4|xscreensaver
1.3.6.1.2.1.25.4.2.1.4.3972|4|/usr/bin/ssh-agent
1.3.6.1.2.1.25.4.2.1.4.3977|4|/usr/bin/dbus-launch
1.3.6.1.2.1.25.4.2.1.4.3979|4|/usr/bin/dbus-daemon
1.3.6.1.2.1.25.4.2.1.4.3981|4|/usr/bin/xfce4-session
1.3.6.1.2.1.25.4.2.1.4.3984|4|xfce-mcs-manager
1.3.6.1.2.1.25.4.2.1.4.3985|4|xfwm4
1.3.6.1.2.1.25.4.2.1.4.3986|4|xfdesktop
1.3.6.1.2.1.25.4.2.1.4.3988|4|/usr/bin/Thunar
1.3.6.1.2.1.25.4.2.1.4.3993|4|xfce4-panel
1.3.6.1.2.1.25.4.2.1.4.3994|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3995|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3996|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3997|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3998|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3999|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4004|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4007|4|/usr/libexec/xfce4/panel-plugins/xfce4-menu-plugin
1.3.6.1.2.1.25.4.2.1.4.4008|4|bash
1.3.6.1.2.1.25.4.2.1.4.4009|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4010|4|bash
1.3.6.1.2.1.25.4.2.1.4.4011|4|bash
1.3.6.1.2.1.25.4.2.1.4.4012|4|bash
1.3.6.1.2.1.25.4.2.1.4.4014|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4016|4|bash
1.3.6.1.2.1.25.4.2.1.4.4018|4|/usr/libexec/xfce4/panel-plugins/xfce4-xmms-plugin
1.3.6.1.2.1.25.4.2.1.4.4019|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4021|4|bash
1.3.6.1.2.1.25.4.2.1.4.4026|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4027|4|bash
1.3.6.1.2.1.25.4.2.1.4.4031|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4036|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4037|4|bash
1.3.6.1.2.1.25.4.2.1.4.4041|4|bash
1.3.6.1.2.1.25.4.2.1.4.4045|4|bash
1.3.6.1.2.1.25.4.2.1.4.4048|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4049|4|bash
1.3.6.1.2.1.25.4.2.1.4.4053|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4054|4|bash
1.3.6.1.2.1.25.4.2.1.4.4059|4|bash
1.3.6.1.2.1.25.4.2.1.4.4063|4|bash
1.3.6.1.2.1.25.4.2.1.4.4064|4|bash
1.3.6.1.2.1.25.4.2.1.4.4132|4|/usr/bin/pidgin
1.3.6.1.2.1.25.4.2.1.4.4138|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.4151|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.4155|4|/usr/local/lib/firefox-3.6/firefox-bin
1.3.6.1.2.1.25.4.2.1.4.8332|4|ssh
1.3.6.1.2.1.25.4.2.1.4.8337|4|ssh
1.3.6.1.2.1.25.4.2.1.4.11508|4|less
1.3.6.1.2.1.25.4.2.1.4.11511|4|less
1.3.6.1.2.1.25.4.2.1.4.14710|4|wireshark
1.3.6.1.2.1.25.4.2.1.4.14797|4|wireshark
1.3.6.1.2.1.25.4.2.1.4.19461|4|/usr/sbin/privoxy
1.3.6.1.2.1.25.4.2.1.4.19802|4|emacs
1.3.6.1.2.1.25.4.2.1.4.20269|4|python
1.3.6.1.2.1.25.4.2.1.4.20571|4|ssh
1.3.6.1.2.1.25.4.2.1.4.20996|4|alpine
1.3.6.1.2.1.25.4.2.1.4.21620|4|python
1.3.6.1.2.1.25.4.2.1.4.22336|4|mpg321
1.3.6.1.2.1.25.4.2.1.4.22476|4|/bin/bash
1.3.6.1.2.1.25.4.2.1.4.22477|4|rdesktop
1.3.6.1.2.1.25.4.2.1.4.22558|4|python
1.3.6.1.2.1.25.4.2.1.5.1|4|
1.3.6.1.2.1.25.4.2.1.5.2|4|
1.3.6.1.2.1.25.4.2.1.5.3|4|
1.3.6.1.2.1.25.4.2.1.5.4|4|
1.3.6.1.2.1.25.4.2.1.5.5|4|
1.3.6.1.2.1.25.4.2.1.5.6|4|
1.3.6.1.2.1.25.4.2.1.5.7|4|
1.3.6.1.2.1.25.4.2.1.5.8|4|
1.3.6.1.2.1.25.4.2.1.5.9|4|
1.3.6.1.2.1.25.4.2.1.5.87|4|
1.3.6.1.2.1.25.4.2.1.5.88|4|
1.3.6.1.2.1.25.4.2.1.5.89|4|
1.3.6.1.2.1.25.4.2.1.5.184|4|
1.3.6.1.2.1.25.4.2.1.5.185|4|
1.3.6.1.2.1.25.4.2.1.5.186|4|
1.3.6.1.2.1.25.4.2.1.5.187|4|
1.3.6.1.2.1.25.4.2.1.5.190|4|
1.3.6.1.2.1.25.4.2.1.5.192|4|
1.3.6.1.2.1.25.4.2.1.5.204|4|
1.3.6.1.2.1.25.4.2.1.5.220|4|
1.3.6.1.2.1.25.4.2.1.5.221|4|
1.3.6.1.2.1.25.4.2.1.5.222|4|
1.3.6.1.2.1.25.4.2.1.5.223|4|
1.3.6.1.2.1.25.4.2.1.5.224|4|
1.3.6.1.2.1.25.4.2.1.5.225|4|
1.3.6.1.2.1.25.4.2.1.5.226|4|
1.3.6.1.2.1.25.4.2.1.5.227|4|
1.3.6.1.2.1.25.4.2.1.5.228|4|
1.3.6.1.2.1.25.4.2.1.5.229|4|
1.3.6.1.2.1.25.4.2.1.5.230|4|
1.3.6.1.2.1.25.4.2.1.5.231|4|
1.3.6.1.2.1.25.4.2.1.5.232|4|
1.3.6.1.2.1.25.4.2.1.5.233|4|
1.3.6.1.2.1.25.4.2.1.5.234|4|
1.3.6.1.2.1.25.4.2.1.5.903|4|
1.3.6.1.2.1.25.4.2.1.5.904|4|
1.3.6.1.2.1.25.4.2.1.5.940|4|
1.3.6.1.2.1.25.4.2.1.5.941|4|
1.3.6.1.2.1.25.4.2.1.5.969|4|
1.3.6.1.2.1.25.4.2.1.5.970|4|
1.3.6.1.2.1.25.4.2.1.5.975|4|
1.3.6.1.2.1.25.4.2.1.5.976|4|
1.3.6.1.2.1.25.4.2.1.5.1045|4|
1.3.6.1.2.1.25.4.2.1.5.1046|4|
1.3.6.1.2.1.25.4.2.1.5.1050|4|
1.3.6.1.2.1.25.4.2.1.5.1119|4|--daemon
1.3.6.1.2.1.25.4.2.1.5.2375|4|
1.3.6.1.2.1.25.4.2.1.5.2452|4|
1.3.6.1.2.1.25.4.2.1.5.2454|4|
1.3.6.1.2.1.25.4.2.1.5.2497|4|
1.3.6.1.2.1.25.4.2.1.5.2501|4|-c 3 -x
1.3.6.1.2.1.25.4.2.1.5.2918|4|
1.3.6.1.2.1.25.4.2.1.5.2922|4|
1.3.6.1.2.1.25.4.2.1.5.2991|4|
1.3.6.1.2.1.25.4.2.1.5.2999|4|
1.3.6.1.2.1.25.4.2.1.5.3002|4|
1.3.6.1.2.1.25.4.2.1.5.3032|4|
1.3.6.1.2.1.25.4.2.1.5.3034|4|
1.3.6.1.2.1.25.4.2.1.5.3035|4|
1.3.6.1.2.1.25.4.2.1.5.3036|4|
1.3.6.1.2.1.25.4.2.1.5.3037|4|
1.3.6.1.2.1.25.4.2.1.5.3038|4|
1.3.6.1.2.1.25.4.2.1.5.3039|4|
1.3.6.1.2.1.25.4.2.1.5.3040|4|
1.3.6.1.2.1.25.4.2.1.5.3041|4|
1.3.6.1.2.1.25.4.2.1.5.3042|4|
1.3.6.1.2.1.25.4.2.1.5.3043|4|
1.3.6.1.2.1.25.4.2.1.5.3044|4|
1.3.6.1.2.1.25.4.2.1.5.3045|4|
1.3.6.1.2.1.25.4.2.1.5.3047|4|
1.3.6.1.2.1.25.4.2.1.5.3050|4|-g -p /var/run/ntpd.pid
1.3.6.1.2.1.25.4.2.1.5.3055|4|
1.3.6.1.2.1.25.4.2.1.5.3066|4|--system
1.3.6.1.2.1.25.4.2.1.5.3068|4|-g -p /var/run/ntpd.pid
1.3.6.1.2.1.25.4.2.1.5.3070|4|--daemon=yes
1.3.6.1.2.1.25.4.2.1.5.3071|4|
1.3.6.1.2.1.25.4.2.1.5.3077|4|
1.3.6.1.2.1.25.4.2.1.5.3078|4|
1.3.6.1.2.1.25.4.2.1.5.3079|4|
1.3.6.1.2.1.25.4.2.1.5.3082|4|
1.3.6.1.2.1.25.4.2.1.5.3083|4|
1.3.6.1.2.1.25.4.2.1.5.3103|4|
1.3.6.1.2.1.25.4.2.1.5.3108|4|-l10
1.3.6.1.2.1.25.4.2.1.5.3110|4|-b 15 -l 1
1.3.6.1.2.1.25.4.2.1.5.3113|4|
1.3.6.1.2.1.25.4.2.1.5.3116|4|
1.3.6.1.2.1.25.4.2.1.5.3194|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3214|4|-t 5 /auto file /etc/auto.auto
1.3.6.1.2.1.25.4.2.1.5.3225|4|-A -p /var/run/snmpd -a -c /etc/snmp/snmpd.conf
1.3.6.1.2.1.25.4.2.1.5.3234|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3235|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3236|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3237|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3238|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3243|4|-nodaemon
1.3.6.1.2.1.25.4.2.1.5.3329|4|--fork --print-pid 4 --print-address 6 --session
1.3.6.1.2.1.25.4.2.1.5.3373|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3466|4|38400 tty6 linux
1.3.6.1.2.1.25.4.2.1.5.3532|4|
1.3.6.1.2.1.25.4.2.1.5.3920|4|:0 -auth /usr/lib/X11/xdm/authdir/authfiles/A:0-g8nHN0
1.3.6.1.2.1.25.4.2.1.5.3921|4|
1.3.6.1.2.1.25.4.2.1.5.3932|4|/etc/X11/xinit/xinitrc
1.3.6.1.2.1.25.4.2.1.5.3968|4|/etc/X11/xinit/xinitrc
1.3.6.1.2.1.25.4.2.1.5.3969|4|-no-splash
1.3.6.1.2.1.25.4.2.1.5.3972|4|-s
1.3.6.1.2.1.25.4.2.1.5.3977|4|--sh-syntax --exit-with-session
1.3.6.1.2.1.25.4.2.1.5.3979|4|--fork --print-pid 4 --print-address 6 --session
1.3.6.1.2.1.25.4.2.1.5.3981|4|
1.3.6.1.2.1.25.4.2.1.5.3984|4|
1.3.6.1.2.1.25.4.2.1.5.3985|4|--sm-client-id 11c3dafe69000115209737700000029700000 --display :0.0
1.3.6.1.2.1.25.4.2.1.5.3986|4|--sm-client-id 11c3dafe69000115209737700000029700003 --display :0.0
1.3.6.1.2.1.25.4.2.1.5.3988|4|--daemon
1.3.6.1.2.1.25.4.2.1.5.3993|4|--sm-client-id 11c3dafe69000115209737700000029700001 --display :0.0
1.3.6.1.2.1.25.4.2.1.5.3994|4|-xtsessionID 11c3dafe69000115210972100000061770008 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3995|4|-xtsessionID 11c3dafe69000115210965900000061770007 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3996|4|-xtsessionID 11c3dafe69000115210961600000061770006 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3997|4|-xtsessionID 11c3dafe69000115209986400000029700006 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3998|4|-xtsessionID 11c3dafe69000115209747200000029700005 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3999|4|-xtsessionID 11c3dafe69000115211106500000064280001 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4004|4|-xtsessionID 11c3dafe69000115211106700000064280002 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4007|4|socket_id 18874412 name xfce4-menu id 5 display_name Xfce Menu size 36 screen_position 11
1.3.6.1.2.1.25.4.2.1.5.4008|4|
1.3.6.1.2.1.25.4.2.1.5.4009|4|-xtsessionID 11c3dafe69000115211106800000064280003 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4010|4|
1.3.6.1.2.1.25.4.2.1.5.4011|4|
1.3.6.1.2.1.25.4.2.1.5.4012|4|
1.3.6.1.2.1.25.4.2.1.5.4014|4|-xtsessionID 11c3dafe69000115211110000000064280004 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4016|4|
1.3.6.1.2.1.25.4.2.1.5.4018|4|socket_id 18874427 name xfce4-xmms-plugin id 11946297210 display_name Xfce4 XMMS Plugin size 36 screen_position 11
1.3.6.1.2.1.25.4.2.1.5.4019|4|-xtsessionID 11c3dafe69000115211110100000064280005 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4021|4|
1.3.6.1.2.1.25.4.2.1.5.4026|4|-xtsessionID 11c3dafe69000115211110300000064280006 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4027|4|
1.3.6.1.2.1.25.4.2.1.5.4031|4|-xtsessionID 11c3dafe69000115211623900000081180004 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4036|4|-xtsessionID 11c3dafe69000115225555000000050600002 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4037|4|
1.3.6.1.2.1.25.4.2.1.5.4041|4|
1.3.6.1.2.1.25.4.2.1.5.4045|4|
1.3.6.1.2.1.25.4.2.1.5.4048|4|-xtsessionID 11c3dafe69000115225555600000050600003 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4049|4|
1.3.6.1.2.1.25.4.2.1.5.4053|4|-xtsessionID 11c3dafe69000115225556500000050600004 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4054|4|
1.3.6.1.2.1.25.4.2.1.5.4059|4|
1.3.6.1.2.1.25.4.2.1.5.4063|4|
1.3.6.1.2.1.25.4.2.1.5.4064|4|
1.3.6.1.2.1.25.4.2.1.5.4132|4|
1.3.6.1.2.1.25.4.2.1.5.4138|4|/usr/bin/firefox
1.3.6.1.2.1.25.4.2.1.5.4151|4|/usr/local/lib/firefox-3.6/run-mozilla.sh /usr/local/lib/firefox-3.6/firefox-bin
1.3.6.1.2.1.25.4.2.1.5.4155|4|
1.3.6.1.2.1.25.4.2.1.5.8332|4|arethusa
1.3.6.1.2.1.25.4.2.1.5.8337|4|pherusa
1.3.6.1.2.1.25.4.2.1.5.11508|4|common/metaops.c
1.3.6.1.2.1.25.4.2.1.5.11511|4|common/metaops.c
1.3.6.1.2.1.25.4.2.1.5.14710|4|/tmp/w.cap
1.3.6.1.2.1.25.4.2.1.5.14797|4|/tmp/w2.cap
1.3.6.1.2.1.25.4.2.1.5.19461|4|--user privoxy privoxy --pidfile /var/run/privoxy/privoxy.pid /etc/privoxy/config
1.3.6.1.2.1.25.4.2.1.5.19802|4|snmprec.py
1.3.6.1.2.1.25.4.2.1.5.20269|4|
1.3.6.1.2.1.25.4.2.1.5.20571|4|wifimgr02
1.3.6.1.2.1.25.4.2.1.5.20996|4|
1.3.6.1.2.1.25.4.2.1.5.21620|4|
1.3.6.1.2.1.25.4.2.1.5.22336|4|Within Temptation - 01 - Forgiven (Single Version).mp3 Within Temptation - 02 - Forgiven (Album Version).mp3 Within Temptation -
1.3.6.1.2.1.25.4.2.1.5.22476|4|/home/ilya/bin/lotus
1.3.6.1.2.1.25.4.2.1.5.22477|4|-r disk:floppy /home/ilya/p -g 1200x700 -d SOVINTEL -u ietingoff -p XXXXXXXXXXXX 10.105.41.179
1.3.6.1.2.1.25.4.2.1.5.22558|4|snmprec.py --agent-address 127.0.0.1 --output-file=devices/linux/slackware/1.3.6.1.2.1.1.1_12_2/127.0.0.1@public.snmprec
1.3.6.1.2.1.25.4.2.1.6.1|2|4
1.3.6.1.2.1.25.4.2.1.6.2|2|4
1.3.6.1.2.1.25.4.2.1.6.3|2|4
1.3.6.1.2.1.25.4.2.1.6.4|2|4
1.3.6.1.2.1.25.4.2.1.6.5|2|4
1.3.6.1.2.1.25.4.2.1.6.6|2|4
1.3.6.1.2.1.25.4.2.1.6.7|2|4
1.3.6.1.2.1.25.4.2.1.6.8|2|4
1.3.6.1.2.1.25.4.2.1.6.9|2|4
1.3.6.1.2.1.25.4.2.1.6.87|2|4
1.3.6.1.2.1.25.4.2.1.6.88|2|4
1.3.6.1.2.1.25.4.2.1.6.89|2|4
1.3.6.1.2.1.25.4.2.1.6.184|2|4
1.3.6.1.2.1.25.4.2.1.6.185|2|4
1.3.6.1.2.1.25.4.2.1.6.186|2|4
1.3.6.1.2.1.25.4.2.1.6.187|2|4
1.3.6.1.2.1.25.4.2.1.6.190|2|4
1.3.6.1.2.1.25.4.2.1.6.192|2|4
1.3.6.1.2.1.25.4.2.1.6.204|2|4
1.3.6.1.2.1.25.4.2.1.6.220|2|4
1.3.6.1.2.1.25.4.2.1.6.221|2|4
1.3.6.1.2.1.25.4.2.1.6.222|2|4
1.3.6.1.2.1.25.4.2.1.6.223|2|4
1.3.6.1.2.1.25.4.2.1.6.224|2|4
1.3.6.1.2.1.25.4.2.1.6.225|2|4
1.3.6.1.2.1.25.4.2.1.6.226|2|4
1.3.6.1.2.1.25.4.2.1.6.227|2|4
1.3.6.1.2.1.25.4.2.1.6.228|2|4
1.3.6.1.2.1.25.4.2.1.6.229|2|4
1.3.6.1.2.1.25.4.2.1.6.230|2|4
1.3.6.1.2.1.25.4.2.1.6.231|2|4
1.3.6.1.2.1.25.4.2.1.6.232|2|4
1.3.6.1.2.1.25.4.2.1.6.233|2|4
1.3.6.1.2.1.25.4.2.1.6.234|2|4
1.3.6.1.2.1.25.4.2.1.6.903|2|4
1.3.6.1.2.1.25.4.2.1.6.904|2|4
1.3.6.1.2.1.25.4.2.1.6.940|2|4
1.3.6.1.2.1.25.4.2.1.6.941|2|4
1.3.6.1.2.1.25.4.2.1.6.969|2|4
1.3.6.1.2.1.25.4.2.1.6.970|2|4
1.3.6.1.2.1.25.4.2.1.6.975|2|4
1.3.6.1.2.1.25.4.2.1.6.976|2|4
1.3.6.1.2.1.25.4.2.1.6.1045|2|4
1.3.6.1.2.1.25.4.2.1.6.1046|2|4
1.3.6.1.2.1.25.4.2.1.6.1050|2|4
1.3.6.1.2.1.25.4.2.1.6.1119|2|4
1.3.6.1.2.1.25.4.2.1.6.2375|2|4
1.3.6.1.2.1.25.4.2.1.6.2452|2|4
1.3.6.1.2.1.25.4.2.1.6.2454|2|4
1.3.6.1.2.1.25.4.2.1.6.2497|2|4
1.3.6.1.2.1.25.4.2.1.6.2501|2|4
1.3.6.1.2.1.25.4.2.1.6.2918|2|4
1.3.6.1.2.1.25.4.2.1.6.2922|2|4
1.3.6.1.2.1.25.4.2.1.6.2991|2|4
1.3.6.1.2.1.25.4.2.1.6.2999|2|4
1.3.6.1.2.1.25.4.2.1.6.3002|2|4
1.3.6.1.2.1.25.4.2.1.6.3032|2|4
1.3.6.1.2.1.25.4.2.1.6.3034|2|4
1.3.6.1.2.1.25.4.2.1.6.3035|2|4
1.3.6.1.2.1.25.4.2.1.6.3036|2|4
1.3.6.1.2.1.25.4.2.1.6.3037|2|4
1.3.6.1.2.1.25.4.2.1.6.3038|2|4
1.3.6.1.2.1.25.4.2.1.6.3039|2|4
1.3.6.1.2.1.25.4.2.1.6.3040|2|4
1.3.6.1.2.1.25.4.2.1.6.3041|2|4
1.3.6.1.2.1.25.4.2.1.6.3042|2|4
1.3.6.1.2.1.25.4.2.1.6.3043|2|4
1.3.6.1.2.1.25.4.2.1.6.3044|2|4
1.3.6.1.2.1.25.4.2.1.6.3045|2|4
1.3.6.1.2.1.25.4.2.1.6.3047|2|4
1.3.6.1.2.1.25.4.2.1.6.3050|2|4
1.3.6.1.2.1.25.4.2.1.6.3055|2|4
1.3.6.1.2.1.25.4.2.1.6.3066|2|4
1.3.6.1.2.1.25.4.2.1.6.3068|2|4
1.3.6.1.2.1.25.4.2.1.6.3070|2|4
1.3.6.1.2.1.25.4.2.1.6.3071|2|4
1.3.6.1.2.1.25.4.2.1.6.3077|2|4
1.3.6.1.2.1.25.4.2.1.6.3078|2|4
1.3.6.1.2.1.25.4.2.1.6.3079|2|4
1.3.6.1.2.1.25.4.2.1.6.3082|2|4
1.3.6.1.2.1.25.4.2.1.6.3083|2|4
1.3.6.1.2.1.25.4.2.1.6.3103|2|4
1.3.6.1.2.1.25.4.2.1.6.3108|2|4
1.3.6.1.2.1.25.4.2.1.6.3110|2|4
1.3.6.1.2.1.25.4.2.1.6.3113|2|4
1.3.6.1.2.1.25.4.2.1.6.3116|2|4
1.3.6.1.2.1.25.4.2.1.6.3194|2|4
1.3.6.1.2.1.25.4.2.1.6.3214|2|4
1.3.6.1.2.1.25.4.2.1.6.3225|2|4
1.3.6.1.2.1.25.4.2.1.6.3234|2|4
1.3.6.1.2.1.25.4.2.1.6.3235|2|4
1.3.6.1.2.1.25.4.2.1.6.3236|2|4
1.3.6.1.2.1.25.4.2.1.6.3237|2|4
1.3.6.1.2.1.25.4.2.1.6.3238|2|4
1.3.6.1.2.1.25.4.2.1.6.3243|2|4
1.3.6.1.2.1.25.4.2.1.6.3329|2|4
1.3.6.1.2.1.25.4.2.1.6.3373|2|4
1.3.6.1.2.1.25.4.2.1.6.3466|2|4
1.3.6.1.2.1.25.4.2.1.6.3532|2|4
1.3.6.1.2.1.25.4.2.1.6.3920|2|4
1.3.6.1.2.1.25.4.2.1.6.3921|2|4
1.3.6.1.2.1.25.4.2.1.6.3932|2|4
1.3.6.1.2.1.25.4.2.1.6.3968|2|4
1.3.6.1.2.1.25.4.2.1.6.3969|2|4
1.3.6.1.2.1.25.4.2.1.6.3972|2|4
1.3.6.1.2.1.25.4.2.1.6.3977|2|4
1.3.6.1.2.1.25.4.2.1.6.3979|2|4
1.3.6.1.2.1.25.4.2.1.6.3981|2|4
1.3.6.1.2.1.25.4.2.1.6.3984|2|4
1.3.6.1.2.1.25.4.2.1.6.3985|2|4
1.3.6.1.2.1.25.4.2.1.6.3986|2|4
1.3.6.1.2.1.25.4.2.1.6.3988|2|4
1.3.6.1.2.1.25.4.2.1.6.3993|2|4
1.3.6.1.2.1.25.4.2.1.6.3994|2|4
1.3.6.1.2.1.25.4.2.1.6.3995|2|4
1.3.6.1.2.1.25.4.2.1.6.3996|2|4
1.3.6.1.2.1.25.4.2.1.6.3997|2|4
1.3.6.1.2.1.25.4.2.1.6.3998|2|4
1.3.6.1.2.1.25.4.2.1.6.3999|2|4
1.3.6.1.2.1.25.4.2.1.6.4004|2|4
1.3.6.1.2.1.25.4.2.1.6.4007|2|4
1.3.6.1.2.1.25.4.2.1.6.4008|2|4
1.3.6.1.2.1.25.4.2.1.6.4009|2|4
1.3.6.1.2.1.25.4.2.1.6.4010|2|4
1.3.6.1.2.1.25.4.2.1.6.4011|2|4
1.3.6.1.2.1.25.4.2.1.6.4012|2|4
1.3.6.1.2.1.25.4.2.1.6.4014|2|4
1.3.6.1.2.1.25.4.2.1.6.4016|2|4
1.3.6.1.2.1.25.4.2.1.6.4018|2|4
1.3.6.1.2.1.25.4.2.1.6.4019|2|4
1.3.6.1.2.1.25.4.2.1.6.4021|2|4
1.3.6.1.2.1.25.4.2.1.6.4026|2|4
1.3.6.1.2.1.25.4.2.1.6.4027|2|4
1.3.6.1.2.1.25.4.2.1.6.4031|2|4
1.3.6.1.2.1.25.4.2.1.6.4036|2|4
1.3.6.1.2.1.25.4.2.1.6.4037|2|4
1.3.6.1.2.1.25.4.2.1.6.4041|2|4
1.3.6.1.2.1.25.4.2.1.6.4045|2|4
1.3.6.1.2.1.25.4.2.1.6.4048|2|4
1.3.6.1.2.1.25.4.2.1.6.4049|2|4
1.3.6.1.2.1.25.4.2.1.6.4053|2|4
1.3.6.1.2.1.25.4.2.1.6.4054|2|4
1.3.6.1.2.1.25.4.2.1.6.4059|2|4
1.3.6.1.2.1.25.4.2.1.6.4063|2|4
1.3.6.1.2.1.25.4.2.1.6.4064|2|4
1.3.6.1.2.1.25.4.2.1.6.4132|2|4
1.3.6.1.2.1.25.4.2.1.6.4138|2|4
1.3.6.1.2.1.25.4.2.1.6.4151|2|4
1.3.6.1.2.1.25.4.2.1.6.4155|2|4
1.3.6.1.2.1.25.4.2.1.6.8332|2|4
1.3.6.1.2.1.25.4.2.1.6.8337|2|4
1.3.6.1.2.1.25.4.2.1.6.11508|2|4
1.3.6.1.2.1.25.4.2.1.6.11511|2|4
1.3.6.1.2.1.25.4.2.1.6.14710|2|4
1.3.6.1.2.1.25.4.2.1.6.14797|2|4
1.3.6.1.2.1.25.4.2.1.6.19461|2|4
1.3.6.1.2.1.25.4.2.1.6.19802|2|4
1.3.6.1.2.1.25.4.2.1.6.20269|2|4
1.3.6.1.2.1.25.4.2.1.6.20571|2|4
1.3.6.1.2.1.25.4.2.1.6.20996|2|4
1.3.6.1.2.1.25.4.2.1.6.21620|2|4
1.3.6.1.2.1.25.4.2.1.6.22336|2|4
1.3.6.1.2.1.25.4.2.1.6.22476|2|4
1.3.6.1.2.1.25.4.2.1.6.22477|2|4
1.3.6.1.2.1.25.4.2.1.6.22558|2|4
1.3.6.1.2.1.25.4.2.1.7.1|2|2
1.3.6.1.2.1.25.4.2.1.7.2|2|2
1.3.6.1.2.1.25.4.2.1.7.3|2|2
1.3.6.1.2.1.25.4.2.1.7.4|2|2
1.3.6.1.2.1.25.4.2.1.7.5|2|2
1.3.6.1.2.1.25.4.2.1.7.6|2|2
1.3.6.1.2.1.25.4.2.1.7.7|2|2
1.3.6.1.2.1.25.4.2.1.7.8|2|2
1.3.6.1.2.1.25.4.2.1.7.9|2|2
1.3.6.1.2.1.25.4.2.1.7.87|2|2
1.3.6.1.2.1.25.4.2.1.7.88|2|2
1.3.6.1.2.1.25.4.2.1.7.89|2|2
1.3.6.1.2.1.25.4.2.1.7.184|2|2
1.3.6.1.2.1.25.4.2.1.7.185|2|2
1.3.6.1.2.1.25.4.2.1.7.186|2|2
1.3.6.1.2.1.25.4.2.1.7.187|2|2
1.3.6.1.2.1.25.4.2.1.7.190|2|2
1.3.6.1.2.1.25.4.2.1.7.192|2|2
1.3.6.1.2.1.25.4.2.1.7.204|2|2
1.3.6.1.2.1.25.4.2.1.7.220|2|2
1.3.6.1.2.1.25.4.2.1.7.221|2|2
1.3.6.1.2.1.25.4.2.1.7.222|2|2
1.3.6.1.2.1.25.4.2.1.7.223|2|2
1.3.6.1.2.1.25.4.2.1.7.224|2|2
1.3.6.1.2.1.25.4.2.1.7.225|2|2
1.3.6.1.2.1.25.4.2.1.7.226|2|2
1.3.6.1.2.1.25.4.2.1.7.227|2|2
1.3.6.1.2.1.25.4.2.1.7.228|2|2
1.3.6.1.2.1.25.4.2.1.7.229|2|2
1.3.6.1.2.1.25.4.2.1.7.230|2|2
1.3.6.1.2.1.25.4.2.1.7.231|2|2
1.3.6.1.2.1.25.4.2.1.7.232|2|2
1.3.6.1.2.1.25.4.2.1.7.233|2|2
1.3.6.1.2.1.25.4.2.1.7.234|2|2
1.3.6.1.2.1.25.4.2.1.7.903|2|2
1.3.6.1.2.1.25.4.2.1.7.904|2|2
1.3.6.1.2.1.25.4.2.1.7.940|2|2
1.3.6.1.2.1.25.4.2.1.7.941|2|2
1.3.6.1.2.1.25.4.2.1.7.969|2|2
1.3.6.1.2.1.25.4.2.1.7.970|2|2
1.3.6.1.2.1.25.4.2.1.7.975|2|2
1.3.6.1.2.1.25.4.2.1.7.976|2|2
1.3.6.1.2.1.25.4.2.1.7.1045|2|2
1.3.6.1.2.1.25.4.2.1.7.1046|2|2
1.3.6.1.2.1.25.4.2.1.7.1050|2|2
1.3.6.1.2.1.25.4.2.1.7.1119|2|2
1.3.6.1.2.1.25.4.2.1.7.2375|2|2
1.3.6.1.2.1.25.4.2.1.7.2452|2|2
1.3.6.1.2.1.25.4.2.1.7.2454|2|2
1.3.6.1.2.1.25.4.2.1.7.2497|2|2
1.3.6.1.2.1.25.4.2.1.7.2501|2|2
1.3.6.1.2.1.25.4.2.1.7.2918|2|2
1.3.6.1.2.1.25.4.2.1.7.2922|2|2
1.3.6.1.2.1.25.4.2.1.7.2991|2|2
1.3.6.1.2.1.25.4.2.1.7.2999|2|2
1.3.6.1.2.1.25.4.2.1.7.3002|2|2
1.3.6.1.2.1.25.4.2.1.7.3032|2|2
1.3.6.1.2.1.25.4.2.1.7.3034|2|2
1.3.6.1.2.1.25.4.2.1.7.3035|2|2
1.3.6.1.2.1.25.4.2.1.7.3036|2|2
1.3.6.1.2.1.25.4.2.1.7.3037|2|2
1.3.6.1.2.1.25.4.2.1.7.3038|2|2
1.3.6.1.2.1.25.4.2.1.7.3039|2|2
1.3.6.1.2.1.25.4.2.1.7.3040|2|2
1.3.6.1.2.1.25.4.2.1.7.3041|2|2
1.3.6.1.2.1.25.4.2.1.7.3042|2|2
1.3.6.1.2.1.25.4.2.1.7.3043|2|2
1.3.6.1.2.1.25.4.2.1.7.3044|2|2
1.3.6.1.2.1.25.4.2.1.7.3045|2|2
1.3.6.1.2.1.25.4.2.1.7.3047|2|2
1.3.6.1.2.1.25.4.2.1.7.3050|2|2
1.3.6.1.2.1.25.4.2.1.7.3055|2|2
1.3.6.1.2.1.25.4.2.1.7.3066|2|2
1.3.6.1.2.1.25.4.2.1.7.3068|2|2
1.3.6.1.2.1.25.4.2.1.7.3070|2|2
1.3.6.1.2.1.25.4.2.1.7.3071|2|2
1.3.6.1.2.1.25.4.2.1.7.3077|2|2
1.3.6.1.2.1.25.4.2.1.7.3078|2|2
1.3.6.1.2.1.25.4.2.1.7.3079|2|2
1.3.6.1.2.1.25.4.2.1.7.3082|2|2
1.3.6.1.2.1.25.4.2.1.7.3083|2|2
1.3.6.1.2.1.25.4.2.1.7.3103|2|2
1.3.6.1.2.1.25.4.2.1.7.3108|2|2
1.3.6.1.2.1.25.4.2.1.7.3110|2|2
1.3.6.1.2.1.25.4.2.1.7.3113|2|2
1.3.6.1.2.1.25.4.2.1.7.3116|2|2
1.3.6.1.2.1.25.4.2.1.7.3194|2|2
1.3.6.1.2.1.25.4.2.1.7.3214|2|2
1.3.6.1.2.1.25.4.2.1.7.3225|2|1
1.3.6.1.2.1.25.4.2.1.7.3234|2|2
1.3.6.1.2.1.25.4.2.1.7.3235|2|2
1.3.6.1.2.1.25.4.2.1.7.3236|2|2
1.3.6.1.2.1.25.4.2.1.7.3237|2|2
1.3.6.1.2.1.25.4.2.1.7.3238|2|2
1.3.6.1.2.1.25.4.2.1.7.3243|2|2
1.3.6.1.2.1.25.4.2.1.7.3329|2|2
1.3.6.1.2.1.25.4.2.1.7.3373|2|2
1.3.6.1.2.1.25.4.2.1.7.3466|2|2
1.3.6.1.2.1.25.4.2.1.7.3532|2|2
1.3.6.1.2.1.25.4.2.1.7.3920|2|2
1.3.6.1.2.1.25.4.2.1.7.3921|2|2
1.3.6.1.2.1.25.4.2.1.7.3932|2|2
1.3.6.1.2.1.25.4.2.1.7.3968|2|2
1.3.6.1.2.1.25.4.2.1.7.3969|2|2
1.3.6.1.2.1.25.4.2.1.7.3972|2|2
1.3.6.1.2.1.25.4.2.1.7.3977|2|2
1.3.6.1.2.1.25.4.2.1.7.3979|2|2
1.3.6.1.2.1.25.4.2.1.7.3981|2|2
1.3.6.1.2.1.25.4.2.1.7.3984|2|2
1.3.6.1.2.1.25.4.2.1.7.3985|2|2
1.3.6.1.2.1.25.4.2.1.7.3986|2|2
1.3.6.1.2.1.25.4.2.1.7.3988|2|2
1.3.6.1.2.1.25.4.2.1.7.3993|2|2
1.3.6.1.2.1.25.4.2.1.7.3994|2|2
1.3.6.1.2.1.25.4.2.1.7.3995|2|2
1.3.6.1.2.1.25.4.2.1.7.3996|2|2
1.3.6.1.2.1.25.4.2.1.7.3997|2|2
1.3.6.1.2.1.25.4.2.1.7.3998|2|2
1.3.6.1.2.1.25.4.2.1.7.3999|2|2
1.3.6.1.2.1.25.4.2.1.7.4004|2|2
1.3.6.1.2.1.25.4.2.1.7.4007|2|2
1.3.6.1.2.1.25.4.2.1.7.4008|2|2
1.3.6.1.2.1.25.4.2.1.7.4009|2|2
1.3.6.1.2.1.25.4.2.1.7.4010|2|2
1.3.6.1.2.1.25.4.2.1.7.4011|2|2
1.3.6.1.2.1.25.4.2.1.7.4012|2|2
1.3.6.1.2.1.25.4.2.1.7.4014|2|2
1.3.6.1.2.1.25.4.2.1.7.4016|2|2
1.3.6.1.2.1.25.4.2.1.7.4018|2|2
1.3.6.1.2.1.25.4.2.1.7.4019|2|2
1.3.6.1.2.1.25.4.2.1.7.4021|2|2
1.3.6.1.2.1.25.4.2.1.7.4026|2|2
1.3.6.1.2.1.25.4.2.1.7.4027|2|2
1.3.6.1.2.1.25.4.2.1.7.4031|2|2
1.3.6.1.2.1.25.4.2.1.7.4036|2|2
1.3.6.1.2.1.25.4.2.1.7.4037|2|2
1.3.6.1.2.1.25.4.2.1.7.4041|2|2
1.3.6.1.2.1.25.4.2.1.7.4045|2|2
1.3.6.1.2.1.25.4.2.1.7.4048|2|2
1.3.6.1.2.1.25.4.2.1.7.4049|2|2
1.3.6.1.2.1.25.4.2.1.7.4053|2|2
1.3.6.1.2.1.25.4.2.1.7.4054|2|2
1.3.6.1.2.1.25.4.2.1.7.4059|2|2
1.3.6.1.2.1.25.4.2.1.7.4063|2|2
1.3.6.1.2.1.25.4.2.1.7.4064|2|2
1.3.6.1.2.1.25.4.2.1.7.4132|2|2
1.3.6.1.2.1.25.4.2.1.7.4138|2|2
1.3.6.1.2.1.25.4.2.1.7.4151|2|2
1.3.6.1.2.1.25.4.2.1.7.4155|2|2
1.3.6.1.2.1.25.4.2.1.7.8332|2|2
1.3.6.1.2.1.25.4.2.1.7.8337|2|2
1.3.6.1.2.1.25.4.2.1.7.11508|2|2
1.3.6.1.2.1.25.4.2.1.7.11511|2|2
1.3.6.1.2.1.25.4.2.1.7.14710|2|2
1.3.6.1.2.1.25.4.2.1.7.14797|2|2
1.3.6.1.2.1.25.4.2.1.7.19461|2|2
1.3.6.1.2.1.25.4.2.1.7.19802|2|2
1.3.6.1.2.1.25.4.2.1.7.20269|2|3
1.3.6.1.2.1.25.4.2.1.7.20571|2|2
1.3.6.1.2.1.25.4.2.1.7.20996|2|2
1.3.6.1.2.1.25.4.2.1.7.21620|2|3
1.3.6.1.2.1.25.4.2.1.7.22336|2|3
1.3.6.1.2.1.25.4.2.1.7.22476|2|2
1.3.6.1.2.1.25.4.2.1.7.22477|2|2
1.3.6.1.2.1.25.4.2.1.7.22558|2|2
1.3.6.1.2.1.25.5.1.1.1.1|2|151
1.3.6.1.2.1.25.5.1.1.1.2|2|5
1.3.6.1.2.1.25.5.1.1.1.3|2|251
1.3.6.1.2.1.25.5.1.1.1.4|2|3
1.3.6.1.2.1.25.5.1.1.1.5|2|96
1.3.6.1.2.1.25.5.1.1.1.6|2|787
1.3.6.1.2.1.25.5.1.1.1.7|2|6
1.3.6.1.2.1.25.5.1.1.1.8|2|2
1.3.6.1.2.1.25.5.1.1.1.9|2|0
1.3.6.1.2.1.25.5.1.1.1.87|2|6
1.3.6.1.2.1.25.5.1.1.1.88|2|0
1.3.6.1.2.1.25.5.1.1.1.89|2|0
1.3.6.1.2.1.25.5.1.1.1.184|2|0
1.3.6.1.2.1.25.5.1.1.1.185|2|0
1.3.6.1.2.1.25.5.1.1.1.186|2|0
1.3.6.1.2.1.25.5.1.1.1.187|2|0
1.3.6.1.2.1.25.5.1.1.1.190|2|112
1.3.6.1.2.1.25.5.1.1.1.192|2|0
1.3.6.1.2.1.25.5.1.1.1.204|2|0
1.3.6.1.2.1.25.5.1.1.1.220|2|176
1.3.6.1.2.1.25.5.1.1.1.221|2|438
1.3.6.1.2.1.25.5.1.1.1.222|2|2618
1.3.6.1.2.1.25.5.1.1.1.223|2|0
1.3.6.1.2.1.25.5.1.1.1.224|2|0
1.3.6.1.2.1.25.5.1.1.1.225|2|0
1.3.6.1.2.1.25.5.1.1.1.226|2|0
1.3.6.1.2.1.25.5.1.1.1.227|2|0
1.3.6.1.2.1.25.5.1.1.1.228|2|0
1.3.6.1.2.1.25.5.1.1.1.229|2|0
1.3.6.1.2.1.25.5.1.1.1.230|2|0
1.3.6.1.2.1.25.5.1.1.1.231|2|0
1.3.6.1.2.1.25.5.1.1.1.232|2|0
1.3.6.1.2.1.25.5.1.1.1.233|2|0
1.3.6.1.2.1.25.5.1.1.1.234|2|0
1.3.6.1.2.1.25.5.1.1.1.903|2|0
1.3.6.1.2.1.25.5.1.1.1.904|2|0
1.3.6.1.2.1.25.5.1.1.1.940|2|0
1.3.6.1.2.1.25.5.1.1.1.941|2|0
1.3.6.1.2.1.25.5.1.1.1.969|2|0
1.3.6.1.2.1.25.5.1.1.1.970|2|0
1.3.6.1.2.1.25.5.1.1.1.975|2|0
1.3.6.1.2.1.25.5.1.1.1.976|2|0
1.3.6.1.2.1.25.5.1.1.1.1045|2|0
1.3.6.1.2.1.25.5.1.1.1.1046|2|0
1.3.6.1.2.1.25.5.1.1.1.1050|2|351
1.3.6.1.2.1.25.5.1.1.1.1119|2|85
1.3.6.1.2.1.25.5.1.1.1.2375|2|0
1.3.6.1.2.1.25.5.1.1.1.2452|2|1456
1.3.6.1.2.1.25.5.1.1.1.2454|2|20
1.3.6.1.2.1.25.5.1.1.1.2497|2|289
1.3.6.1.2.1.25.5.1.1.1.2501|2|61
1.3.6.1.2.1.25.5.1.1.1.2918|2|0
1.3.6.1.2.1.25.5.1.1.1.2922|2|0
1.3.6.1.2.1.25.5.1.1.1.2991|2|0
1.3.6.1.2.1.25.5.1.1.1.2999|2|0
1.3.6.1.2.1.25.5.1.1.1.3002|2|5402
1.3.6.1.2.1.25.5.1.1.1.3032|2|0
1.3.6.1.2.1.25.5.1.1.1.3034|2|0
1.3.6.1.2.1.25.5.1.1.1.3035|2|0
1.3.6.1.2.1.25.5.1.1.1.3036|2|0
1.3.6.1.2.1.25.5.1.1.1.3037|2|0
1.3.6.1.2.1.25.5.1.1.1.3038|2|49
1.3.6.1.2.1.25.5.1.1.1.3039|2|46
1.3.6.1.2.1.25.5.1.1.1.3040|2|52
1.3.6.1.2.1.25.5.1.1.1.3041|2|41
1.3.6.1.2.1.25.5.1.1.1.3042|2|53
1.3.6.1.2.1.25.5.1.1.1.3043|2|44
1.3.6.1.2.1.25.5.1.1.1.3044|2|65
1.3.6.1.2.1.25.5.1.1.1.3045|2|59
1.3.6.1.2.1.25.5.1.1.1.3047|2|2
1.3.6.1.2.1.25.5.1.1.1.3050|2|27
1.3.6.1.2.1.25.5.1.1.1.3055|2|0
1.3.6.1.2.1.25.5.1.1.1.3066|2|20
1.3.6.1.2.1.25.5.1.1.1.3068|2|56
1.3.6.1.2.1.25.5.1.1.1.3070|2|93
1.3.6.1.2.1.25.5.1.1.1.3071|2|4
1.3.6.1.2.1.25.5.1.1.1.3077|2|1330
1.3.6.1.2.1.25.5.1.1.1.3078|2|0
1.3.6.1.2.1.25.5.1.1.1.3079|2|0
1.3.6.1.2.1.25.5.1.1.1.3082|2|0
1.3.6.1.2.1.25.5.1.1.1.3083|2|700
1.3.6.1.2.1.25.5.1.1.1.3103|2|14
1.3.6.1.2.1.25.5.1.1.1.3108|2|191
1.3.6.1.2.1.25.5.1.1.1.3110|2|0
1.3.6.1.2.1.25.5.1.1.1.3113|2|57
1.3.6.1.2.1.25.5.1.1.1.3116|2|25
1.3.6.1.2.1.25.5.1.1.1.3194|2|11
1.3.6.1.2.1.25.5.1.1.1.3214|2|1627
1.3.6.1.2.1.25.5.1.1.1.3225|2|2718
1.3.6.1.2.1.25.5.1.1.1.3234|2|1
1.3.6.1.2.1.25.5.1.1.1.3235|2|1
1.3.6.1.2.1.25.5.1.1.1.3236|2|1
1.3.6.1.2.1.25.5.1.1.1.3237|2|0
1.3.6.1.2.1.25.5.1.1.1.3238|2|0
1.3.6.1.2.1.25.5.1.1.1.3243|2|0
1.3.6.1.2.1.25.5.1.1.1.3329|2|0
1.3.6.1.2.1.25.5.1.1.1.3373|2|0
1.3.6.1.2.1.25.5.1.1.1.3466|2|0
1.3.6.1.2.1.25.5.1.1.1.3532|2|0
1.3.6.1.2.1.25.5.1.1.1.3920|2|3611791
1.3.6.1.2.1.25.5.1.1.1.3921|2|5
1.3.6.1.2.1.25.5.1.1.1.3932|2|4
1.3.6.1.2.1.25.5.1.1.1.3968|2|0
1.3.6.1.2.1.25.5.1.1.1.3969|2|1649
1.3.6.1.2.1.25.5.1.1.1.3972|2|34
1.3.6.1.2.1.25.5.1.1.1.3977|2|0
1.3.6.1.2.1.25.5.1.1.1.3979|2|1580
1.3.6.1.2.1.25.5.1.1.1.3981|2|2324
1.3.6.1.2.1.25.5.1.1.1.3984|2|2117
1.3.6.1.2.1.25.5.1.1.1.3985|2|5577
1.3.6.1.2.1.25.5.1.1.1.3986|2|881
1.3.6.1.2.1.25.5.1.1.1.3988|2|14
1.3.6.1.2.1.25.5.1.1.1.3993|2|8008
1.3.6.1.2.1.25.5.1.1.1.3994|2|786
1.3.6.1.2.1.25.5.1.1.1.3995|2|702
1.3.6.1.2.1.25.5.1.1.1.3996|2|119
1.3.6.1.2.1.25.5.1.1.1.3997|2|582
1.3.6.1.2.1.25.5.1.1.1.3998|2|1040
1.3.6.1.2.1.25.5.1.1.1.3999|2|311
1.3.6.1.2.1.25.5.1.1.1.4004|2|148
1.3.6.1.2.1.25.5.1.1.1.4007|2|39
1.3.6.1.2.1.25.5.1.1.1.4008|2|0
1.3.6.1.2.1.25.5.1.1.1.4009|2|242
1.3.6.1.2.1.25.5.1.1.1.4010|2|17
1.3.6.1.2.1.25.5.1.1.1.4011|2|3
1.3.6.1.2.1.25.5.1.1.1.4012|2|5
1.3.6.1.2.1.25.5.1.1.1.4014|2|692
1.3.6.1.2.1.25.5.1.1.1.4016|2|12
1.3.6.1.2.1.25.5.1.1.1.4018|2|80
1.3.6.1.2.1.25.5.1.1.1.4019|2|275
1.3.6.1.2.1.25.5.1.1.1.4021|2|16
1.3.6.1.2.1.25.5.1.1.1.4026|2|103
1.3.6.1.2.1.25.5.1.1.1.4027|2|1
1.3.6.1.2.1.25.5.1.1.1.4031|2|230
1.3.6.1.2.1.25.5.1.1.1.4036|2|31
1.3.6.1.2.1.25.5.1.1.1.4037|2|2
1.3.6.1.2.1.25.5.1.1.1.4041|2|6
1.3.6.1.2.1.25.5.1.1.1.4045|2|25
1.3.6.1.2.1.25.5.1.1.1.4048|2|48
1.3.6.1.2.1.25.5.1.1.1.4049|2|12
1.3.6.1.2.1.25.5.1.1.1.4053|2|41
1.3.6.1.2.1.25.5.1.1.1.4054|2|6
1.3.6.1.2.1.25.5.1.1.1.4059|2|9
1.3.6.1.2.1.25.5.1.1.1.4063|2|4
1.3.6.1.2.1.25.5.1.1.1.4064|2|14
1.3.6.1.2.1.25.5.1.1.1.4132|2|93385
1.3.6.1.2.1.25.5.1.1.1.4138|2|0
1.3.6.1.2.1.25.5.1.1.1.4151|2|0
1.3.6.1.2.1.25.5.1.1.1.4155|2|1140524
1.3.6.1.2.1.25.5.1.1.1.8332|2|78
1.3.6.1.2.1.25.5.1.1.1.8337|2|79
1.3.6.1.2.1.25.5.1.1.1.11508|2|2
1.3.6.1.2.1.25.5.1.1.1.11511|2|1
1.3.6.1.2.1.25.5.1.1.1.14710|2|1488
1.3.6.1.2.1.25.5.1.1.1.14797|2|816
1.3.6.1.2.1.25.5.1.1.1.19461|2|3302
1.3.6.1.2.1.25.5.1.1.1.19802|2|331
1.3.6.1.2.1.25.5.1.1.1.20269|2|14
1.3.6.1.2.1.25.5.1.1.1.20571|2|3
1.3.6.1.2.1.25.5.1.1.1.20996|2|114
1.3.6.1.2.1.25.5.1.1.1.21620|2|17
1.3.6.1.2.1.25.5.1.1.1.22336|2|1800
1.3.6.1.2.1.25.5.1.1.1.22476|2|0
1.3.6.1.2.1.25.5.1.1.1.22477|2|79
1.3.6.1.2.1.25.5.1.1.1.22558|2|1171
1.3.6.1.2.1.25.5.1.1.2.1|2|76
1.3.6.1.2.1.25.5.1.1.2.2|2|0
1.3.6.1.2.1.25.5.1.1.2.3|2|0
1.3.6.1.2.1.25.5.1.1.2.4|2|0
1.3.6.1.2.1.25.5.1.1.2.5|2|0
1.3.6.1.2.1.25.5.1.1.2.6|2|0
1.3.6.1.2.1.25.5.1.1.2.7|2|0
1.3.6.1.2.1.25.5.1.1.2.8|2|0
1.3.6.1.2.1.25.5.1.1.2.9|2|0
1.3.6.1.2.1.25.5.1.1.2.87|2|0
1.3.6.1.2.1.25.5.1.1.2.88|2|0
1.3.6.1.2.1.25.5.1.1.2.89|2|0
1.3.6.1.2.1.25.5.1.1.2.184|2|0
1.3.6.1.2.1.25.5.1.1.2.185|2|0
1.3.6.1.2.1.25.5.1.1.2.186|2|0
1.3.6.1.2.1.25.5.1.1.2.187|2|0
1.3.6.1.2.1.25.5.1.1.2.190|2|0
1.3.6.1.2.1.25.5.1.1.2.192|2|0
1.3.6.1.2.1.25.5.1.1.2.204|2|0
1.3.6.1.2.1.25.5.1.1.2.220|2|0
1.3.6.1.2.1.25.5.1.1.2.221|2|0
1.3.6.1.2.1.25.5.1.1.2.222|2|0
1.3.6.1.2.1.25.5.1.1.2.223|2|0
1.3.6.1.2.1.25.5.1.1.2.224|2|0
1.3.6.1.2.1.25.5.1.1.2.225|2|0
1.3.6.1.2.1.25.5.1.1.2.226|2|0
1.3.6.1.2.1.25.5.1.1.2.227|2|0
1.3.6.1.2.1.25.5.1.1.2.228|2|0
1.3.6.1.2.1.25.5.1.1.2.229|2|0
1.3.6.1.2.1.25.5.1.1.2.230|2|0
1.3.6.1.2.1.25.5.1.1.2.231|2|0
1.3.6.1.2.1.25.5.1.1.2.232|2|0
1.3.6.1.2.1.25.5.1.1.2.233|2|0
1.3.6.1.2.1.25.5.1.1.2.234|2|0
1.3.6.1.2.1.25.5.1.1.2.903|2|0
1.3.6.1.2.1.25.5.1.1.2.904|2|0
1.3.6.1.2.1.25.5.1.1.2.940|2|0
1.3.6.1.2.1.25.5.1.1.2.941|2|0
1.3.6.1.2.1.25.5.1.1.2.969|2|0
1.3.6.1.2.1.25.5.1.1.2.970|2|0
1.3.6.1.2.1.25.5.1.1.2.975|2|0
1.3.6.1.2.1.25.5.1.1.2.976|2|0
1.3.6.1.2.1.25.5.1.1.2.1045|2|0
1.3.6.1.2.1.25.5.1.1.2.1046|2|0
1.3.6.1.2.1.25.5.1.1.2.1050|2|0
1.3.6.1.2.1.25.5.1.1.2.1119|2|512
1.3.6.1.2.1.25.5.1.1.2.2375|2|0
1.3.6.1.2.1.25.5.1.1.2.2452|2|0
1.3.6.1.2.1.25.5.1.1.2.2454|2|0
1.3.6.1.2.1.25.5.1.1.2.2497|2|616
1.3.6.1.2.1.25.5.1.1.2.2501|2|408
1.3.6.1.2.1.25.5.1.1.2.2918|2|452
1.3.6.1.2.1.25.5.1.1.2.2922|2|512
1.3.6.1.2.1.25.5.1.1.2.2991|2|448
1.3.6.1.2.1.25.5.1.1.2.2999|2|776
1.3.6.1.2.1.25.5.1.1.2.3002|2|9444
1.3.6.1.2.1.25.5.1.1.2.3032|2|124
1.3.6.1.2.1.25.5.1.1.2.3034|2|0
1.3.6.1.2.1.25.5.1.1.2.3035|2|0
1.3.6.1.2.1.25.5.1.1.2.3036|2|0
1.3.6.1.2.1.25.5.1.1.2.3037|2|0
1.3.6.1.2.1.25.5.1.1.2.3038|2|0
1.3.6.1.2.1.25.5.1.1.2.3039|2|0
1.3.6.1.2.1.25.5.1.1.2.3040|2|0
1.3.6.1.2.1.25.5.1.1.2.3041|2|0
1.3.6.1.2.1.25.5.1.1.2.3042|2|0
1.3.6.1.2.1.25.5.1.1.2.3043|2|0
1.3.6.1.2.1.25.5.1.1.2.3044|2|0
1.3.6.1.2.1.25.5.1.1.2.3045|2|0
1.3.6.1.2.1.25.5.1.1.2.3047|2|460
1.3.6.1.2.1.25.5.1.1.2.3050|2|1120
1.3.6.1.2.1.25.5.1.1.2.3055|2|492
1.3.6.1.2.1.25.5.1.1.2.3066|2|764
1.3.6.1.2.1.25.5.1.1.2.3068|2|708
1.3.6.1.2.1.25.5.1.1.2.3070|2|2468
1.3.6.1.2.1.25.5.1.1.2.3071|2|964
1.3.6.1.2.1.25.5.1.1.2.3077|2|788
1.3.6.1.2.1.25.5.1.1.2.3078|2|756
1.3.6.1.2.1.25.5.1.1.2.3079|2|756
1.3.6.1.2.1.25.5.1.1.2.3082|2|760
1.3.6.1.2.1.25.5.1.1.2.3083|2|900
1.3.6.1.2.1.25.5.1.1.2.3103|2|1504
1.3.6.1.2.1.25.5.1.1.2.3108|2|620
1.3.6.1.2.1.25.5.1.1.2.3110|2|304
1.3.6.1.2.1.25.5.1.1.2.3113|2|1068
1.3.6.1.2.1.25.5.1.1.2.3116|2|900
1.3.6.1.2.1.25.5.1.1.2.3194|2|1052
1.3.6.1.2.1.25.5.1.1.2.3214|2|568
1.3.6.1.2.1.25.5.1.1.2.3225|2|3072
1.3.6.1.2.1.25.5.1.1.2.3234|2|1996
1.3.6.1.2.1.25.5.1.1.2.3235|2|2000
1.3.6.1.2.1.25.5.1.1.2.3236|2|2000
1.3.6.1.2.1.25.5.1.1.2.3237|2|1992
1.3.6.1.2.1.25.5.1.1.2.3238|2|1884
1.3.6.1.2.1.25.5.1.1.2.3243|2|1108
1.3.6.1.2.1.25.5.1.1.2.3329|2|304
1.3.6.1.2.1.25.5.1.1.2.3373|2|2192
1.3.6.1.2.1.25.5.1.1.2.3466|2|460
1.3.6.1.2.1.25.5.1.1.2.3532|2|1048
1.3.6.1.2.1.25.5.1.1.2.3920|2|253164
1.3.6.1.2.1.25.5.1.1.2.3921|2|2860
1.3.6.1.2.1.25.5.1.1.2.3932|2|1280
1.3.6.1.2.1.25.5.1.1.2.3968|2|1012
1.3.6.1.2.1.25.5.1.1.2.3969|2|13604
1.3.6.1.2.1.25.5.1.1.2.3972|2|900
1.3.6.1.2.1.25.5.1.1.2.3977|2|760
1.3.6.1.2.1.25.5.1.1.2.3979|2|856
1.3.6.1.2.1.25.5.1.1.2.3981|2|5784
1.3.6.1.2.1.25.5.1.1.2.3984|2|5396
1.3.6.1.2.1.25.5.1.1.2.3985|2|10544
1.3.6.1.2.1.25.5.1.1.2.3986|2|11104
1.3.6.1.2.1.25.5.1.1.2.3988|2|4460
1.3.6.1.2.1.25.5.1.1.2.3993|2|11632
1.3.6.1.2.1.25.5.1.1.2.3994|2|4112
1.3.6.1.2.1.25.5.1.1.2.3995|2|3988
1.3.6.1.2.1.25.5.1.1.2.3996|2|4040
1.3.6.1.2.1.25.5.1.1.2.3997|2|4052
1.3.6.1.2.1.25.5.1.1.2.3998|2|4060
1.3.6.1.2.1.25.5.1.1.2.3999|2|4056
1.3.6.1.2.1.25.5.1.1.2.4004|2|4016
1.3.6.1.2.1.25.5.1.1.2.4007|2|7100
1.3.6.1.2.1.25.5.1.1.2.4008|2|1932
1.3.6.1.2.1.25.5.1.1.2.4009|2|4036
1.3.6.1.2.1.25.5.1.1.2.4010|2|2004
1.3.6.1.2.1.25.5.1.1.2.4011|2|1932
1.3.6.1.2.1.25.5.1.1.2.4012|2|1988
1.3.6.1.2.1.25.5.1.1.2.4014|2|4044
1.3.6.1.2.1.25.5.1.1.2.4016|2|2012
1.3.6.1.2.1.25.5.1.1.2.4018|2|7952
1.3.6.1.2.1.25.5.1.1.2.4019|2|4032
1.3.6.1.2.1.25.5.1.1.2.4021|2|2012
1.3.6.1.2.1.25.5.1.1.2.4026|2|4020
1.3.6.1.2.1.25.5.1.1.2.4027|2|1932
1.3.6.1.2.1.25.5.1.1.2.4031|2|3972
1.3.6.1.2.1.25.5.1.1.2.4036|2|3968
1.3.6.1.2.1.25.5.1.1.2.4037|2|1996
1.3.6.1.2.1.25.5.1.1.2.4041|2|1976
1.3.6.1.2.1.25.5.1.1.2.4045|2|2032
1.3.6.1.2.1.25.5.1.1.2.4048|2|4024
1.3.6.1.2.1.25.5.1.1.2.4049|2|2012
1.3.6.1.2.1.25.5.1.1.2.4053|2|3960
1.3.6.1.2.1.25.5.1.1.2.4054|2|2028
1.3.6.1.2.1.25.5.1.1.2.4059|2|1988
1.3.6.1.2.1.25.5.1.1.2.4063|2|1976
1.3.6.1.2.1.25.5.1.1.2.4064|2|2024
1.3.6.1.2.1.25.5.1.1.2.4132|2|36644
1.3.6.1.2.1.25.5.1.1.2.4138|2|1544
1.3.6.1.2.1.25.5.1.1.2.4151|2|1604
1.3.6.1.2.1.25.5.1.1.2.4155|2|180664
1.3.6.1.2.1.25.5.1.1.2.8332|2|1992
1.3.6.1.2.1.25.5.1.1.2.8337|2|1980
1.3.6.1.2.1.25.5.1.1.2.11508|2|1132
1.3.6.1.2.1.25.5.1.1.2.11511|2|1124
1.3.6.1.2.1.25.5.1.1.2.14710|2|51348
1.3.6.1.2.1.25.5.1.1.2.14797|2|42088
1.3.6.1.2.1.25.5.1.1.2.19461|2|2012
1.3.6.1.2.1.25.5.1.1.2.19802|2|6256
1.3.6.1.2.1.25.5.1.1.2.20269|2|4060
1.3.6.1.2.1.25.5.1.1.2.20571|2|1928
1.3.6.1.2.1.25.5.1.1.2.20996|2|6376
1.3.6.1.2.1.25.5.1.1.2.21620|2|3700
1.3.6.1.2.1.25.5.1.1.2.22336|2|9548
1.3.6.1.2.1.25.5.1.1.2.22476|2|1488
1.3.6.1.2.1.25.5.1.1.2.22477|2|2320
1.3.6.1.2.1.25.5.1.1.2.22558|2|7212
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|eth0
1.3.6.1.2.1.31.1.1.1.2.1|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.2.2|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.3.1|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.3.2|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.4.1|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.4.2|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.5.1|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.5.2|65:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.6.1|70:numeric|rate=100,deviation=100,cumulative=1
1.3.6.1.2.1.31.1.1.1.6.2|70:numeric|rate=90,deviation=100,cumulative=1
1.3.6.1.2.1.31.1.1.1.7.1|70:numeric|rate=10,deviation=6,cumulative=1
1.3.6.1.2.1.31.1.1.1.7.2|70:numeric|rate=20,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.8.1|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.8.2|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.9.1|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.9.2|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.10.1|70:numeric|rate=100,deviation=100,cumulative=1
1.3.6.1.2.1.31.1.1.1.10.2|70:numeric|rate=80,deviation=80,cumulative=1
1.3.6.1.2.1.31.1.1.1.11.1|70:numeric|rate=50,deviation=30,cumulative=1
1.3.6.1.2.1.31.1.1.1.11.2|70:numeric|rate=80,deviation=70,cumulative=1
1.3.6.1.2.1.31.1.1.1.12.1|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.12.2|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.13.1|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.13.2|70:numeric|rate=10,deviation=10,cumulative=1
1.3.6.1.2.1.31.1.1.1.15.1|66|10
1.3.6.1.2.1.31.1.1.1.15.2|66|100
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.2|2|2
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.5.0|67|0
1.3.6.1.2.1.55.1.1.0|2|2
1.3.6.1.2.1.55.1.2.0|2|64
1.3.6.1.2.1.55.1.3.0|66|2
1.3.6.1.2.1.55.1.5.1.2.1|4|lo
1.3.6.1.2.1.55.1.5.1.2.2|4|eth0
1.3.6.1.2.1.55.1.5.1.3.1|6|0.0
1.3.6.1.2.1.55.1.5.1.3.2|6|0.0
1.3.6.1.2.1.55.1.5.1.4.1|66|16436
1.3.6.1.2.1.55.1.5.1.4.2|66|1500
1.3.6.1.2.1.55.1.5.1.8.1|4|
1.3.6.1.2.1.55.1.5.1.8.2|4x|00127962f940
1.3.6.1.2.1.55.1.5.1.9.1|2|1
1.3.6.1.2.1.55.1.5.1.9.2|2|1
1.3.6.1.2.1.55.1.5.1.10.1|2|1
1.3.6.1.2.1.55.1.5.1.10.2|2|1
1.3.6.1.2.1.88.1.1.1.0|2|1
1.3.6.1.2.1.88.1.1.2.0|66|0
1.3.6.1.2.1.88.1.1.3.0|66|0
1.3.6.1.2.1.88.1.1.4.0|66|0
1.3.6.1.2.1.88.1.1.5.0|65|0
1.3.6.1.2.1.88.1.2.1.0|65|0
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1|6|1.3.6.1.2.1.2.2.1.1
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2|6|1.3.6.1.2.1.2.2.1.7
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3|6|1.3.6.1.2.1.2.2.1.8
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1|6|1.3.6.1.2.1.88.2.1.1
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2|6|1.3.6.1.2.1.88.2.1.2
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3|6|1.3.6.1.2.1.88.2.1.3
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4|6|1.3.6.1.2.1.88.2.1.4
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5|6|1.3.6.1.2.1.88.2.1.6
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1|6|1.3.6.1.2.1.88.2.1.1
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2|6|1.3.6.1.2.1.88.2.1.2
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3|6|1.3.6.1.2.1.88.2.1.3
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4|6|1.3.6.1.2.1.88.2.1.4
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5|6|1.3.6.1.2.1.88.2.1.5
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1|2|1
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2|2|1
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3|2|1
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5|2|2
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5|2|1
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4|
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4x|80
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.85.112|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.85.112|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|2|1
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|6|1.3.6.1.6.3.1.1.5.3
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.85.112|6|1.3.6.1.6.3.1.1.5.4
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|6|1.3.6.1.2.1.88.2.0.4
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|6|1.3.6.1.2.1.88.2.0.3
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|6|1.3.6.1.2.1.88.2.0.1
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|6|1.3.6.1.2.1.88.2.0.2
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4|_linkUpDown
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4|_linkUpDown
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4|_triggerFail
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4|_triggerFire
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4|_triggerFire
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4|_triggerFire
1.3.6.1.2.1.92.1.1.1.0|66|1000
1.3.6.1.2.1.92.1.1.2.0|66|1440
1.3.6.1.2.1.92.1.2.1.0|65|0
1.3.6.1.2.1.92.1.2.2.0|65|0
1.3.6.1.4.1.2021.4.1.0|2|0
1.3.6.1.4.1.2021.4.2.0|4|swap
1.3.6.1.4.1.2021.4.3.0|2|987988
1.3.6.1.4.1.2021.4.4.0|2:numeric|scale=1000000,rate=0.001,deviation=1000,function=sin,min=10000,max=987988
1.3.6.1.4.1.2021.4.5.0|2|1021976
1.3.6.1.4.1.2021.4.6.0|2:numeric|scale=1000000,rate=0.001,deviation=1000,function=cos,min=10000,max=1021976
1.3.6.1.4.1.2021.4.11.0|2:numeric|scale=1000000,rate=0.001,deviation=1000,function=cos,min=10219,max=1021976
1.3.6.1.4.1.2021.4.12.0|2|16000
1.3.6.1.4.1.2021.4.14.0|2|23936
1.3.6.1.4.1.2021.4.15.0|2|207212
1.3.6.1.4.1.2021.4.100.0|2|0
1.3.6.1.4.1.2021.4.101.0|4|
1.3.6.1.4.1.2021.10.1.1.1|2|1
1.3.6.1.4.1.2021.10.1.1.2|2|2
1.3.6.1.4.1.2021.10.1.1.3|2|3
1.3.6.1.4.1.2021.10.1.2.1|4|Load-1
1.3.6.1.4.1.2021.10.1.2.2|4|Load-5
1.3.6.1.4.1.2021.10.1.2.3|4|Load-15
1.3.6.1.4.1.2021.10.1.3.1|4:numeric|scale=15,rate=0.01,deviation=1,function=cos,min=0
1.3.6.1.4.1.2021.10.1.3.2|4:numeric|scale=10,rate=0.005,deviation=1,function=cos,min=0
1.3.6.1.4.1.2021.10.1.3.3|4:numeric|scale=8,rate=0.001,deviation=1,function=cos,min=0
1.3.6.1.4.1.2021.10.1.4.1|4|12.00
1.3.6.1.4.1.2021.10.1.4.2|4|12.00
1.3.6.1.4.1.2021.10.1.4.3|4|12.00
1.3.6.1.4.1.2021.10.1.5.1|2:numeric|scale=15,rate=0.01,deviation=1,function=cos,min=0
1.3.6.1.4.1.2021.10.1.5.2|2:numeric|scale=10,rate=0.01,deviation=1,function=cos,min=0
1.3.6.1.4.1.2021.10.1.5.3|2:numeric|scale=8,rate=0.01,deviation=1,function=cos,min=0
1.3.6.1.4.1.2021.10.1.6.1|68x|9f78043eeb851f
1.3.6.1.4.1.2021.10.1.6.2|68x|9f78043e051eb8
1.3.6.1.4.1.2021.10.1.6.3|68x|9f78043cf5c28f
1.3.6.1.4.1.2021.10.1.100.1|2|0
1.3.6.1.4.1.2021.10.1.100.2|2|0
1.3.6.1.4.1.2021.10.1.100.3|2|0
1.3.6.1.4.1.2021.10.1.101.1|4|
1.3.6.1.4.1.2021.10.1.101.2|4|
1.3.6.1.4.1.2021.10.1.101.3|4|
1.3.6.1.4.1.2021.11.1.0|2|1
1.3.6.1.4.1.2021.11.2.0|4|systemStats
1.3.6.1.4.1.2021.11.3.0|2|0
1.3.6.1.4.1.2021.11.4.0|2|0
1.3.6.1.4.1.2021.11.5.0|2|63
1.3.6.1.4.1.2021.11.6.0|2|0
1.3.6.1.4.1.2021.11.7.0|2|103
1.3.6.1.4.1.2021.11.8.0|2|937
1.3.6.1.4.1.2021.11.9.0|2:numeric|scale=100,rate=0.1,deviation=20,function=cos,min=0,max=100
1.3.6.1.4.1.2021.11.10.0|2:numeric|scale=100,rate=0.1,deviation=20,function=cos,min=0,max=100
1.3.6.1.4.1.2021.11.11.0|2:numeric|scale=100,rate=0.1,deviation=20,function=sin,min=0,max=100
1.3.6.1.4.1.2021.11.50.0|65:numeric|rate=200,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.51.0|65:numeric|rate=150,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.52.0|65:numeric|rate=100,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.53.0|65:numeric|rate=200,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.54.0|65:numeric|rate=50,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.55.0|65|0
1.3.6.1.4.1.2021.11.56.0|65:numeric|rate=100,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.57.0|65:numeric|rate=300,deviation=90,cumulative=1
1.3.6.1.4.1.2021.11.58.0|65:numeric|rate=200,deviation=90,cumulative=1
1.3.6.1.4.1.2021.11.59.0|65:numeric|rate=100,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.60.0|65:numeric|rate=250,deviation=100,cumulative=1
1.3.6.1.4.1.2021.11.61.0|65:numeric|rate=20,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.62.0|65:numeric|rate=20,deviation=10,cumulative=1
1.3.6.1.4.1.2021.11.63.0|65:numeric|rate=20,deviation=10,cumulative=1
1.3.6.1.4.1.2021.13.14.1.0|2|1
1.3.6.1.4.1.2021.16.1.0|2|50
1.3.6.1.4.1.2021.100.1.0|2|1
1.3.6.1.4.1.2021.100.2.0|4|5.4.2.1
1.3.6.1.4.1.2021.100.3.0|4|$Date: 2013/03/12 19:26:13 $
1.3.6.1.4.1.2021.100.4.0|4|Mon Oct 25 22:15:22 2010
1.3.6.1.4.1.2021.100.5.0|4|$Id: linux-full-walk.snmprec,v 1.1 2013/03/12 19:26:13 elie Exp $
1.3.6.1.4.1.2021.100.6.0|4|'--prefix=/usr' '--sysconfdir=/etc/snmp' '--mandir=/usr/man' '--enable-ipv6' '--disable-debugging' '--enable-static=no' '--with-libwrap' '--with-perl-modules' '--with-default-snmp-version=3' '--with-sys-contact=root@example.org' '--with-sys-location=unknown' '--with-logfile=/var/log/snmpd.log' '--with-persistent-directory=/var/lib/net-snmp' '--without-rpm' '--program-suffix=' '--program-prefix=' '--build=i486-slackware-linux' 'CFLAGS=-O2 -march=i486 -mtune=i686' 'build_alias=i486-slackware-linux'
1.3.6.1.4.1.2021.100.10.0|2|0
1.3.6.1.4.1.2021.100.11.0|2|0
1.3.6.1.4.1.2021.100.12.0|2|0
1.3.6.1.4.1.2021.100.13.0|2|0
1.3.6.1.4.1.2021.100.20.0|2|1
1.3.6.1.4.1.2021.101.1.0|2|0
1.3.6.1.4.1.2021.101.2.0|4|snmp
1.3.6.1.4.1.2021.101.100.0|2|0
1.3.6.1.4.1.2021.101.101.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.1.0.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.1.1.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.1.2.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.4.127|4|ip
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.5.127|4|icmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.6.127|4|tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.7.127|4|udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.1.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.2.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.3.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.4.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.5.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.6.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.7.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.8.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.1.127|4|if number
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.2.127|4|ifTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.25.127|4|ipv6IpForwarding
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.34.127|4|ipAddressTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.35.127|4|inetNetToMediaTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.13.127|4|tcpTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.19.127|4|tcpConnectionTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.20.127|4|tcpListenerTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.5.127|4|udpTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.7.127|4|udpEndpointTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.1.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.2.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.3.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.4.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.5.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.6.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.8.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.9.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.10.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.11.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.12.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.13.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.14.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.15.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.16.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.17.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.18.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.19.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.20.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.21.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.22.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.24.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.25.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.26.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.27.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.28.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.29.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.30.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.31.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.32.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.4.127|4|memory
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.11.127|4|vmstat
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.13.0.127|4|ipReasmTimeout
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.4.127|4|ipCidrRouteTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.7.127|4|inetCidrRouteTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.26.0.127|4|ipv6IpDefaultHopLimit
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.1.127|4|ipSystemStatsTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.1.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.2.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.3.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.4.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.5.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.6.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.7.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.2.2.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.4.1.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.1.127|4|ifXTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.5.127|4|ifTableLastChanged
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.1.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.2.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.3.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.4.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.63.1.2.127|4|schedTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.88.1.1.127|4|mteResource
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.100.127|4|memSwapError
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.101.127|4|memSwapErrMsg
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.16.1.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.1.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.2.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.3.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.4.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.5.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.6.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.10.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.11.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.12.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.13.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.20.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.1.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.2.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.100.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.101.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.4413.4.1.127|4|pass
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.1.127|4|target/snmpTargetSpinLock
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.4.127|4|snmpUnavailableContexts
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.5.127|4|snmpUnknownContexts
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.13.1.3.127|4|snmpNotifyFilterTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.16.1.1.127|4|vacm_context
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.1.9.1.2.1|4|mibII/sysORTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.1.9.1.3.1|4|mibII/sysORTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.1.9.1.4.1|4|mibII/sysORTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.1.127|4|mibII/at
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.2.127|4|mibII/at
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.3.127|4|mibII/at
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.1.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.2.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.3.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.4.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.5.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.1.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.2.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.3.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.4.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.5.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.6.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.7.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.8.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.9.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.10.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.11.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.12.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.13.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.1.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.2.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.3.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.4.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.24.6.0.127|4|route number
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.1.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.2.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.3.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.4.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.5.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.6.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.1.127|4|mibII/ipv6udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.2.127|4|mibII/ipv6udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.3.127|4|mibII/ipv6udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.1.127|4|mteTriggerFailures
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.2.127|4|mteTriggerTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.3.127|4|mteTriggerDeltaTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.4.127|4|mteTriggerExistenceTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.5.127|4|mteTriggerBooleanTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.6.127|4|mteTriggerThresholdTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.3.1.127|4|mteObjectsTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.2.127|4|mteEventTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.3.127|4|mteEventNotificationTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.4.127|4|mteEventSetTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.1.127|4|nlmLogTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.2.127|4|nlmLogVariableTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.1.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.2.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.3.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.4.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.5.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.100.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.101.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.102.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.103.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.1.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.2.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.3.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.100.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.101.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.102.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.103.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.1.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.2.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.3.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.4.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.5.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.6.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.7.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.8.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.9.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.10.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.100.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.101.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.1.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.2.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.3.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.4.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.5.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.6.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.100.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.101.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.13.14.1.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.1.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.2.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.3.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.4.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.100.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.101.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.2.1.127|4|nsModuleTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.1.127|4|nsCacheTimeout
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.2.127|4|nsCacheEnabled
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.3.127|4|tzCacheTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.8.1.127|4|nsTransactionTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.9.1.127|4|nsVacmAccessTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.1.1.6.1.127|4|snmpSetSerialNo
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.1.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.2.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.3.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.4.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.11.2.1.1.127|4|snmpv3/snmpMPDStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.11.2.1.2.127|4|snmpv3/snmpMPDStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.11.2.1.3.127|4|snmpv3/snmpMPDStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.1.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.2.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.3.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.4.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.5.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.6.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.2.1.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.16.1.5.1.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.1.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.2.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.3.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.4.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.5.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.6.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.7.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.1.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.2.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.3.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.4.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.5.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.6.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.1.127|4|host/hr_proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.2.127|4|host/hr_proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.4.1.1.127|4|host/hr_network
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.1.127|4|host/hr_print
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.2.127|4|host/hr_print
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.1.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.2.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.3.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.4.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.1.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.2.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.3.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.4.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.5.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.1.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.2.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.3.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.4.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.5.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.6.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.7.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.8.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.9.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.1.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.2.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.3.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.4.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.5.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.6.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.7.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.5.1.1.1.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.5.1.1.2.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.2.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.3.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.4.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.5.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.6.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.7.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.8.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.9.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.10.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.11.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.1.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.2.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.3.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.4.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.5.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.6.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.7.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.8.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.9.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.10.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.11.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.12.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.13.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.14.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.15.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.16.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.17.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.18.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.19.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.20.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.1.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.2.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.3.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.4.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.5.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.6.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.7.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.8.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.9.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.10.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.11.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.12.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.13.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.14.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.15.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.16.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.17.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.18.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.19.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.20.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.21.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.22.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.23.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.24.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.25.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.26.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.27.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.28.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.29.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.30.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.31.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.32.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.33.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.34.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.1.0.127|4|nlmConfigGlobalEntryLimit
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.2.0.127|4|nlmConfigGlobalAgeOut
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.1.0.127|4|nlmStatsGlobalNotificationsLogged
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.2.0.127|4|nlmStatsGlobalNotificationsBumped
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.1.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.2.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.3.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.4.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.5.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.6.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.7.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.8.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.9.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.10.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.11.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.100.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.101.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.1.127|4|nsExtendNumEntries
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.2.127|4|nsExtendConfigTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.3.127|4|nsExtendOut1Table
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.4.127|4|nsExtendOut2Table
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.1.127|4|nsDebugEnabled
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.2.127|4|nsDebugOutputAll
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.3.127|4|nsDebugDumpPdu
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.4.127|4|tzDebugTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.2.1.127|4|tzLoggingTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.2.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.3.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.4.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.5.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.6.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.7.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.8.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.9.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.2.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.3.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.4.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.5.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.6.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.7.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.2.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.3.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.4.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.5.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.1.127|4|snmpNotifyFilterProfileTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.2.127|4|snmpNotifyFilterProfileTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.3.127|4|snmpNotifyFilterProfileTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.3.127|4|mibII/vacm:sec2group
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.4.127|4|mibII/vacm:sec2group
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.5.127|4|mibII/vacm:sec2group
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.4.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.5.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.6.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.7.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.8.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.9.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.5.0.1.0.0|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.1.1.0|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.1.2.0|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.6.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.7.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.25.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.34.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.35.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.13.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.20.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.7.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.14.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.15.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.16.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.17.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.18.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.21.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.22.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.24.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.25.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.26.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.27.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.28.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.29.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.30.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.31.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.32.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.11.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.13.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.26.0.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.4.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.63.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.88.1.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.100.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.101.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.16.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.4413.4.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.13.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.16.1.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.1.9.1.2.1|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.1.9.1.3.1|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.1.9.1.4.1|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.24.6.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.3.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.102.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.103.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.102.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.103.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.13.14.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.2.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.8.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.9.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.1.1.6.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.11.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.11.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.11.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.2.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.16.1.5.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.4.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.5.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.5.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.14.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.15.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.16.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.17.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.18.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.14.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.15.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.16.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.17.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.18.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.21.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.22.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.23.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.24.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.25.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.26.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.27.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.28.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.29.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.30.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.31.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.32.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.33.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.34.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.1.0.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.2.0.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.1.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.2.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.3.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.2.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.6.0.1.0.0|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.1.1.0|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.1.2.0|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.6.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.7.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.25.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.34.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.35.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.13.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.19.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.20.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.7.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.14.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.15.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.16.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.17.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.18.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.19.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.21.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.22.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.24.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.25.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.26.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.27.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.28.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.29.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.30.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.31.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.32.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.11.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.13.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.7.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.26.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.2.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.4.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.63.1.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.88.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.100.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.101.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.16.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.4413.4.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.13.1.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.16.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.1.9.1.2.1|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.1.9.1.3.1|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.1.9.1.4.1|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.24.6.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.6.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.3.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.102.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.103.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.102.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.103.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.13.14.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.8.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.9.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.1.1.6.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.11.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.11.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.11.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.2.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.16.1.5.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.4.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.5.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.5.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.14.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.15.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.16.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.17.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.18.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.19.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.14.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.15.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.16.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.17.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.18.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.19.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.21.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.22.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.23.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.24.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.25.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.26.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.27.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.28.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.29.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.30.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.31.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.32.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.33.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.34.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.1.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.2.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.1.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.2.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.3.2.1.0|2|0
1.3.6.1.4.1.8072.1.5.1.0|2|5
1.3.6.1.4.1.8072.1.5.2.0|2|2
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.2.2|2|15
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.4|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.7|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.31.1|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.34|2|30
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.35|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.13|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.19|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.20|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.7|2|60
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.2.2|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.4|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.7|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.31.1|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.34|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.35|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.13|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.19|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.20|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.7|2|4
1.3.6.1.4.1.8072.1.7.1.1.0|2|1
1.3.6.1.4.1.8072.1.7.1.2.0|2|1
1.3.6.1.4.1.8072.1.7.1.3.0|2|2
1.3.6.1.4.1.8072.1.7.2.1.1.3.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103|2|3
1.3.6.1.4.1.8072.1.7.2.1.1.4.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103|2|0
1.3.6.1.4.1.8072.1.7.2.1.1.5.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|2|2
1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|2|2
1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|2|2
1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|4|all
1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|4|all
1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|4|all
1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|4|_all_
1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|4|_all_
1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|4|_all_
1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|2|4
1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|2|1
1.3.6.1.6.3.1.1.6.1.0|2|989152178
1.3.6.1.6.3.10.2.1.1.0|4x|80001f888092c37021529f4647
1.3.6.1.6.3.10.2.1.2.0|2|58
1.3.6.1.6.3.10.2.1.3.0|2|2334420
1.3.6.1.6.3.10.2.1.4.0|2|1500
1.3.6.1.6.3.11.2.1.1.0|65|0
1.3.6.1.6.3.11.2.1.2.0|65|0
1.3.6.1.6.3.11.2.1.3.0|65|0
1.3.6.1.6.3.12.1.1.0|2|0
1.3.6.1.6.3.12.1.4.0|65|0
1.3.6.1.6.3.12.1.5.0|65|0
1.3.6.1.6.3.15.1.1.1.0|65|0
1.3.6.1.6.3.15.1.1.2.0|65|0
1.3.6.1.6.3.15.1.1.3.0|65|0
1.3.6.1.6.3.15.1.1.4.0|65|37
1.3.6.1.6.3.15.1.1.5.0|65|3
1.3.6.1.6.3.15.1.1.6.0|65|0
1.3.6.1.6.3.15.1.2.1.0|2|0
1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|test-user
1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|test-user-aes
1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|6|0.0
1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|6|0.0
1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|6|1.3.6.1.6.3.10.1.1.2
1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|6|1.3.6.1.6.3.10.1.1.2
1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|6|1.3.6.1.6.3.10.1.2.2
1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|6|1.3.6.1.6.3.10.1.2.4
1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|2|3
1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|3
1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|2|1
1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|1
1.3.6.1.6.3.16.1.1.1.1.0|4|
1.3.6.1.6.3.16.1.2.1.3.1.5.108.111.99.97.108|4|MyRWGroup
1.3.6.1.6.3.16.1.2.1.3.2.5.108.111.99.97.108|4|MyRWGroup
1.3.6.1.6.3.16.1.2.1.3.3.9.116.101.115.116.45.117.115.101.114|4|MyRWGroup
1.3.6.1.6.3.16.1.2.1.3.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|grptest_user_aes
1.3.6.1.6.3.16.1.2.1.4.1.5.108.111.99.97.108|2|4
1.3.6.1.6.3.16.1.2.1.4.2.5.108.111.99.97.108|2|4
1.3.6.1.6.3.16.1.2.1.4.3.9.116.101.115.116.45.117.115.101.114|2|4
1.3.6.1.6.3.16.1.2.1.4.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|4
1.3.6.1.6.3.16.1.2.1.5.1.5.108.111.99.97.108|2|1
1.3.6.1.6.3.16.1.2.1.5.2.5.108.111.99.97.108|2|1
1.3.6.1.6.3.16.1.2.1.5.3.9.116.101.115.116.45.117.115.101.114|2|1
1.3.6.1.6.3.16.1.2.1.5.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|1
1.3.6.1.6.3.16.1.4.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1|2|1
1.3.6.1.6.3.16.1.4.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|2|2
1.3.6.1.6.3.16.1.4.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1|4|all
1.3.6.1.6.3.16.1.4.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|4|_all_
1.3.6.1.6.3.16.1.4.1.6.9.77.121.82.87.71.114.111.117.112.0.0.1|4|all
1.3.6.1.6.3.16.1.4.1.6.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|4|_all_
1.3.6.1.6.3.16.1.4.1.7.9.77.121.82.87.71.114.111.117.112.0.0.1|4|all
1.3.6.1.6.3.16.1.4.1.7.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|4|_all_
1.3.6.1.6.3.16.1.4.1.8.9.77.121.82.87.71.114.111.117.112.0.0.1|2|4
1.3.6.1.6.3.16.1.4.1.8.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|2|4
1.3.6.1.6.3.16.1.4.1.9.9.77.121.82.87.71.114.111.117.112.0.0.1|2|1
1.3.6.1.6.3.16.1.4.1.9.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|2|1
1.3.6.1.6.3.16.1.5.1.0|2|0
1.3.6.1.6.3.16.1.5.2.1.3.3.97.108.108.1.1|4x|80
1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.0|4|
1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.0|4|
1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|4|
1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.4.3.97.108.108.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.0|2|1
1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.0|2|2
1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.1|2|2
1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.2|2|2
1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|2|1
1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.5.3.97.108.108.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.0|2|4
1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.2|2|4
1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.0|2|4
1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.2|2|4
1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|2|4
1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.6.3.97.108.108.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.0|2|1
1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.0|2|1
1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|2|1
1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|2|1
snmpsim-0.4.5/data/hp_perf.snmprec 0000664 0063214 0063214 00000165021 13127543543 017351 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4x|50726f4375727665204a39303231412053776974636820323831302d3234472c207265766973696f6e204e2e31312e37352c20524f4d204e2e31302e303120282f73772f636f64652f6275696c642f6261737329
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11.2.3.7.11.63
1.3.6.1.2.1.1.3.0|67|931440500
1.3.6.1.2.1.1.4.0|4|
1.3.6.1.2.1.1.5.0|4x|50726f43757276652053776974636820323831302d323447
1.3.6.1.2.1.1.6.0|4|
1.3.6.1.2.1.1.7.0|2|74
1.3.6.1.2.1.2.1.0|2|32
# test
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.4.22.1.2.30.10.10.10.10|4x|0b16212c3742
1.3.6.1.2.1.4.22.1.2.30.10.10.10.11|4x|0b16212c3743
1.3.6.1.2.1.4.22.1.2.30.10.10.10.12|4x|0b16212c3744
1.3.6.1.2.1.4.22.1.2.30.10.10.10.13|4x|0b16212c3745
1.3.6.1.2.1.4.22.1.2.30.10.10.10.14|4x|0b16212c3746
1.3.6.1.2.1.4.22.1.2.30.10.10.10.15|4x|0b16212c3747
1.3.6.1.2.1.4.22.1.2.30.10.10.10.16|4x|0b16212c3748
1.3.6.1.2.1.4.22.1.2.30.10.10.10.17|4x|0b16212c3749
1.3.6.1.2.1.4.22.1.2.30.10.10.10.18|4x|0b16212c374a
1.3.6.1.2.1.4.22.1.2.30.10.10.10.19|4x|0b16212c374b
1.3.6.1.2.1.4.22.1.2.31.10.10.10.20|4x|0b16212c374c
1.3.6.1.2.1.4.22.1.2.31.10.10.10.21|4x|0b16212c374d
1.3.6.1.2.1.4.22.1.2.31.10.10.10.22|4x|0b16212c374e
1.3.6.1.2.1.4.22.1.2.31.10.10.10.23|4x|0b16212c374f
1.3.6.1.2.1.4.22.1.2.31.10.10.10.24|4x|0b16212c3750
1.3.6.1.2.1.4.22.1.2.31.10.10.10.25|4x|0b16212c3751
1.3.6.1.2.1.4.22.1.2.31.10.10.10.26|4x|0b16212c3752
1.3.6.1.2.1.4.22.1.2.31.10.10.10.27|4x|0b16212c3753
1.3.6.1.2.1.4.22.1.2.31.10.10.10.28|4x|0b16212c3754
1.3.6.1.2.1.4.22.1.2.31.10.10.10.29|4x|0b16212c3755
1.3.6.1.2.1.4.22.1.2.32.10.10.10.30|4x|0b16212c3756
1.3.6.1.2.1.4.22.1.2.32.10.10.10.31|4x|0b16212c3757
1.3.6.1.2.1.4.22.1.2.32.10.10.10.32|4x|0b16212c3758
1.3.6.1.2.1.4.22.1.2.32.10.10.10.33|4x|0b16212c3759
1.3.6.1.2.1.4.22.1.2.32.10.10.10.34|4x|0b16212c375a
1.3.6.1.2.1.4.22.1.2.32.10.10.10.35|4x|0b16212c375b
1.3.6.1.2.1.4.22.1.2.32.10.10.10.36|4x|0b16212c375c
1.3.6.1.2.1.4.22.1.2.32.10.10.10.37|4x|0b16212c375d
1.3.6.1.2.1.4.22.1.2.32.10.10.10.38|4x|0b16212c375e
1.3.6.1.2.1.4.22.1.2.32.10.10.10.39|4x|0b16212c375f
1.3.6.1.2.1.4.22.1.2.33.10.10.10.40|4x|0b16212c3760
1.3.6.1.2.1.4.22.1.2.33.10.10.10.41|4x|0b16212c3761
1.3.6.1.2.1.4.22.1.2.33.10.10.10.42|4x|0b16212c3762
1.3.6.1.2.1.4.22.1.2.33.10.10.10.43|4x|0b16212c3763
1.3.6.1.2.1.4.22.1.2.33.10.10.10.44|4x|0b16212c3800
1.3.6.1.2.1.4.22.1.2.33.10.10.10.45|4x|0b16212c3801
1.3.6.1.2.1.4.22.1.2.33.10.10.10.46|4x|0b16212c3802
1.3.6.1.2.1.4.22.1.2.33.10.10.10.47|4x|0b16212c3803
1.3.6.1.2.1.4.22.1.2.33.10.10.10.48|4x|0b16212c3804
1.3.6.1.2.1.4.22.1.2.33.10.10.10.49|4x|0b16212c3805
1.3.6.1.2.1.4.22.1.2.34.10.10.10.50|4x|0b16212c3806
1.3.6.1.2.1.4.22.1.2.34.10.10.10.51|4x|0b16212c3807
1.3.6.1.2.1.4.22.1.2.34.10.10.10.52|4x|0b16212c3808
1.3.6.1.2.1.4.22.1.2.34.10.10.10.53|4x|0b16212c3809
1.3.6.1.2.1.4.22.1.2.34.10.10.10.54|4x|0b16212c380a
1.3.6.1.2.1.4.22.1.2.34.10.10.10.55|4x|0b16212c380b
1.3.6.1.2.1.4.22.1.2.34.10.10.10.56|4x|0b16212c380c
1.3.6.1.2.1.4.22.1.2.34.10.10.10.57|4x|0b16212c380d
1.3.6.1.2.1.4.22.1.2.34.10.10.10.58|4x|0b16212c380e
1.3.6.1.2.1.4.22.1.2.34.10.10.10.59|4x|0b16212c380f
1.3.6.1.2.1.4.22.1.2.35.10.10.10.60|4x|0b16212c3810
1.3.6.1.2.1.4.22.1.2.35.10.10.10.61|4x|0b16212c3811
1.3.6.1.2.1.4.22.1.2.35.10.10.10.62|4x|0b16212c3812
1.3.6.1.2.1.4.22.1.2.35.10.10.10.63|4x|0b16212c3813
1.3.6.1.2.1.4.22.1.2.35.10.10.10.64|4x|0b16212c3814
1.3.6.1.2.1.4.22.1.2.35.10.10.10.65|4x|0b16212c3815
1.3.6.1.2.1.4.22.1.2.35.10.10.10.66|4x|0b16212c3816
1.3.6.1.2.1.4.22.1.2.35.10.10.10.67|4x|0b16212c3817
1.3.6.1.2.1.4.22.1.2.35.10.10.10.68|4x|0b16212c3818
1.3.6.1.2.1.4.22.1.2.35.10.10.10.69|4x|0b16212c3819
1.3.6.1.2.1.4.22.1.2.36.10.10.10.70|4x|0b16212c381a
1.3.6.1.2.1.4.22.1.2.36.10.10.10.71|4x|0b16212c381b
1.3.6.1.2.1.4.22.1.2.36.10.10.10.72|4x|0b16212c381c
1.3.6.1.2.1.4.22.1.2.36.10.10.10.73|4x|0b16212c381d
1.3.6.1.2.1.4.22.1.2.36.10.10.10.74|4x|0b16212c381e
1.3.6.1.2.1.4.22.1.2.36.10.10.10.75|4x|0b16212c381f
1.3.6.1.2.1.4.22.1.2.36.10.10.10.76|4x|0b16212c3820
1.3.6.1.2.1.4.22.1.2.36.10.10.10.77|4x|0b16212c3821
1.3.6.1.2.1.4.22.1.2.36.10.10.10.78|4x|0b16212c3822
1.3.6.1.2.1.4.22.1.2.36.10.10.10.79|4x|0b16212c3823
1.3.6.1.2.1.4.22.1.2.37.10.10.10.80|4x|0b16212c3824
1.3.6.1.2.1.4.22.1.2.37.10.10.10.81|4x|0b16212c3825
1.3.6.1.2.1.4.22.1.2.37.10.10.10.82|4x|0b16212c3826
1.3.6.1.2.1.4.22.1.2.37.10.10.10.83|4x|0b16212c3827
1.3.6.1.2.1.4.22.1.2.37.10.10.10.84|4x|0b16212c3828
1.3.6.1.2.1.4.22.1.2.37.10.10.10.85|4x|0b16212c3829
1.3.6.1.2.1.4.22.1.2.37.10.10.10.86|4x|0b16212c382a
1.3.6.1.2.1.4.22.1.2.37.10.10.10.87|4x|0b16212c382b
1.3.6.1.2.1.4.22.1.2.37.10.10.10.88|4x|0b16212c382c
1.3.6.1.2.1.4.22.1.2.37.10.10.10.89|4x|0b16212c382d
1.3.6.1.2.1.4.22.1.2.38.10.10.10.90|4x|0b16212c382e
1.3.6.1.2.1.4.22.1.2.38.10.10.10.91|4x|0b16212c382f
1.3.6.1.2.1.4.22.1.2.38.10.10.10.92|4x|0b16212c3830
1.3.6.1.2.1.4.22.1.2.38.10.10.10.93|4x|0b16212c3831
1.3.6.1.2.1.4.22.1.2.38.10.10.10.94|4x|0b16212c3832
1.3.6.1.2.1.4.22.1.2.38.10.10.10.95|4x|0b16212c3833
1.3.6.1.2.1.4.22.1.2.38.10.10.10.96|4x|0b16212c3834
1.3.6.1.2.1.4.22.1.2.38.10.10.10.97|4x|0b16212c3835
1.3.6.1.2.1.4.22.1.2.38.10.10.10.98|4x|0b16212c3836
1.3.6.1.2.1.4.22.1.2.38.10.10.10.99|4x|0b16212c3837
1.3.6.1.2.1.4.22.1.2.39.10.10.10.100|4x|0b16212c3838
1.3.6.1.2.1.4.22.1.2.39.10.10.10.101|4x|0b16212c3839
1.3.6.1.2.1.4.22.1.2.39.10.10.10.102|4x|0b16212c383a
1.3.6.1.2.1.4.22.1.2.39.10.10.10.103|4x|0b16212c383b
1.3.6.1.2.1.4.22.1.2.39.10.10.10.104|4x|0b16212c383c
1.3.6.1.2.1.4.22.1.2.39.10.10.10.105|4x|0b16212c383d
1.3.6.1.2.1.4.22.1.2.39.10.10.10.106|4x|0b16212c383e
1.3.6.1.2.1.4.22.1.2.39.10.10.10.107|4x|0b16212c383f
1.3.6.1.2.1.4.22.1.2.39.10.10.10.108|4x|0b16212c3840
1.3.6.1.2.1.4.22.1.2.39.10.10.10.109|4x|0b16212c3841
1.3.6.1.2.1.4.22.1.2.40.10.10.10.110|4x|0b16212c3842
1.3.6.1.2.1.4.22.1.2.40.10.10.10.111|4x|0b16212c3843
1.3.6.1.2.1.4.22.1.2.40.10.10.10.112|4x|0b16212c3844
1.3.6.1.2.1.4.22.1.2.40.10.10.10.113|4x|0b16212c3845
1.3.6.1.2.1.4.22.1.2.40.10.10.10.114|4x|0b16212c3846
1.3.6.1.2.1.4.22.1.2.40.10.10.10.115|4x|0b16212c3847
1.3.6.1.2.1.4.22.1.2.40.10.10.10.116|4x|0b16212c3848
1.3.6.1.2.1.4.22.1.2.40.10.10.10.117|4x|0b16212c3849
1.3.6.1.2.1.4.22.1.2.40.10.10.10.118|4x|0b16212c384a
1.3.6.1.2.1.4.22.1.2.40.10.10.10.119|4x|0b16212c384b
1.3.6.1.2.1.4.22.1.2.41.10.10.10.120|4x|0b16212c384c
1.3.6.1.2.1.4.22.1.2.41.10.10.10.121|4x|0b16212c384d
1.3.6.1.2.1.4.22.1.2.41.10.10.10.122|4x|0b16212c384e
1.3.6.1.2.1.4.22.1.2.41.10.10.10.123|4x|0b16212c384f
1.3.6.1.2.1.4.22.1.2.41.10.10.10.124|4x|0b16212c3850
1.3.6.1.2.1.4.22.1.2.41.10.10.10.125|4x|0b16212c3851
1.3.6.1.2.1.4.22.1.2.41.10.10.10.126|4x|0b16212c3852
1.3.6.1.2.1.4.22.1.2.41.10.10.10.127|4x|0b16212c3853
1.3.6.1.2.1.4.22.1.2.41.10.10.10.128|4x|0b16212c3854
1.3.6.1.2.1.4.22.1.2.41.10.10.10.129|4x|0b16212c3855
1.3.6.1.2.1.4.22.1.2.42.10.10.10.130|4x|0b16212c3856
1.3.6.1.2.1.4.22.1.2.42.10.10.10.131|4x|0b16212c3857
1.3.6.1.2.1.4.22.1.2.42.10.10.10.132|4x|0b16212c3858
1.3.6.1.2.1.4.22.1.2.42.10.10.10.133|4x|0b16212c3859
1.3.6.1.2.1.4.22.1.2.42.10.10.10.134|4x|0b16212c385a
1.3.6.1.2.1.4.22.1.2.42.10.10.10.135|4x|0b16212c385b
1.3.6.1.2.1.4.22.1.2.42.10.10.10.136|4x|0b16212c385c
1.3.6.1.2.1.4.22.1.2.42.10.10.10.137|4x|0b16212c385d
1.3.6.1.2.1.4.22.1.2.42.10.10.10.138|4x|0b16212c385e
1.3.6.1.2.1.4.22.1.2.42.10.10.10.139|4x|0b16212c385f
1.3.6.1.2.1.4.22.1.2.43.10.10.10.140|4x|0b16212c3860
1.3.6.1.2.1.4.22.1.2.43.10.10.10.141|4x|0b16212c3861
1.3.6.1.2.1.4.22.1.2.43.10.10.10.142|4x|0b16212c3862
1.3.6.1.2.1.4.22.1.2.43.10.10.10.143|4x|0b16212c3863
1.3.6.1.2.1.4.22.1.2.43.10.10.10.144|4x|0b16212c3900
1.3.6.1.2.1.4.22.1.2.43.10.10.10.145|4x|0b16212c3901
1.3.6.1.2.1.4.22.1.2.43.10.10.10.146|4x|0b16212c3902
1.3.6.1.2.1.4.22.1.2.43.10.10.10.147|4x|0b16212c3903
1.3.6.1.2.1.4.22.1.2.43.10.10.10.148|4x|0b16212c3904
1.3.6.1.2.1.4.22.1.2.43.10.10.10.149|4x|0b16212c3905
1.3.6.1.2.1.4.22.1.2.44.10.10.10.150|4x|0b16212c3906
1.3.6.1.2.1.4.22.1.2.44.10.10.10.151|4x|0b16212c3907
1.3.6.1.2.1.4.22.1.2.44.10.10.10.152|4x|0b16212c3908
1.3.6.1.2.1.4.22.1.2.44.10.10.10.153|4x|0b16212c3909
1.3.6.1.2.1.4.22.1.2.44.10.10.10.154|4x|0b16212c390a
1.3.6.1.2.1.4.22.1.2.44.10.10.10.155|4x|0b16212c390b
1.3.6.1.2.1.4.22.1.2.44.10.10.10.156|4x|0b16212c390c
1.3.6.1.2.1.4.22.1.2.44.10.10.10.157|4x|0b16212c390d
1.3.6.1.2.1.4.22.1.2.44.10.10.10.158|4x|0b16212c390e
1.3.6.1.2.1.4.22.1.2.44.10.10.10.159|4x|0b16212c390f
1.3.6.1.2.1.4.22.1.2.45.10.10.10.160|4x|0b16212c3910
1.3.6.1.2.1.4.22.1.2.45.10.10.10.161|4x|0b16212c3911
1.3.6.1.2.1.4.22.1.2.45.10.10.10.162|4x|0b16212c3912
1.3.6.1.2.1.4.22.1.2.45.10.10.10.163|4x|0b16212c3913
1.3.6.1.2.1.4.22.1.2.45.10.10.10.164|4x|0b16212c3914
1.3.6.1.2.1.4.22.1.2.45.10.10.10.165|4x|0b16212c3915
1.3.6.1.2.1.4.22.1.2.45.10.10.10.166|4x|0b16212c3916
1.3.6.1.2.1.4.22.1.2.45.10.10.10.167|4x|0b16212c3917
1.3.6.1.2.1.4.22.1.2.45.10.10.10.168|4x|0b16212c3918
1.3.6.1.2.1.4.22.1.2.45.10.10.10.169|4x|0b16212c3919
1.3.6.1.2.1.4.22.1.2.46.10.10.10.170|4x|0b16212c391a
1.3.6.1.2.1.4.22.1.2.46.10.10.10.171|4x|0b16212c391b
1.3.6.1.2.1.4.22.1.2.46.10.10.10.172|4x|0b16212c391c
1.3.6.1.2.1.4.22.1.2.46.10.10.10.173|4x|0b16212c391d
1.3.6.1.2.1.4.22.1.2.46.10.10.10.174|4x|0b16212c391e
1.3.6.1.2.1.4.22.1.2.46.10.10.10.175|4x|0b16212c391f
1.3.6.1.2.1.4.22.1.2.46.10.10.10.176|4x|0b16212c3920
1.3.6.1.2.1.4.22.1.2.46.10.10.10.177|4x|0b16212c3921
1.3.6.1.2.1.4.22.1.2.46.10.10.10.178|4x|0b16212c3922
1.3.6.1.2.1.4.22.1.2.46.10.10.10.179|4x|0b16212c3923
1.3.6.1.2.1.4.22.1.2.47.10.10.10.180|4x|0b16212c3924
1.3.6.1.2.1.4.22.1.2.47.10.10.10.181|4x|0b16212c3925
1.3.6.1.2.1.4.22.1.2.47.10.10.10.182|4x|0b16212c3926
1.3.6.1.2.1.4.22.1.2.47.10.10.10.183|4x|0b16212c3927
1.3.6.1.2.1.4.22.1.2.47.10.10.10.184|4x|0b16212c3928
1.3.6.1.2.1.4.22.1.2.47.10.10.10.185|4x|0b16212c3929
1.3.6.1.2.1.4.22.1.2.47.10.10.10.186|4x|0b16212c392a
1.3.6.1.2.1.4.22.1.2.47.10.10.10.187|4x|0b16212c392b
1.3.6.1.2.1.4.22.1.2.47.10.10.10.188|4x|0b16212c392c
1.3.6.1.2.1.4.22.1.2.47.10.10.10.189|4x|0b16212c392d
1.3.6.1.2.1.4.22.1.2.48.10.10.10.190|4x|0b16212c392e
1.3.6.1.2.1.4.22.1.2.48.10.10.10.191|4x|0b16212c392f
1.3.6.1.2.1.4.22.1.2.48.10.10.10.192|4x|0b16212c3930
1.3.6.1.2.1.4.22.1.2.48.10.10.10.193|4x|0b16212c3931
1.3.6.1.2.1.4.22.1.2.48.10.10.10.194|4x|0b16212c3932
1.3.6.1.2.1.4.22.1.2.48.10.10.10.195|4x|0b16212c3933
1.3.6.1.2.1.4.22.1.2.48.10.10.10.196|4x|0b16212c3934
1.3.6.1.2.1.4.22.1.2.48.10.10.10.197|4x|0b16212c3935
1.3.6.1.2.1.4.22.1.2.48.10.10.10.198|4x|0b16212c3936
1.3.6.1.2.1.4.22.1.2.48.10.10.10.199|4x|0b16212c3937
1.3.6.1.2.1.4.22.1.2.49.10.10.10.200|4x|0b16212c3938
1.3.6.1.2.1.4.22.1.2.49.10.10.10.201|4x|0b16212c3939
1.3.6.1.2.1.4.22.1.2.49.10.10.10.202|4x|0b16212c393a
1.3.6.1.2.1.4.22.1.2.49.10.10.10.203|4x|0b16212c393b
1.3.6.1.2.1.4.22.1.2.49.10.10.10.204|4x|0b16212c393c
1.3.6.1.2.1.4.22.1.2.49.10.10.10.205|4x|0b16212c393d
1.3.6.1.2.1.4.22.1.2.49.10.10.10.206|4x|0b16212c393e
1.3.6.1.2.1.4.22.1.2.49.10.10.10.207|4x|0b16212c393f
1.3.6.1.2.1.4.22.1.2.49.10.10.10.208|4x|0b16212c3940
1.3.6.1.2.1.4.22.1.2.49.10.10.10.209|4x|0b16212c3941
1.3.6.1.2.1.4.22.1.2.50.10.10.10.210|4x|0b16212c3942
1.3.6.1.2.1.4.22.1.2.50.10.10.10.211|4x|0b16212c3943
1.3.6.1.2.1.4.22.1.2.50.10.10.10.212|4x|0b16212c3944
1.3.6.1.2.1.4.22.1.2.50.10.10.10.213|4x|0b16212c3945
1.3.6.1.2.1.4.22.1.2.50.10.10.10.214|4x|0b16212c3946
1.3.6.1.2.1.4.22.1.2.50.10.10.10.215|4x|0b16212c3947
1.3.6.1.2.1.4.22.1.2.50.10.10.10.216|4x|0b16212c3948
1.3.6.1.2.1.4.22.1.2.50.10.10.10.217|4x|0b16212c3949
1.3.6.1.2.1.4.22.1.2.50.10.10.10.218|4x|0b16212c394a
1.3.6.1.2.1.4.22.1.2.50.10.10.10.219|4x|0b16212c394b
1.3.6.1.2.1.4.22.1.2.51.10.10.10.220|4x|0b16212c394c
1.3.6.1.2.1.4.22.1.2.51.10.10.10.221|4x|0b16212c394d
1.3.6.1.2.1.4.22.1.2.51.10.10.10.222|4x|0b16212c394e
1.3.6.1.2.1.4.22.1.2.51.10.10.10.223|4x|0b16212c394f
1.3.6.1.2.1.4.22.1.2.51.10.10.10.224|4x|0b16212c3950
1.3.6.1.2.1.4.22.1.2.51.10.10.10.225|4x|0b16212c3951
1.3.6.1.2.1.4.22.1.2.51.10.10.10.226|4x|0b16212c3952
1.3.6.1.2.1.4.22.1.2.51.10.10.10.227|4x|0b16212c3953
1.3.6.1.2.1.4.22.1.2.51.10.10.10.228|4x|0b16212c3954
1.3.6.1.2.1.4.22.1.2.51.10.10.10.229|4x|0b16212c3955
1.3.6.1.2.1.4.22.1.2.52.10.10.10.230|4x|0b16212c3956
1.3.6.1.2.1.4.22.1.2.52.10.10.10.231|4x|0b16212c3957
1.3.6.1.2.1.4.22.1.2.52.10.10.10.232|4x|0b16212c3958
1.3.6.1.2.1.4.22.1.2.52.10.10.10.233|4x|0b16212c3959
1.3.6.1.2.1.4.22.1.2.52.10.10.10.234|4x|0b16212c395a
1.3.6.1.2.1.4.22.1.2.52.10.10.10.235|4x|0b16212c395b
1.3.6.1.2.1.4.22.1.2.52.10.10.10.236|4x|0b16212c395c
1.3.6.1.2.1.4.22.1.2.52.10.10.10.237|4x|0b16212c395d
1.3.6.1.2.1.4.22.1.2.52.10.10.10.238|4x|0b16212c395e
1.3.6.1.2.1.4.22.1.2.52.10.10.10.239|4x|0b16212c395f
1.3.6.1.2.1.4.22.1.2.53.10.10.10.240|4x|0b16212c3960
1.3.6.1.2.1.4.22.1.2.53.10.10.10.241|4x|0b16212c3961
1.3.6.1.2.1.4.22.1.2.53.10.10.10.242|4x|0b16212c3962
1.3.6.1.2.1.4.22.1.2.53.10.10.10.243|4x|0b16212c3963
1.3.6.1.2.1.4.22.1.2.53.10.10.10.244|4x|0b16212c3a00
1.3.6.1.2.1.4.22.1.2.53.10.10.10.245|4x|0b16212c3a01
1.3.6.1.2.1.4.22.1.2.53.10.10.10.246|4x|0b16212c3a02
1.3.6.1.2.1.4.22.1.2.53.10.10.10.247|4x|0b16212c3a03
1.3.6.1.2.1.4.22.1.2.53.10.10.10.248|4x|0b16212c3a04
1.3.6.1.2.1.4.22.1.2.53.10.10.10.249|4x|0b16212c3a05
1.3.6.1.2.1.4.22.1.2.54.10.10.10.250|4x|0b16212c3a06
1.3.6.1.2.1.4.22.1.2.54.10.10.10.251|4x|0b16212c3a07
1.3.6.1.2.1.4.22.1.2.54.10.10.10.252|4x|0b16212c3a08
1.3.6.1.2.1.4.22.1.2.54.10.10.10.253|4x|0b16212c3a09
1.3.6.1.2.1.4.22.1.2.54.10.10.10.254|4x|0b16212c3a0a
1.3.6.1.2.1.4.22.1.2.54.10.10.10.255|4x|0b16212c3a0b
1.3.6.1.2.1.4.22.1.2.54.10.10.11.0|4x|0b16212c3a0c
1.3.6.1.2.1.4.22.1.2.54.10.10.11.1|4x|0b16212c3a0d
1.3.6.1.2.1.4.22.1.2.54.10.10.11.2|4x|0b16212c3a0e
1.3.6.1.2.1.4.22.1.2.54.10.10.11.3|4x|0b16212c3a0f
1.3.6.1.2.1.4.22.1.2.55.10.10.11.4|4x|0b16212c3a10
1.3.6.1.2.1.4.22.1.2.55.10.10.11.5|4x|0b16212c3a11
1.3.6.1.2.1.4.22.1.2.55.10.10.11.6|4x|0b16212c3a12
1.3.6.1.2.1.4.22.1.2.55.10.10.11.7|4x|0b16212c3a13
1.3.6.1.2.1.4.22.1.2.55.10.10.11.8|4x|0b16212c3a14
1.3.6.1.2.1.4.22.1.2.55.10.10.11.9|4x|0b16212c3a15
1.3.6.1.2.1.4.22.1.2.55.10.10.11.10|4x|0b16212c3a16
1.3.6.1.2.1.4.22.1.2.55.10.10.11.11|4x|0b16212c3a17
1.3.6.1.2.1.4.22.1.2.55.10.10.11.12|4x|0b16212c3a18
1.3.6.1.2.1.4.22.1.2.55.10.10.11.13|4x|0b16212c3a19
1.3.6.1.2.1.4.22.1.2.56.10.10.11.14|4x|0b16212c3a1a
1.3.6.1.2.1.4.22.1.2.56.10.10.11.15|4x|0b16212c3a1b
1.3.6.1.2.1.4.22.1.2.56.10.10.11.16|4x|0b16212c3a1c
1.3.6.1.2.1.4.22.1.2.56.10.10.11.17|4x|0b16212c3a1d
1.3.6.1.2.1.4.22.1.2.56.10.10.11.18|4x|0b16212c3a1e
1.3.6.1.2.1.4.22.1.2.56.10.10.11.19|4x|0b16212c3a1f
1.3.6.1.2.1.4.22.1.2.56.10.10.11.20|4x|0b16212c3a20
1.3.6.1.2.1.4.22.1.2.56.10.10.11.21|4x|0b16212c3a21
1.3.6.1.2.1.4.22.1.2.56.10.10.11.22|4x|0b16212c3a22
1.3.6.1.2.1.4.22.1.2.56.10.10.11.23|4x|0b16212c3a23
1.3.6.1.2.1.4.22.1.2.57.10.10.11.24|4x|0b16212c3a24
1.3.6.1.2.1.4.22.1.2.57.10.10.11.25|4x|0b16212c3a25
1.3.6.1.2.1.4.22.1.2.57.10.10.11.26|4x|0b16212c3a26
1.3.6.1.2.1.4.22.1.2.57.10.10.11.27|4x|0b16212c3a27
1.3.6.1.2.1.4.22.1.2.57.10.10.11.28|4x|0b16212c3a28
1.3.6.1.2.1.4.22.1.2.57.10.10.11.29|4x|0b16212c3a29
1.3.6.1.2.1.4.22.1.2.57.10.10.11.30|4x|0b16212c3a2a
1.3.6.1.2.1.4.22.1.2.57.10.10.11.31|4x|0b16212c3a2b
1.3.6.1.2.1.4.22.1.2.57.10.10.11.32|4x|0b16212c3a2c
1.3.6.1.2.1.4.22.1.2.57.10.10.11.33|4x|0b16212c3a2d
1.3.6.1.2.1.4.22.1.2.58.10.10.11.34|4x|0b16212c3a2e
1.3.6.1.2.1.4.22.1.2.58.10.10.11.35|4x|0b16212c3a2f
1.3.6.1.2.1.4.22.1.2.58.10.10.11.36|4x|0b16212c3a30
1.3.6.1.2.1.4.22.1.2.58.10.10.11.37|4x|0b16212c3a31
1.3.6.1.2.1.4.22.1.2.58.10.10.11.38|4x|0b16212c3a32
1.3.6.1.2.1.4.22.1.2.58.10.10.11.39|4x|0b16212c3a33
1.3.6.1.2.1.4.22.1.2.58.10.10.11.40|4x|0b16212c3a34
1.3.6.1.2.1.4.22.1.2.58.10.10.11.41|4x|0b16212c3a35
1.3.6.1.2.1.4.22.1.2.58.10.10.11.42|4x|0b16212c3a36
1.3.6.1.2.1.4.22.1.2.58.10.10.11.43|4x|0b16212c3a37
1.3.6.1.2.1.4.22.1.2.59.10.10.11.44|4x|0b16212c3a38
1.3.6.1.2.1.4.22.1.2.59.10.10.11.45|4x|0b16212c3a39
1.3.6.1.2.1.4.22.1.2.59.10.10.11.46|4x|0b16212c3a3a
1.3.6.1.2.1.4.22.1.2.59.10.10.11.47|4x|0b16212c3a3b
1.3.6.1.2.1.4.22.1.2.59.10.10.11.48|4x|0b16212c3a3c
1.3.6.1.2.1.4.22.1.2.59.10.10.11.49|4x|0b16212c3a3d
1.3.6.1.2.1.4.22.1.2.59.10.10.11.50|4x|0b16212c3a3e
1.3.6.1.2.1.4.22.1.2.59.10.10.11.51|4x|0b16212c3a3f
1.3.6.1.2.1.4.22.1.2.59.10.10.11.52|4x|0b16212c3a40
1.3.6.1.2.1.4.22.1.2.59.10.10.11.53|4x|0b16212c3a41
1.3.6.1.2.1.4.22.1.2.60.10.10.11.54|4x|0b16212c3a42
1.3.6.1.2.1.4.22.1.2.60.10.10.11.55|4x|0b16212c3a43
1.3.6.1.2.1.4.22.1.2.60.10.10.11.56|4x|0b16212c3a44
1.3.6.1.2.1.4.22.1.2.60.10.10.11.57|4x|0b16212c3a45
1.3.6.1.2.1.4.22.1.2.60.10.10.11.58|4x|0b16212c3a46
1.3.6.1.2.1.4.22.1.2.60.10.10.11.59|4x|0b16212c3a47
1.3.6.1.2.1.4.22.1.2.60.10.10.11.60|4x|0b16212c3a48
1.3.6.1.2.1.4.22.1.2.60.10.10.11.61|4x|0b16212c3a49
1.3.6.1.2.1.4.22.1.2.60.10.10.11.62|4x|0b16212c3a4a
1.3.6.1.2.1.4.22.1.2.60.10.10.11.63|4x|0b16212c3a4b
1.3.6.1.2.1.4.22.1.2.61.10.10.11.64|4x|0b16212c3a4c
1.3.6.1.2.1.4.22.1.2.61.10.10.11.65|4x|0b16212c3a4d
1.3.6.1.2.1.4.22.1.2.61.10.10.11.66|4x|0b16212c3a4e
1.3.6.1.2.1.4.22.1.2.61.10.10.11.67|4x|0b16212c3a4f
1.3.6.1.2.1.4.22.1.2.61.10.10.11.68|4x|0b16212c3a50
1.3.6.1.2.1.4.22.1.2.61.10.10.11.69|4x|0b16212c3a51
1.3.6.1.2.1.4.22.1.2.61.10.10.11.70|4x|0b16212c3a52
1.3.6.1.2.1.4.22.1.2.61.10.10.11.71|4x|0b16212c3a53
1.3.6.1.2.1.4.22.1.2.61.10.10.11.72|4x|0b16212c3a54
1.3.6.1.2.1.4.22.1.2.61.10.10.11.73|4x|0b16212c3a55
1.3.6.1.2.1.4.22.1.2.62.10.10.11.74|4x|0b16212c3a56
1.3.6.1.2.1.4.22.1.2.62.10.10.11.75|4x|0b16212c3a57
1.3.6.1.2.1.4.22.1.2.62.10.10.11.76|4x|0b16212c3a58
1.3.6.1.2.1.4.22.1.2.62.10.10.11.77|4x|0b16212c3a59
1.3.6.1.2.1.4.22.1.2.62.10.10.11.78|4x|0b16212c3a5a
1.3.6.1.2.1.4.22.1.2.62.10.10.11.79|4x|0b16212c3a5b
1.3.6.1.2.1.4.22.1.2.62.10.10.11.80|4x|0b16212c3a5c
1.3.6.1.2.1.4.22.1.2.62.10.10.11.81|4x|0b16212c3a5d
1.3.6.1.2.1.4.22.1.2.62.10.10.11.82|4x|0b16212c3a5e
1.3.6.1.2.1.4.22.1.2.62.10.10.11.83|4x|0b16212c3a5f
1.3.6.1.2.1.4.22.1.2.63.10.10.11.84|4x|0b16212c3a60
1.3.6.1.2.1.4.22.1.2.63.10.10.11.85|4x|0b16212c3a61
1.3.6.1.2.1.4.22.1.2.63.10.10.11.86|4x|0b16212c3a62
1.3.6.1.2.1.4.22.1.2.63.10.10.11.87|4x|0b16212c3a63
1.3.6.1.2.1.4.22.1.2.63.10.10.11.88|4x|0b16212c3b00
1.3.6.1.2.1.4.22.1.2.63.10.10.11.89|4x|0b16212c3b01
1.3.6.1.2.1.4.22.1.2.63.10.10.11.90|4x|0b16212c3b02
1.3.6.1.2.1.4.22.1.2.63.10.10.11.91|4x|0b16212c3b03
1.3.6.1.2.1.4.22.1.2.63.10.10.11.92|4x|0b16212c3b04
1.3.6.1.2.1.4.22.1.2.63.10.10.11.93|4x|0b16212c3b05
1.3.6.1.2.1.4.22.1.2.64.10.10.11.94|4x|0b16212c3b06
1.3.6.1.2.1.4.22.1.2.64.10.10.11.95|4x|0b16212c3b07
1.3.6.1.2.1.4.22.1.2.64.10.10.11.96|4x|0b16212c3b08
1.3.6.1.2.1.4.22.1.2.64.10.10.11.97|4x|0b16212c3b09
1.3.6.1.2.1.4.22.1.2.64.10.10.11.98|4x|0b16212c3b0a
1.3.6.1.2.1.4.22.1.2.64.10.10.11.99|4x|0b16212c3b0b
1.3.6.1.2.1.4.22.1.2.64.10.10.11.100|4x|0b16212c3b0c
1.3.6.1.2.1.4.22.1.2.64.10.10.11.101|4x|0b16212c3b0d
1.3.6.1.2.1.4.22.1.2.64.10.10.11.102|4x|0b16212c3b0e
1.3.6.1.2.1.4.22.1.2.64.10.10.11.103|4x|0b16212c3b0f
1.3.6.1.2.1.17.1.4.1.2.1|2|1
1.3.6.1.2.1.17.1.4.1.2.2|2|2
1.3.6.1.2.1.17.1.4.1.2.3|2|3
1.3.6.1.2.1.17.1.4.1.2.4|2|4
1.3.6.1.2.1.17.1.4.1.2.5|2|5
1.3.6.1.2.1.17.1.4.1.2.6|2|6
1.3.6.1.2.1.17.1.4.1.2.7|2|7
1.3.6.1.2.1.17.1.4.1.2.8|2|8
1.3.6.1.2.1.17.1.4.1.2.9|2|9
1.3.6.1.2.1.17.1.4.1.2.10|2|10
1.3.6.1.2.1.17.1.4.1.2.11|2|11
1.3.6.1.2.1.17.1.4.1.2.12|2|12
1.3.6.1.2.1.17.1.4.1.2.13|2|13
1.3.6.1.2.1.17.1.4.1.2.14|2|14
1.3.6.1.2.1.17.1.4.1.2.15|2|15
1.3.6.1.2.1.17.1.4.1.2.16|2|16
1.3.6.1.2.1.17.1.4.1.2.17|2|17
1.3.6.1.2.1.17.1.4.1.2.18|2|18
1.3.6.1.2.1.17.1.4.1.2.19|2|19
1.3.6.1.2.1.17.1.4.1.2.20|2|20
1.3.6.1.2.1.17.1.4.1.2.21|2|21
1.3.6.1.2.1.17.1.4.1.2.22|2|22
1.3.6.1.2.1.17.1.4.1.2.23|2|23
1.3.6.1.2.1.17.1.4.1.2.24|2|24
1.3.6.1.2.1.17.1.4.1.2.25|2|25
1.3.6.1.2.1.17.1.4.1.2.26|2|26
1.3.6.1.2.1.17.1.4.1.2.27|2|27
1.3.6.1.2.1.17.1.4.1.2.28|2|28
1.3.6.1.2.1.17.1.4.1.2.29|2|29
1.3.6.1.2.1.17.1.4.1.2.30|2|30
1.3.6.1.2.1.17.1.4.1.2.31|2|31
1.3.6.1.2.1.17.1.4.1.2.32|2|32
1.3.6.1.2.1.17.1.4.1.2.33|2|33
1.3.6.1.2.1.17.1.4.1.2.34|2|34
1.3.6.1.2.1.17.1.4.1.2.35|2|35
1.3.6.1.2.1.17.1.4.1.2.36|2|36
1.3.6.1.2.1.17.1.4.1.2.37|2|37
1.3.6.1.2.1.17.1.4.1.2.38|2|38
1.3.6.1.2.1.17.1.4.1.2.39|2|39
1.3.6.1.2.1.17.1.4.1.2.40|2|40
1.3.6.1.2.1.17.1.4.1.2.41|2|41
1.3.6.1.2.1.17.1.4.1.2.42|2|42
1.3.6.1.2.1.17.1.4.1.2.43|2|43
1.3.6.1.2.1.17.1.4.1.2.44|2|44
1.3.6.1.2.1.17.1.4.1.2.45|2|45
1.3.6.1.2.1.17.1.4.1.2.46|2|46
1.3.6.1.2.1.17.1.4.1.2.47|2|47
1.3.6.1.2.1.17.1.4.1.2.48|2|48
1.3.6.1.2.1.17.1.4.1.2.49|2|49
1.3.6.1.2.1.17.1.4.1.2.50|2|50
1.3.6.1.2.1.17.1.4.1.2.51|2|51
1.3.6.1.2.1.17.1.4.1.2.52|2|52
1.3.6.1.2.1.17.1.4.1.2.53|2|53
1.3.6.1.2.1.17.1.4.1.2.54|2|54
1.3.6.1.2.1.17.1.4.1.2.55|2|55
1.3.6.1.2.1.17.1.4.1.2.56|2|56
1.3.6.1.2.1.17.1.4.1.2.57|2|57
1.3.6.1.2.1.17.1.4.1.2.58|2|58
1.3.6.1.2.1.17.1.4.1.2.59|2|59
1.3.6.1.2.1.17.1.4.1.2.60|2|60
1.3.6.1.2.1.17.1.4.1.2.61|2|61
1.3.6.1.2.1.17.1.4.1.2.62|2|62
1.3.6.1.2.1.17.1.4.1.2.63|2|63
1.3.6.1.2.1.17.1.4.1.2.64|2|64
1.3.6.1.2.1.17.1.4.1.2.65|2|65
1.3.6.1.2.1.17.1.4.1.2.66|2|66
1.3.6.1.2.1.17.1.4.1.2.67|2|67
1.3.6.1.2.1.17.1.4.1.2.68|2|68
1.3.6.1.2.1.17.1.4.1.2.69|2|69
1.3.6.1.2.1.17.1.4.1.2.70|2|70
1.3.6.1.2.1.17.1.4.1.2.71|2|71
1.3.6.1.2.1.17.1.4.1.2.72|2|72
1.3.6.1.2.1.17.1.4.1.2.73|2|73
1.3.6.1.2.1.17.1.4.1.2.74|2|74
1.3.6.1.2.1.17.1.4.1.2.75|2|75
1.3.6.1.2.1.17.1.4.1.2.76|2|76
1.3.6.1.2.1.17.1.4.1.2.77|2|77
1.3.6.1.2.1.17.1.4.1.2.78|2|78
1.3.6.1.2.1.17.1.4.1.2.79|2|79
1.3.6.1.2.1.17.1.4.1.2.80|2|80
1.3.6.1.2.1.17.1.4.1.2.81|2|81
1.3.6.1.2.1.17.1.4.1.2.82|2|82
1.3.6.1.2.1.17.1.4.1.2.83|2|83
1.3.6.1.2.1.17.1.4.1.2.84|2|84
1.3.6.1.2.1.17.1.4.1.2.85|2|85
1.3.6.1.2.1.17.1.4.1.2.86|2|86
1.3.6.1.2.1.17.1.4.1.2.87|2|87
1.3.6.1.2.1.17.1.4.1.2.88|2|88
1.3.6.1.2.1.17.1.4.1.2.89|2|89
1.3.6.1.2.1.17.1.4.1.2.90|2|90
1.3.6.1.2.1.17.1.4.1.2.91|2|91
1.3.6.1.2.1.17.1.4.1.2.92|2|92
1.3.6.1.2.1.17.1.4.1.2.93|2|93
1.3.6.1.2.1.17.1.4.1.2.94|2|94
1.3.6.1.2.1.17.1.4.1.2.95|2|95
1.3.6.1.2.1.17.1.4.1.2.96|2|96
1.3.6.1.2.1.17.1.4.1.2.97|2|97
1.3.6.1.2.1.17.1.4.1.2.98|2|98
1.3.6.1.2.1.17.1.4.1.2.99|2|99
1.3.6.1.2.1.17.1.4.1.2.100|2|100
1.3.6.1.2.1.17.1.4.1.2.101|2|101
1.3.6.1.2.1.17.1.4.1.2.102|2|102
1.3.6.1.2.1.17.1.4.1.2.103|2|103
1.3.6.1.2.1.17.1.4.1.2.104|2|104
1.3.6.1.2.1.17.1.4.1.2.105|2|105
1.3.6.1.2.1.17.1.4.1.2.106|2|106
1.3.6.1.2.1.17.1.4.1.2.107|2|107
1.3.6.1.2.1.17.1.4.1.2.108|2|108
1.3.6.1.2.1.17.1.4.1.2.109|2|109
1.3.6.1.2.1.17.1.4.1.2.110|2|110
1.3.6.1.2.1.17.1.4.1.2.111|2|111
1.3.6.1.2.1.17.1.4.1.2.112|2|112
1.3.6.1.2.1.17.1.4.1.2.113|2|113
1.3.6.1.2.1.17.1.4.1.2.114|2|114
1.3.6.1.2.1.17.1.4.1.2.115|2|115
1.3.6.1.2.1.17.1.4.1.2.116|2|116
1.3.6.1.2.1.17.1.4.1.2.117|2|117
1.3.6.1.2.1.17.1.4.1.2.118|2|118
1.3.6.1.2.1.17.1.4.1.2.119|2|119
1.3.6.1.2.1.17.1.4.1.2.120|2|120
1.3.6.1.2.1.17.1.4.1.2.121|2|121
1.3.6.1.2.1.17.1.4.1.2.122|2|122
1.3.6.1.2.1.17.1.4.1.2.123|2|123
1.3.6.1.2.1.17.1.4.1.2.124|2|124
1.3.6.1.2.1.17.1.4.1.2.125|2|125
1.3.6.1.2.1.17.1.4.1.2.126|2|126
1.3.6.1.2.1.17.1.4.1.2.127|2|127
1.3.6.1.2.1.17.1.4.1.2.128|2|128
1.3.6.1.2.1.17.1.4.1.2.129|2|129
1.3.6.1.2.1.17.1.4.1.2.130|2|130
1.3.6.1.2.1.17.1.4.1.2.131|2|131
1.3.6.1.2.1.17.1.4.1.2.132|2|132
1.3.6.1.2.1.17.1.4.1.2.133|2|133
1.3.6.1.2.1.17.1.4.1.2.134|2|134
1.3.6.1.2.1.17.1.4.1.2.135|2|135
1.3.6.1.2.1.17.1.4.1.2.136|2|136
1.3.6.1.2.1.17.1.4.1.2.137|2|137
1.3.6.1.2.1.17.1.4.1.2.138|2|138
1.3.6.1.2.1.17.1.4.1.2.139|2|139
1.3.6.1.2.1.17.1.4.1.2.140|2|140
1.3.6.1.2.1.17.1.4.1.2.141|2|141
1.3.6.1.2.1.17.1.4.1.2.142|2|142
1.3.6.1.2.1.17.1.4.1.2.143|2|143
1.3.6.1.2.1.17.1.4.1.2.144|2|144
1.3.6.1.2.1.17.1.4.1.2.145|2|145
1.3.6.1.2.1.17.1.4.1.2.146|2|146
1.3.6.1.2.1.17.1.4.1.2.147|2|147
1.3.6.1.2.1.17.1.4.1.2.148|2|148
1.3.6.1.2.1.17.1.4.1.2.149|2|149
1.3.6.1.2.1.17.1.4.1.2.150|2|150
1.3.6.1.2.1.17.1.4.1.2.151|2|151
1.3.6.1.2.1.17.1.4.1.2.152|2|152
1.3.6.1.2.1.17.1.4.1.2.153|2|153
1.3.6.1.2.1.17.1.4.1.2.154|2|154
1.3.6.1.2.1.17.1.4.1.2.155|2|155
1.3.6.1.2.1.17.1.4.1.2.156|2|156
1.3.6.1.2.1.17.1.4.1.2.157|2|157
1.3.6.1.2.1.17.1.4.1.2.158|2|158
1.3.6.1.2.1.17.1.4.1.2.159|2|159
1.3.6.1.2.1.17.1.4.1.2.160|2|160
1.3.6.1.2.1.17.1.4.1.2.161|2|161
1.3.6.1.2.1.17.1.4.1.2.162|2|162
1.3.6.1.2.1.17.1.4.1.2.163|2|163
1.3.6.1.2.1.17.1.4.1.2.164|2|164
1.3.6.1.2.1.17.1.4.1.2.165|2|165
1.3.6.1.2.1.17.1.4.1.2.166|2|166
1.3.6.1.2.1.17.1.4.1.2.167|2|167
1.3.6.1.2.1.17.1.4.1.2.168|2|168
1.3.6.1.2.1.17.1.4.1.2.169|2|169
1.3.6.1.2.1.17.1.4.1.2.170|2|170
1.3.6.1.2.1.17.1.4.1.2.171|2|171
1.3.6.1.2.1.17.1.4.1.2.172|2|172
1.3.6.1.2.1.17.1.4.1.2.173|2|173
1.3.6.1.2.1.17.1.4.1.2.174|2|174
1.3.6.1.2.1.17.1.4.1.2.175|2|175
1.3.6.1.2.1.17.1.4.1.2.176|2|176
1.3.6.1.2.1.17.1.4.1.2.177|2|177
1.3.6.1.2.1.17.1.4.1.2.178|2|178
1.3.6.1.2.1.17.1.4.1.2.179|2|179
1.3.6.1.2.1.17.1.4.1.2.180|2|180
1.3.6.1.2.1.17.1.4.1.2.181|2|181
1.3.6.1.2.1.17.1.4.1.2.182|2|182
1.3.6.1.2.1.17.1.4.1.2.183|2|183
1.3.6.1.2.1.17.1.4.1.2.184|2|184
1.3.6.1.2.1.17.1.4.1.2.185|2|185
1.3.6.1.2.1.17.1.4.1.2.186|2|186
1.3.6.1.2.1.17.1.4.1.2.187|2|187
1.3.6.1.2.1.17.1.4.1.2.188|2|188
1.3.6.1.2.1.17.1.4.1.2.189|2|189
1.3.6.1.2.1.17.1.4.1.2.190|2|190
1.3.6.1.2.1.17.1.4.1.2.191|2|191
1.3.6.1.2.1.17.1.4.1.2.192|2|192
1.3.6.1.2.1.17.1.4.1.2.193|2|193
1.3.6.1.2.1.17.1.4.1.2.194|2|194
1.3.6.1.2.1.17.1.4.1.2.195|2|195
1.3.6.1.2.1.17.1.4.1.2.196|2|196
1.3.6.1.2.1.17.1.4.1.2.197|2|197
1.3.6.1.2.1.17.1.4.1.2.198|2|198
1.3.6.1.2.1.17.1.4.1.2.199|2|199
1.3.6.1.2.1.17.1.4.1.2.200|2|200
1.3.6.1.2.1.17.1.4.1.2.201|2|201
1.3.6.1.2.1.17.1.4.1.2.202|2|202
1.3.6.1.2.1.17.1.4.1.2.203|2|203
1.3.6.1.2.1.17.1.4.1.2.204|2|204
1.3.6.1.2.1.17.1.4.1.2.205|2|205
1.3.6.1.2.1.17.1.4.1.2.206|2|206
1.3.6.1.2.1.17.1.4.1.2.207|2|207
1.3.6.1.2.1.17.1.4.1.2.208|2|208
1.3.6.1.2.1.17.1.4.1.2.209|2|209
1.3.6.1.2.1.17.1.4.1.2.210|2|210
1.3.6.1.2.1.17.1.4.1.2.211|2|211
1.3.6.1.2.1.17.1.4.1.2.212|2|212
1.3.6.1.2.1.17.1.4.1.2.213|2|213
1.3.6.1.2.1.17.1.4.1.2.214|2|214
1.3.6.1.2.1.17.1.4.1.2.215|2|215
1.3.6.1.2.1.17.1.4.1.2.216|2|216
1.3.6.1.2.1.17.1.4.1.2.217|2|217
1.3.6.1.2.1.17.1.4.1.2.218|2|218
1.3.6.1.2.1.17.1.4.1.2.219|2|219
1.3.6.1.2.1.17.1.4.1.2.220|2|220
1.3.6.1.2.1.17.1.4.1.2.221|2|221
1.3.6.1.2.1.17.1.4.1.2.222|2|222
1.3.6.1.2.1.17.1.4.1.2.223|2|223
1.3.6.1.2.1.17.1.4.1.2.224|2|224
1.3.6.1.2.1.17.1.4.1.2.225|2|225
1.3.6.1.2.1.17.1.4.1.2.226|2|226
1.3.6.1.2.1.17.1.4.1.2.227|2|227
1.3.6.1.2.1.17.1.4.1.2.228|2|228
1.3.6.1.2.1.17.1.4.1.2.229|2|229
1.3.6.1.2.1.17.1.4.1.2.230|2|230
1.3.6.1.2.1.17.1.4.1.2.231|2|231
1.3.6.1.2.1.17.1.4.1.2.232|2|232
1.3.6.1.2.1.17.1.4.1.2.233|2|233
1.3.6.1.2.1.17.1.4.1.2.234|2|234
1.3.6.1.2.1.17.1.4.1.2.235|2|235
1.3.6.1.2.1.17.1.4.1.2.236|2|236
1.3.6.1.2.1.17.1.4.1.2.237|2|237
1.3.6.1.2.1.17.1.4.1.2.238|2|238
1.3.6.1.2.1.17.1.4.1.2.239|2|239
1.3.6.1.2.1.17.1.4.1.2.240|2|240
1.3.6.1.2.1.17.1.4.1.2.241|2|241
1.3.6.1.2.1.17.1.4.1.2.242|2|242
1.3.6.1.2.1.17.1.4.1.2.243|2|243
1.3.6.1.2.1.17.1.4.1.2.244|2|244
1.3.6.1.2.1.17.1.4.1.2.245|2|245
1.3.6.1.2.1.17.1.4.1.2.246|2|246
1.3.6.1.2.1.17.1.4.1.2.247|2|247
1.3.6.1.2.1.17.1.4.1.2.248|2|248
1.3.6.1.2.1.17.1.4.1.2.249|2|249
1.3.6.1.2.1.17.1.4.1.2.250|2|250
1.3.6.1.2.1.17.1.4.1.2.251|2|251
1.3.6.1.2.1.17.1.4.1.2.252|2|252
1.3.6.1.2.1.17.1.4.1.2.253|2|253
1.3.6.1.2.1.17.1.4.1.2.254|2|254
1.3.6.1.2.1.17.1.4.1.2.255|2|255
1.3.6.1.2.1.17.1.4.1.2.256|2|256
1.3.6.1.2.1.17.1.4.1.2.257|2|257
1.3.6.1.2.1.17.1.4.1.2.258|2|258
1.3.6.1.2.1.17.1.4.1.2.259|2|259
1.3.6.1.2.1.17.1.4.1.2.260|2|260
1.3.6.1.2.1.17.1.4.1.2.261|2|261
1.3.6.1.2.1.17.1.4.1.2.262|2|262
1.3.6.1.2.1.17.1.4.1.2.263|2|263
1.3.6.1.2.1.17.1.4.1.2.264|2|264
1.3.6.1.2.1.17.1.4.1.2.265|2|265
1.3.6.1.2.1.17.1.4.1.2.266|2|266
1.3.6.1.2.1.17.1.4.1.2.267|2|267
1.3.6.1.2.1.17.1.4.1.2.268|2|268
1.3.6.1.2.1.17.1.4.1.2.269|2|269
1.3.6.1.2.1.17.1.4.1.2.270|2|270
1.3.6.1.2.1.17.1.4.1.2.271|2|271
1.3.6.1.2.1.17.1.4.1.2.272|2|272
1.3.6.1.2.1.17.1.4.1.2.273|2|273
1.3.6.1.2.1.17.1.4.1.2.274|2|274
1.3.6.1.2.1.17.1.4.1.2.275|2|275
1.3.6.1.2.1.17.1.4.1.2.276|2|276
1.3.6.1.2.1.17.1.4.1.2.277|2|277
1.3.6.1.2.1.17.1.4.1.2.278|2|278
1.3.6.1.2.1.17.1.4.1.2.279|2|279
1.3.6.1.2.1.17.1.4.1.2.280|2|280
1.3.6.1.2.1.17.1.4.1.2.281|2|281
1.3.6.1.2.1.17.1.4.1.2.282|2|282
1.3.6.1.2.1.17.1.4.1.2.283|2|283
1.3.6.1.2.1.17.1.4.1.2.284|2|284
1.3.6.1.2.1.17.1.4.1.2.285|2|285
1.3.6.1.2.1.17.1.4.1.2.286|2|286
1.3.6.1.2.1.17.1.4.1.2.287|2|287
1.3.6.1.2.1.17.1.4.1.2.288|2|288
1.3.6.1.2.1.17.1.4.1.2.289|2|289
1.3.6.1.2.1.17.1.4.1.2.290|2|290
1.3.6.1.2.1.17.1.4.1.2.291|2|291
1.3.6.1.2.1.17.1.4.1.2.292|2|292
1.3.6.1.2.1.17.1.4.1.2.293|2|293
1.3.6.1.2.1.17.1.4.1.2.294|2|294
1.3.6.1.2.1.17.1.4.1.2.295|2|295
1.3.6.1.2.1.17.1.4.1.2.296|2|296
1.3.6.1.2.1.17.1.4.1.2.297|2|297
1.3.6.1.2.1.17.1.4.1.2.298|2|298
1.3.6.1.2.1.17.1.4.1.2.299|2|299
1.3.6.1.2.1.17.1.4.1.2.300|2|300
1.3.6.1.2.1.17.1.4.1.2.301|2|301
1.3.6.1.2.1.17.1.4.1.2.302|2|302
1.3.6.1.2.1.17.1.4.1.2.303|2|303
1.3.6.1.2.1.17.1.4.1.2.304|2|304
1.3.6.1.2.1.17.1.4.1.2.305|2|305
1.3.6.1.2.1.17.1.4.1.2.306|2|306
1.3.6.1.2.1.17.1.4.1.2.307|2|307
1.3.6.1.2.1.17.1.4.1.2.308|2|308
1.3.6.1.2.1.17.1.4.1.2.309|2|309
1.3.6.1.2.1.17.1.4.1.2.310|2|310
1.3.6.1.2.1.17.1.4.1.2.311|2|311
1.3.6.1.2.1.17.1.4.1.2.312|2|312
1.3.6.1.2.1.17.1.4.1.2.313|2|313
1.3.6.1.2.1.17.1.4.1.2.314|2|314
1.3.6.1.2.1.17.1.4.1.2.315|2|315
1.3.6.1.2.1.17.1.4.1.2.316|2|316
1.3.6.1.2.1.17.1.4.1.2.317|2|317
1.3.6.1.2.1.17.1.4.1.2.318|2|318
1.3.6.1.2.1.17.1.4.1.2.319|2|319
1.3.6.1.2.1.17.1.4.1.2.320|2|320
1.3.6.1.2.1.17.1.4.1.2.321|2|321
1.3.6.1.2.1.17.1.4.1.2.322|2|322
1.3.6.1.2.1.17.1.4.1.2.323|2|323
1.3.6.1.2.1.17.1.4.1.2.324|2|324
1.3.6.1.2.1.17.1.4.1.2.325|2|325
1.3.6.1.2.1.17.1.4.1.2.326|2|326
1.3.6.1.2.1.17.1.4.1.2.327|2|327
1.3.6.1.2.1.17.1.4.1.2.328|2|328
1.3.6.1.2.1.17.1.4.1.2.329|2|329
1.3.6.1.2.1.17.1.4.1.2.330|2|330
1.3.6.1.2.1.17.1.4.1.2.331|2|331
1.3.6.1.2.1.17.1.4.1.2.332|2|332
1.3.6.1.2.1.17.1.4.1.2.333|2|333
1.3.6.1.2.1.17.1.4.1.2.334|2|334
1.3.6.1.2.1.17.1.4.1.2.335|2|335
1.3.6.1.2.1.17.1.4.1.2.336|2|336
1.3.6.1.2.1.17.1.4.1.2.337|2|337
1.3.6.1.2.1.17.1.4.1.2.338|2|338
1.3.6.1.2.1.17.1.4.1.2.339|2|339
1.3.6.1.2.1.17.1.4.1.2.340|2|340
1.3.6.1.2.1.17.1.4.1.2.341|2|341
1.3.6.1.2.1.17.1.4.1.2.342|2|342
1.3.6.1.2.1.17.1.4.1.2.343|2|343
1.3.6.1.2.1.17.1.4.1.2.344|2|344
1.3.6.1.2.1.17.1.4.1.2.345|2|345
1.3.6.1.2.1.17.1.4.1.2.346|2|346
1.3.6.1.2.1.17.1.4.1.2.347|2|347
1.3.6.1.2.1.17.1.4.1.2.348|2|348
1.3.6.1.2.1.17.1.4.1.2.349|2|349
1.3.6.1.2.1.17.1.4.1.2.350|2|350
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.66|2|1
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.67|2|2
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.68|2|3
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.69|2|4
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.70|2|5
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.71|2|6
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.72|2|7
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.73|2|8
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.74|2|9
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.75|2|10
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.76|2|11
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.77|2|12
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.78|2|13
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.79|2|14
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.80|2|15
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.81|2|16
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.82|2|17
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.83|2|18
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.84|2|19
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.85|2|20
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.86|2|21
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.87|2|22
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.88|2|23
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.89|2|24
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.90|2|25
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.91|2|26
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.92|2|27
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.93|2|28
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.94|2|29
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.95|2|30
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.96|2|31
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.97|2|32
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.98|2|33
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.55.99|2|34
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.00|2|35
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.01|2|36
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.02|2|37
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.03|2|38
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.04|2|39
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.05|2|40
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.06|2|41
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.07|2|42
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.08|2|43
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.09|2|44
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.10|2|45
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.11|2|46
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.12|2|47
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.13|2|48
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.14|2|49
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.15|2|50
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.16|2|51
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.17|2|52
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.18|2|53
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.19|2|54
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.20|2|55
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.21|2|56
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.22|2|57
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.23|2|58
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.24|2|59
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.25|2|60
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.26|2|61
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.27|2|62
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.28|2|63
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.29|2|64
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.30|2|65
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.31|2|66
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.32|2|67
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.33|2|68
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.34|2|69
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.35|2|70
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.36|2|71
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.37|2|72
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.38|2|73
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.39|2|74
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.40|2|75
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.41|2|76
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.42|2|77
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.43|2|78
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.44|2|79
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.45|2|80
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.46|2|81
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.47|2|82
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.48|2|83
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.49|2|84
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.50|2|85
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.51|2|86
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.52|2|87
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.53|2|88
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.54|2|89
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.55|2|90
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.56|2|91
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.57|2|92
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.58|2|93
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.59|2|94
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.60|2|95
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.61|2|96
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.62|2|97
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.63|2|98
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.64|2|99
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.65|2|100
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.66|2|101
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.67|2|102
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.68|2|103
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.69|2|104
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.70|2|105
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.71|2|106
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.72|2|107
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.73|2|108
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.74|2|109
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.75|2|110
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.76|2|111
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.77|2|112
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.78|2|113
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.79|2|114
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.80|2|115
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.81|2|116
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.82|2|117
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.83|2|118
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.84|2|119
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.85|2|120
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.86|2|121
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.87|2|122
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.88|2|123
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.89|2|124
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.90|2|125
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.91|2|126
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.92|2|127
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.93|2|128
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.94|2|129
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.95|2|130
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.96|2|131
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.97|2|132
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.98|2|133
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.56.99|2|134
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.00|2|135
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.01|2|136
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.02|2|137
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.03|2|138
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.04|2|139
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.05|2|140
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.06|2|141
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.07|2|142
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.08|2|143
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.09|2|144
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.10|2|145
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.11|2|146
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.12|2|147
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.13|2|148
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.14|2|149
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.15|2|150
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.16|2|151
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.17|2|152
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.18|2|153
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.19|2|154
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.20|2|155
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.21|2|156
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.22|2|157
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.23|2|158
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.24|2|159
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.25|2|160
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.26|2|161
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.27|2|162
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.28|2|163
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.29|2|164
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.30|2|165
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.31|2|166
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.32|2|167
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.33|2|168
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.34|2|169
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.35|2|170
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.36|2|171
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.37|2|172
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.38|2|173
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.39|2|174
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.40|2|175
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.41|2|176
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.42|2|177
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.43|2|178
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.44|2|179
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.45|2|180
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.46|2|181
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.47|2|182
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.48|2|183
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.49|2|184
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.50|2|185
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.51|2|186
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.52|2|187
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.53|2|188
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.54|2|189
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.55|2|190
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.56|2|191
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.57|2|192
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.58|2|193
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.59|2|194
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.60|2|195
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.61|2|196
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.62|2|197
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.63|2|198
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.64|2|199
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.65|2|200
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.66|2|201
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.67|2|202
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.68|2|203
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.69|2|204
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.70|2|205
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.71|2|206
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.72|2|207
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.73|2|208
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.74|2|209
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.75|2|210
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.76|2|211
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.77|2|212
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.78|2|213
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.79|2|214
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.80|2|215
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.81|2|216
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.82|2|217
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.83|2|218
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.84|2|219
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.85|2|220
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.86|2|221
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.87|2|222
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.88|2|223
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.89|2|224
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.90|2|225
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.91|2|226
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.92|2|227
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.93|2|228
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.94|2|229
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.95|2|230
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.96|2|231
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.97|2|232
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.98|2|233
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.57.99|2|234
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.00|2|235
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.01|2|236
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.02|2|237
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.03|2|238
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.04|2|239
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.05|2|240
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.06|2|241
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.07|2|242
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.08|2|243
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.09|2|244
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.10|2|245
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.11|2|246
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.12|2|247
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.13|2|248
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.14|2|249
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.15|2|250
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.16|2|251
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.17|2|252
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.18|2|253
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.19|2|254
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.20|2|255
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.21|2|256
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.22|2|257
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.23|2|258
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.24|2|259
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.25|2|260
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.26|2|261
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.27|2|262
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.28|2|263
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.29|2|264
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.30|2|265
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.31|2|266
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.32|2|267
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.33|2|268
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.34|2|269
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.35|2|270
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.36|2|271
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.37|2|272
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.38|2|273
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.39|2|274
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.40|2|275
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.41|2|276
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.42|2|277
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.43|2|278
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.44|2|279
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.45|2|280
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.46|2|281
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.47|2|282
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.48|2|283
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.49|2|284
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.50|2|285
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.51|2|286
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.52|2|287
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.53|2|288
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.54|2|289
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.55|2|290
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.56|2|291
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.57|2|292
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.58|2|293
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.59|2|294
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.60|2|295
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.61|2|296
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.62|2|297
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.63|2|298
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.64|2|299
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.65|2|300
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.66|2|301
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.67|2|302
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.68|2|303
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.69|2|304
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.70|2|305
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.71|2|306
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.72|2|307
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.73|2|308
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.74|2|309
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.75|2|310
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.76|2|311
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.77|2|312
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.78|2|313
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.79|2|314
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.80|2|315
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.81|2|316
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.82|2|317
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.83|2|318
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.84|2|319
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.85|2|320
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.86|2|321
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.87|2|322
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.88|2|323
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.89|2|324
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.90|2|325
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.91|2|326
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.92|2|327
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.93|2|328
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.94|2|329
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.95|2|330
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.96|2|331
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.97|2|332
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.98|2|333
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.58.99|2|334
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.00|2|335
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.01|2|336
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.02|2|337
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.03|2|338
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.04|2|339
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.05|2|340
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.06|2|341
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.07|2|342
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.08|2|343
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.09|2|344
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.10|2|345
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.11|2|346
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.12|2|347
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.13|2|348
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.14|2|349
1.3.6.1.2.1.17.4.3.1.2.11.22.33.44.59.15|2|350
1.3.6.1.2.1.31.1.1.1.1.1|2|Fa3/0/1
1.3.6.1.2.1.31.1.1.1.1.2|2|Fa3/0/2
1.3.6.1.2.1.31.1.1.1.1.3|2|Fa3/0/3
1.3.6.1.2.1.31.1.1.1.1.4|2|Fa3/0/4
1.3.6.1.2.1.31.1.1.1.1.5|2|Fa3/0/5
1.3.6.1.2.1.31.1.1.1.1.6|2|Fa3/0/6
1.3.6.1.2.1.31.1.1.1.1.7|2|Fa3/0/7
1.3.6.1.2.1.31.1.1.1.1.8|2|Fa3/0/8
1.3.6.1.2.1.31.1.1.1.1.9|2|Fa3/0/9
1.3.6.1.2.1.31.1.1.1.1.10|2|Fa3/0/10
1.3.6.1.2.1.31.1.1.1.1.11|2|Fa3/0/11
1.3.6.1.2.1.31.1.1.1.1.12|2|Fa3/0/12
1.3.6.1.2.1.31.1.1.1.1.13|2|Fa3/0/13
1.3.6.1.2.1.31.1.1.1.1.14|2|Fa3/0/14
1.3.6.1.2.1.31.1.1.1.1.15|2|Fa3/0/15
1.3.6.1.2.1.31.1.1.1.1.16|2|Fa3/0/16
1.3.6.1.2.1.31.1.1.1.1.17|2|Fa3/0/17
1.3.6.1.2.1.31.1.1.1.1.18|2|Fa3/0/18
1.3.6.1.2.1.31.1.1.1.1.19|2|Fa3/0/19
1.3.6.1.2.1.31.1.1.1.1.20|2|Fa3/0/20
1.3.6.1.2.1.31.1.1.1.1.21|2|Fa3/0/21
1.3.6.1.2.1.31.1.1.1.1.22|2|Fa3/0/22
1.3.6.1.2.1.31.1.1.1.1.23|2|Fa3/0/23
1.3.6.1.2.1.31.1.1.1.1.24|2|Fa3/0/24
1.3.6.1.2.1.31.1.1.1.1.25|2|Fa3/0/25
1.3.6.1.2.1.31.1.1.1.1.26|2|Fa3/0/26
1.3.6.1.2.1.31.1.1.1.1.27|2|Fa3/0/27
1.3.6.1.2.1.31.1.1.1.1.28|2|Fa3/0/28
1.3.6.1.2.1.31.1.1.1.1.29|2|Fa3/0/29
1.3.6.1.2.1.31.1.1.1.1.30|2|Fa3/0/30
1.3.6.1.2.1.31.1.1.1.1.31|2|Fa3/0/31
1.3.6.1.2.1.31.1.1.1.1.32|2|Fa3/0/32
1.3.6.1.2.1.31.1.1.1.1.33|2|Fa3/0/33
1.3.6.1.2.1.31.1.1.1.1.34|2|Fa3/0/34
1.3.6.1.2.1.31.1.1.1.1.35|2|Fa3/0/35
1.3.6.1.2.1.31.1.1.1.1.36|2|Fa3/0/36
1.3.6.1.2.1.31.1.1.1.1.37|2|Fa3/0/37
1.3.6.1.2.1.31.1.1.1.1.38|2|Fa3/0/38
1.3.6.1.2.1.31.1.1.1.1.39|2|Fa3/0/39
1.3.6.1.2.1.31.1.1.1.1.40|2|Fa3/0/40
1.3.6.1.2.1.31.1.1.1.1.41|2|Fa3/0/41
1.3.6.1.2.1.31.1.1.1.1.42|2|Fa3/0/42
1.3.6.1.2.1.31.1.1.1.1.43|2|Fa3/0/43
1.3.6.1.2.1.31.1.1.1.1.44|2|Fa3/0/44
1.3.6.1.2.1.31.1.1.1.1.45|2|Fa3/0/45
1.3.6.1.2.1.31.1.1.1.1.46|2|Fa3/0/46
1.3.6.1.2.1.31.1.1.1.1.47|2|Fa3/0/47
1.3.6.1.2.1.31.1.1.1.1.48|2|Fa3/0/48
1.3.6.1.2.1.31.1.1.1.1.49|2|Fa3/0/49
1.3.6.1.2.1.31.1.1.1.1.50|2|Fa3/0/50
1.3.6.1.2.1.31.1.1.1.1.51|2|Fa3/0/51
1.3.6.1.2.1.31.1.1.1.1.52|2|Fa3/0/52
1.3.6.1.2.1.31.1.1.1.1.53|2|Fa3/0/53
1.3.6.1.2.1.31.1.1.1.1.54|2|Fa3/0/54
1.3.6.1.2.1.31.1.1.1.1.55|2|Fa3/0/55
1.3.6.1.2.1.31.1.1.1.1.56|2|Fa3/0/56
1.3.6.1.2.1.31.1.1.1.1.57|2|Fa3/0/57
1.3.6.1.2.1.31.1.1.1.1.58|2|Fa3/0/58
1.3.6.1.2.1.31.1.1.1.1.59|2|Fa3/0/59
1.3.6.1.2.1.31.1.1.1.1.60|2|Fa3/0/60
1.3.6.1.2.1.31.1.1.1.1.61|2|Fa3/0/61
1.3.6.1.2.1.31.1.1.1.1.62|2|Fa3/0/62
1.3.6.1.2.1.31.1.1.1.1.63|2|Fa3/0/63
1.3.6.1.2.1.31.1.1.1.1.64|2|Fa3/0/64
1.3.6.1.2.1.31.1.1.1.1.65|2|Fa3/0/65
1.3.6.1.2.1.31.1.1.1.1.66|2|Fa3/0/66
1.3.6.1.2.1.31.1.1.1.1.67|2|Fa3/0/67
1.3.6.1.2.1.31.1.1.1.1.68|2|Fa3/0/68
1.3.6.1.2.1.31.1.1.1.1.69|2|Fa3/0/69
1.3.6.1.2.1.31.1.1.1.1.70|2|Fa3/0/70
1.3.6.1.2.1.31.1.1.1.1.71|2|Fa3/0/71
1.3.6.1.2.1.31.1.1.1.1.72|2|Fa3/0/72
1.3.6.1.2.1.31.1.1.1.1.73|2|Fa3/0/73
1.3.6.1.2.1.31.1.1.1.1.74|2|Fa3/0/74
1.3.6.1.2.1.31.1.1.1.1.75|2|Fa3/0/75
1.3.6.1.2.1.31.1.1.1.1.76|2|Fa3/0/76
1.3.6.1.2.1.31.1.1.1.1.77|2|Fa3/0/77
1.3.6.1.2.1.31.1.1.1.1.78|2|Fa3/0/78
1.3.6.1.2.1.31.1.1.1.1.79|2|Fa3/0/79
1.3.6.1.2.1.31.1.1.1.1.80|2|Fa3/0/80
1.3.6.1.2.1.31.1.1.1.1.81|2|Fa3/0/81
1.3.6.1.2.1.31.1.1.1.1.82|2|Fa3/0/82
1.3.6.1.2.1.31.1.1.1.1.83|2|Fa3/0/83
1.3.6.1.2.1.31.1.1.1.1.84|2|Fa3/0/84
1.3.6.1.2.1.31.1.1.1.1.85|2|Fa3/0/85
1.3.6.1.2.1.31.1.1.1.1.86|2|Fa3/0/86
1.3.6.1.2.1.31.1.1.1.1.87|2|Fa3/0/87
1.3.6.1.2.1.31.1.1.1.1.88|2|Fa3/0/88
1.3.6.1.2.1.31.1.1.1.1.89|2|Fa3/0/89
1.3.6.1.2.1.31.1.1.1.1.90|2|Fa3/0/90
1.3.6.1.2.1.31.1.1.1.1.91|2|Fa3/0/91
1.3.6.1.2.1.31.1.1.1.1.92|2|Fa3/0/92
1.3.6.1.2.1.31.1.1.1.1.93|2|Fa3/0/93
1.3.6.1.2.1.31.1.1.1.1.94|2|Fa3/0/94
1.3.6.1.2.1.31.1.1.1.1.95|2|Fa3/0/95
1.3.6.1.2.1.31.1.1.1.1.96|2|Fa3/0/96
1.3.6.1.2.1.31.1.1.1.1.97|2|Fa3/0/97
1.3.6.1.2.1.31.1.1.1.1.98|2|Fa3/0/98
1.3.6.1.2.1.31.1.1.1.1.99|2|Fa3/0/99
1.3.6.1.2.1.31.1.1.1.1.100|2|Fa3/0/100
1.3.6.1.2.1.31.1.1.1.1.101|2|Fa3/0/101
1.3.6.1.2.1.31.1.1.1.1.102|2|Fa3/0/102
1.3.6.1.2.1.31.1.1.1.1.103|2|Fa3/0/103
1.3.6.1.2.1.31.1.1.1.1.104|2|Fa3/0/104
1.3.6.1.2.1.31.1.1.1.1.105|2|Fa3/0/105
1.3.6.1.2.1.31.1.1.1.1.106|2|Fa3/0/106
1.3.6.1.2.1.31.1.1.1.1.107|2|Fa3/0/107
1.3.6.1.2.1.31.1.1.1.1.108|2|Fa3/0/108
1.3.6.1.2.1.31.1.1.1.1.109|2|Fa3/0/109
1.3.6.1.2.1.31.1.1.1.1.110|2|Fa3/0/110
1.3.6.1.2.1.31.1.1.1.1.111|2|Fa3/0/111
1.3.6.1.2.1.31.1.1.1.1.112|2|Fa3/0/112
1.3.6.1.2.1.31.1.1.1.1.113|2|Fa3/0/113
1.3.6.1.2.1.31.1.1.1.1.114|2|Fa3/0/114
1.3.6.1.2.1.31.1.1.1.1.115|2|Fa3/0/115
1.3.6.1.2.1.31.1.1.1.1.116|2|Fa3/0/116
1.3.6.1.2.1.31.1.1.1.1.117|2|Fa3/0/117
1.3.6.1.2.1.31.1.1.1.1.118|2|Fa3/0/118
1.3.6.1.2.1.31.1.1.1.1.119|2|Fa3/0/119
1.3.6.1.2.1.31.1.1.1.1.120|2|Fa3/0/120
1.3.6.1.2.1.31.1.1.1.1.121|2|Fa3/0/121
1.3.6.1.2.1.31.1.1.1.1.122|2|Fa3/0/122
1.3.6.1.2.1.31.1.1.1.1.123|2|Fa3/0/123
1.3.6.1.2.1.31.1.1.1.1.124|2|Fa3/0/124
1.3.6.1.2.1.31.1.1.1.1.125|2|Fa3/0/125
1.3.6.1.2.1.31.1.1.1.1.126|2|Fa3/0/126
1.3.6.1.2.1.31.1.1.1.1.127|2|Fa3/0/127
1.3.6.1.2.1.31.1.1.1.1.128|2|Fa3/0/128
1.3.6.1.2.1.31.1.1.1.1.129|2|Fa3/0/129
1.3.6.1.2.1.31.1.1.1.1.130|2|Fa3/0/130
1.3.6.1.2.1.31.1.1.1.1.131|2|Fa3/0/131
1.3.6.1.2.1.31.1.1.1.1.132|2|Fa3/0/132
1.3.6.1.2.1.31.1.1.1.1.133|2|Fa3/0/133
1.3.6.1.2.1.31.1.1.1.1.134|2|Fa3/0/134
1.3.6.1.2.1.31.1.1.1.1.135|2|Fa3/0/135
1.3.6.1.2.1.31.1.1.1.1.136|2|Fa3/0/136
1.3.6.1.2.1.31.1.1.1.1.137|2|Fa3/0/137
1.3.6.1.2.1.31.1.1.1.1.138|2|Fa3/0/138
1.3.6.1.2.1.31.1.1.1.1.139|2|Fa3/0/139
1.3.6.1.2.1.31.1.1.1.1.140|2|Fa3/0/140
1.3.6.1.2.1.31.1.1.1.1.141|2|Fa3/0/141
1.3.6.1.2.1.31.1.1.1.1.142|2|Fa3/0/142
1.3.6.1.2.1.31.1.1.1.1.143|2|Fa3/0/143
1.3.6.1.2.1.31.1.1.1.1.144|2|Fa3/0/144
1.3.6.1.2.1.31.1.1.1.1.145|2|Fa3/0/145
1.3.6.1.2.1.31.1.1.1.1.146|2|Fa3/0/146
1.3.6.1.2.1.31.1.1.1.1.147|2|Fa3/0/147
1.3.6.1.2.1.31.1.1.1.1.148|2|Fa3/0/148
1.3.6.1.2.1.31.1.1.1.1.149|2|Fa3/0/149
1.3.6.1.2.1.31.1.1.1.1.150|2|Fa3/0/150
1.3.6.1.2.1.31.1.1.1.1.151|2|Fa3/0/151
1.3.6.1.2.1.31.1.1.1.1.152|2|Fa3/0/152
1.3.6.1.2.1.31.1.1.1.1.153|2|Fa3/0/153
1.3.6.1.2.1.31.1.1.1.1.154|2|Fa3/0/154
1.3.6.1.2.1.31.1.1.1.1.155|2|Fa3/0/155
1.3.6.1.2.1.31.1.1.1.1.156|2|Fa3/0/156
1.3.6.1.2.1.31.1.1.1.1.157|2|Fa3/0/157
1.3.6.1.2.1.31.1.1.1.1.158|2|Fa3/0/158
1.3.6.1.2.1.31.1.1.1.1.159|2|Fa3/0/159
1.3.6.1.2.1.31.1.1.1.1.160|2|Fa3/0/160
1.3.6.1.2.1.31.1.1.1.1.161|2|Fa3/0/161
1.3.6.1.2.1.31.1.1.1.1.162|2|Fa3/0/162
1.3.6.1.2.1.31.1.1.1.1.163|2|Fa3/0/163
1.3.6.1.2.1.31.1.1.1.1.164|2|Fa3/0/164
1.3.6.1.2.1.31.1.1.1.1.165|2|Fa3/0/165
1.3.6.1.2.1.31.1.1.1.1.166|2|Fa3/0/166
1.3.6.1.2.1.31.1.1.1.1.167|2|Fa3/0/167
1.3.6.1.2.1.31.1.1.1.1.168|2|Fa3/0/168
1.3.6.1.2.1.31.1.1.1.1.169|2|Fa3/0/169
1.3.6.1.2.1.31.1.1.1.1.170|2|Fa3/0/170
1.3.6.1.2.1.31.1.1.1.1.171|2|Fa3/0/171
1.3.6.1.2.1.31.1.1.1.1.172|2|Fa3/0/172
1.3.6.1.2.1.31.1.1.1.1.173|2|Fa3/0/173
1.3.6.1.2.1.31.1.1.1.1.174|2|Fa3/0/174
1.3.6.1.2.1.31.1.1.1.1.175|2|Fa3/0/175
1.3.6.1.2.1.31.1.1.1.1.176|2|Fa3/0/176
1.3.6.1.2.1.31.1.1.1.1.177|2|Fa3/0/177
1.3.6.1.2.1.31.1.1.1.1.178|2|Fa3/0/178
1.3.6.1.2.1.31.1.1.1.1.179|2|Fa3/0/179
1.3.6.1.2.1.31.1.1.1.1.180|2|Fa3/0/180
1.3.6.1.2.1.31.1.1.1.1.181|2|Fa3/0/181
1.3.6.1.2.1.31.1.1.1.1.182|2|Fa3/0/182
1.3.6.1.2.1.31.1.1.1.1.183|2|Fa3/0/183
1.3.6.1.2.1.31.1.1.1.1.184|2|Fa3/0/184
1.3.6.1.2.1.31.1.1.1.1.185|2|Fa3/0/185
1.3.6.1.2.1.31.1.1.1.1.186|2|Fa3/0/186
1.3.6.1.2.1.31.1.1.1.1.187|2|Fa3/0/187
1.3.6.1.2.1.31.1.1.1.1.188|2|Fa3/0/188
1.3.6.1.2.1.31.1.1.1.1.189|2|Fa3/0/189
1.3.6.1.2.1.31.1.1.1.1.190|2|Fa3/0/190
1.3.6.1.2.1.31.1.1.1.1.191|2|Fa3/0/191
1.3.6.1.2.1.31.1.1.1.1.192|2|Fa3/0/192
1.3.6.1.2.1.31.1.1.1.1.193|2|Fa3/0/193
1.3.6.1.2.1.31.1.1.1.1.194|2|Fa3/0/194
1.3.6.1.2.1.31.1.1.1.1.195|2|Fa3/0/195
1.3.6.1.2.1.31.1.1.1.1.196|2|Fa3/0/196
1.3.6.1.2.1.31.1.1.1.1.197|2|Fa3/0/197
1.3.6.1.2.1.31.1.1.1.1.198|2|Fa3/0/198
1.3.6.1.2.1.31.1.1.1.1.199|2|Fa3/0/199
1.3.6.1.2.1.31.1.1.1.1.200|2|Fa3/0/200
1.3.6.1.2.1.31.1.1.1.1.201|2|Fa3/0/201
1.3.6.1.2.1.31.1.1.1.1.202|2|Fa3/0/202
1.3.6.1.2.1.31.1.1.1.1.203|2|Fa3/0/203
1.3.6.1.2.1.31.1.1.1.1.204|2|Fa3/0/204
1.3.6.1.2.1.31.1.1.1.1.205|2|Fa3/0/205
1.3.6.1.2.1.31.1.1.1.1.206|2|Fa3/0/206
1.3.6.1.2.1.31.1.1.1.1.207|2|Fa3/0/207
1.3.6.1.2.1.31.1.1.1.1.208|2|Fa3/0/208
1.3.6.1.2.1.31.1.1.1.1.209|2|Fa3/0/209
1.3.6.1.2.1.31.1.1.1.1.210|2|Fa3/0/210
1.3.6.1.2.1.31.1.1.1.1.211|2|Fa3/0/211
1.3.6.1.2.1.31.1.1.1.1.212|2|Fa3/0/212
1.3.6.1.2.1.31.1.1.1.1.213|2|Fa3/0/213
1.3.6.1.2.1.31.1.1.1.1.214|2|Fa3/0/214
1.3.6.1.2.1.31.1.1.1.1.215|2|Fa3/0/215
1.3.6.1.2.1.31.1.1.1.1.216|2|Fa3/0/216
1.3.6.1.2.1.31.1.1.1.1.217|2|Fa3/0/217
1.3.6.1.2.1.31.1.1.1.1.218|2|Fa3/0/218
1.3.6.1.2.1.31.1.1.1.1.219|2|Fa3/0/219
1.3.6.1.2.1.31.1.1.1.1.220|2|Fa3/0/220
1.3.6.1.2.1.31.1.1.1.1.221|2|Fa3/0/221
1.3.6.1.2.1.31.1.1.1.1.222|2|Fa3/0/222
1.3.6.1.2.1.31.1.1.1.1.223|2|Fa3/0/223
1.3.6.1.2.1.31.1.1.1.1.224|2|Fa3/0/224
1.3.6.1.2.1.31.1.1.1.1.225|2|Fa3/0/225
1.3.6.1.2.1.31.1.1.1.1.226|2|Fa3/0/226
1.3.6.1.2.1.31.1.1.1.1.227|2|Fa3/0/227
1.3.6.1.2.1.31.1.1.1.1.228|2|Fa3/0/228
1.3.6.1.2.1.31.1.1.1.1.229|2|Fa3/0/229
1.3.6.1.2.1.31.1.1.1.1.230|2|Fa3/0/230
1.3.6.1.2.1.31.1.1.1.1.231|2|Fa3/0/231
1.3.6.1.2.1.31.1.1.1.1.232|2|Fa3/0/232
1.3.6.1.2.1.31.1.1.1.1.233|2|Fa3/0/233
1.3.6.1.2.1.31.1.1.1.1.234|2|Fa3/0/234
1.3.6.1.2.1.31.1.1.1.1.235|2|Fa3/0/235
1.3.6.1.2.1.31.1.1.1.1.236|2|Fa3/0/236
1.3.6.1.2.1.31.1.1.1.1.237|2|Fa3/0/237
1.3.6.1.2.1.31.1.1.1.1.238|2|Fa3/0/238
1.3.6.1.2.1.31.1.1.1.1.239|2|Fa3/0/239
1.3.6.1.2.1.31.1.1.1.1.240|2|Fa3/0/240
1.3.6.1.2.1.31.1.1.1.1.241|2|Fa3/0/241
1.3.6.1.2.1.31.1.1.1.1.242|2|Fa3/0/242
1.3.6.1.2.1.31.1.1.1.1.243|2|Fa3/0/243
1.3.6.1.2.1.31.1.1.1.1.244|2|Fa3/0/244
1.3.6.1.2.1.31.1.1.1.1.245|2|Fa3/0/245
1.3.6.1.2.1.31.1.1.1.1.246|2|Fa3/0/246
1.3.6.1.2.1.31.1.1.1.1.247|2|Fa3/0/247
1.3.6.1.2.1.31.1.1.1.1.248|2|Fa3/0/248
1.3.6.1.2.1.31.1.1.1.1.249|2|Fa3/0/249
1.3.6.1.2.1.31.1.1.1.1.250|2|Fa3/0/250
1.3.6.1.2.1.31.1.1.1.1.251|2|Fa3/0/251
1.3.6.1.2.1.31.1.1.1.1.252|2|Fa3/0/252
1.3.6.1.2.1.31.1.1.1.1.253|2|Fa3/0/253
1.3.6.1.2.1.31.1.1.1.1.254|2|Fa3/0/254
1.3.6.1.2.1.31.1.1.1.1.255|2|Fa3/0/255
1.3.6.1.2.1.31.1.1.1.1.256|2|Fa3/0/256
1.3.6.1.2.1.31.1.1.1.1.257|2|Fa3/0/257
1.3.6.1.2.1.31.1.1.1.1.258|2|Fa3/0/258
1.3.6.1.2.1.31.1.1.1.1.259|2|Fa3/0/259
1.3.6.1.2.1.31.1.1.1.1.260|2|Fa3/0/260
1.3.6.1.2.1.31.1.1.1.1.261|2|Fa3/0/261
1.3.6.1.2.1.31.1.1.1.1.262|2|Fa3/0/262
1.3.6.1.2.1.31.1.1.1.1.263|2|Fa3/0/263
1.3.6.1.2.1.31.1.1.1.1.264|2|Fa3/0/264
1.3.6.1.2.1.31.1.1.1.1.265|2|Fa3/0/265
1.3.6.1.2.1.31.1.1.1.1.266|2|Fa3/0/266
1.3.6.1.2.1.31.1.1.1.1.267|2|Fa3/0/267
1.3.6.1.2.1.31.1.1.1.1.268|2|Fa3/0/268
1.3.6.1.2.1.31.1.1.1.1.269|2|Fa3/0/269
1.3.6.1.2.1.31.1.1.1.1.270|2|Fa3/0/270
1.3.6.1.2.1.31.1.1.1.1.271|2|Fa3/0/271
1.3.6.1.2.1.31.1.1.1.1.272|2|Fa3/0/272
1.3.6.1.2.1.31.1.1.1.1.273|2|Fa3/0/273
1.3.6.1.2.1.31.1.1.1.1.274|2|Fa3/0/274
1.3.6.1.2.1.31.1.1.1.1.275|2|Fa3/0/275
1.3.6.1.2.1.31.1.1.1.1.276|2|Fa3/0/276
1.3.6.1.2.1.31.1.1.1.1.277|2|Fa3/0/277
1.3.6.1.2.1.31.1.1.1.1.278|2|Fa3/0/278
1.3.6.1.2.1.31.1.1.1.1.279|2|Fa3/0/279
1.3.6.1.2.1.31.1.1.1.1.280|2|Fa3/0/280
1.3.6.1.2.1.31.1.1.1.1.281|2|Fa3/0/281
1.3.6.1.2.1.31.1.1.1.1.282|2|Fa3/0/282
1.3.6.1.2.1.31.1.1.1.1.283|2|Fa3/0/283
1.3.6.1.2.1.31.1.1.1.1.284|2|Fa3/0/284
1.3.6.1.2.1.31.1.1.1.1.285|2|Fa3/0/285
1.3.6.1.2.1.31.1.1.1.1.286|2|Fa3/0/286
1.3.6.1.2.1.31.1.1.1.1.287|2|Fa3/0/287
1.3.6.1.2.1.31.1.1.1.1.288|2|Fa3/0/288
1.3.6.1.2.1.31.1.1.1.1.289|2|Fa3/0/289
1.3.6.1.2.1.31.1.1.1.1.290|2|Fa3/0/290
1.3.6.1.2.1.31.1.1.1.1.291|2|Fa3/0/291
1.3.6.1.2.1.31.1.1.1.1.292|2|Fa3/0/292
1.3.6.1.2.1.31.1.1.1.1.293|2|Fa3/0/293
1.3.6.1.2.1.31.1.1.1.1.294|2|Fa3/0/294
1.3.6.1.2.1.31.1.1.1.1.295|2|Fa3/0/295
1.3.6.1.2.1.31.1.1.1.1.296|2|Fa3/0/296
1.3.6.1.2.1.31.1.1.1.1.297|2|Fa3/0/297
1.3.6.1.2.1.31.1.1.1.1.298|2|Fa3/0/298
1.3.6.1.2.1.31.1.1.1.1.299|2|Fa3/0/299
1.3.6.1.2.1.31.1.1.1.1.300|2|Fa3/0/300
1.3.6.1.2.1.31.1.1.1.1.301|2|Fa3/0/301
1.3.6.1.2.1.31.1.1.1.1.302|2|Fa3/0/302
1.3.6.1.2.1.31.1.1.1.1.303|2|Fa3/0/303
1.3.6.1.2.1.31.1.1.1.1.304|2|Fa3/0/304
1.3.6.1.2.1.31.1.1.1.1.305|2|Fa3/0/305
1.3.6.1.2.1.31.1.1.1.1.306|2|Fa3/0/306
1.3.6.1.2.1.31.1.1.1.1.307|2|Fa3/0/307
1.3.6.1.2.1.31.1.1.1.1.308|2|Fa3/0/308
1.3.6.1.2.1.31.1.1.1.1.309|2|Fa3/0/309
1.3.6.1.2.1.31.1.1.1.1.310|2|Fa3/0/310
1.3.6.1.2.1.31.1.1.1.1.311|2|Fa3/0/311
1.3.6.1.2.1.31.1.1.1.1.312|2|Fa3/0/312
1.3.6.1.2.1.31.1.1.1.1.313|2|Fa3/0/313
1.3.6.1.2.1.31.1.1.1.1.314|2|Fa3/0/314
1.3.6.1.2.1.31.1.1.1.1.315|2|Fa3/0/315
1.3.6.1.2.1.31.1.1.1.1.316|2|Fa3/0/316
1.3.6.1.2.1.31.1.1.1.1.317|2|Fa3/0/317
1.3.6.1.2.1.31.1.1.1.1.318|2|Fa3/0/318
1.3.6.1.2.1.31.1.1.1.1.319|2|Fa3/0/319
1.3.6.1.2.1.31.1.1.1.1.320|2|Fa3/0/320
1.3.6.1.2.1.31.1.1.1.1.321|2|Fa3/0/321
1.3.6.1.2.1.31.1.1.1.1.322|2|Fa3/0/322
1.3.6.1.2.1.31.1.1.1.1.323|2|Fa3/0/323
1.3.6.1.2.1.31.1.1.1.1.324|2|Fa3/0/324
1.3.6.1.2.1.31.1.1.1.1.325|2|Fa3/0/325
1.3.6.1.2.1.31.1.1.1.1.326|2|Fa3/0/326
1.3.6.1.2.1.31.1.1.1.1.327|2|Fa3/0/327
1.3.6.1.2.1.31.1.1.1.1.328|2|Fa3/0/328
1.3.6.1.2.1.31.1.1.1.1.329|2|Fa3/0/329
1.3.6.1.2.1.31.1.1.1.1.330|2|Fa3/0/330
1.3.6.1.2.1.31.1.1.1.1.331|2|Fa3/0/331
1.3.6.1.2.1.31.1.1.1.1.332|2|Fa3/0/332
1.3.6.1.2.1.31.1.1.1.1.333|2|Fa3/0/333
1.3.6.1.2.1.31.1.1.1.1.334|2|Fa3/0/334
1.3.6.1.2.1.31.1.1.1.1.335|2|Fa3/0/335
1.3.6.1.2.1.31.1.1.1.1.336|2|Fa3/0/336
1.3.6.1.2.1.31.1.1.1.1.337|2|Fa3/0/337
1.3.6.1.2.1.31.1.1.1.1.338|2|Fa3/0/338
1.3.6.1.2.1.31.1.1.1.1.339|2|Fa3/0/339
1.3.6.1.2.1.31.1.1.1.1.340|2|Fa3/0/340
1.3.6.1.2.1.31.1.1.1.1.341|2|Fa3/0/341
1.3.6.1.2.1.31.1.1.1.1.342|2|Fa3/0/342
1.3.6.1.2.1.31.1.1.1.1.343|2|Fa3/0/343
1.3.6.1.2.1.31.1.1.1.1.344|2|Fa3/0/344
1.3.6.1.2.1.31.1.1.1.1.345|2|Fa3/0/345
1.3.6.1.2.1.31.1.1.1.1.346|2|Fa3/0/346
1.3.6.1.2.1.31.1.1.1.1.347|2|Fa3/0/347
1.3.6.1.2.1.31.1.1.1.1.348|2|Fa3/0/348
1.3.6.1.2.1.31.1.1.1.1.349|2|Fa3/0/349
1.3.6.1.2.1.31.1.1.1.1.350|2|Fa3/0/350
snmpsim-0.4.5/data/1.3.6.1.6.1.1.0/ 0000775 0063214 0063214 00000000000 13412164240 015722 5 ustar ietingof ietingof snmpsim-0.4.5/data/1.3.6.1.6.1.1.0/127.0.0.1.snmprec 0000664 0063214 0063214 00000006055 13051045252 020265 0 ustar ietingof ietingof 1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.2.1|4|lo0
1.3.6.1.2.1.2.2.1.2.2|4|gif0
1.3.6.1.2.1.2.2.1.2.3|4|stf0
1.3.6.1.2.1.2.2.1.2.4|4|en0
1.3.6.1.2.1.2.2.1.2.5|4|p2p0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|55
1.3.6.1.2.1.2.2.1.3.3|2|57
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16384
1.3.6.1.2.1.2.2.1.4.2|2|1280
1.3.6.1.2.1.2.2.1.4.3|2|1280
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|2304
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|10000000
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.6.5|4x|008d120f4fa4
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|2
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.10.1|65|2429666
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|190522483
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.11.1|65|37027
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|276146
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.16.1|65|2429666
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|34763800
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.17.1|65|20720
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|225062
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
snmpsim-0.4.5/data/1.3.6.1.6.1.1.0/README-v2c.txt 0000664 0063214 0063214 00000000530 13051045252 020106 0 ustar ietingof ietingof This directory serves as a special case when Simulator is running
in --v2c-arch mode.
This is a community name AND transport domain specific directory.
The .snmprec files in this directory would be used by Simulator whenever
community name in request is empty AND transport domain AND source address
being used matches the .snmprec filename.
snmpsim-0.4.5/data/1.3.6.1.6.1.1.0/README-v3.txt 0000664 0063214 0063214 00000000526 13051045252 017751 0 ustar ietingof ietingof This directory serves as a special case when Simulator is NOT running
in --v2c-arch mode.
This is a ContextName AND transport domain specific directory.
The .snmprec files in this directory would be used by Simulator whenever
ContextName in request is empty AND transport domain AND source address
being used matches the .snmprec filename.
snmpsim-0.4.5/data/recorded/ 0000775 0063214 0063214 00000000000 13412164240 016105 5 ustar ietingof ietingof snmpsim-0.4.5/data/recorded/linux-full-walk.snmprec 0000664 0063214 0063214 00000604554 13051045252 022547 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4|Linux cray 2.6.21.5-smp #2 SMP Tue Jun 19 14:58:11 CDT 2007 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|233425120
1.3.6.1.2.1.1.4.0|4|Root (configure /etc/snmp/snmp.local.conf)
1.3.6.1.2.1.1.5.0|4|tt
1.3.6.1.2.1.1.6.0|4|KK12 (edit /etc/snmp/snmpd.conf)
1.3.6.1.2.1.1.8.0|67|2
1.3.6.1.2.1.1.9.1.2.1|6|1.3.6.1.6.3.10.3.1.1
1.3.6.1.2.1.1.9.1.2.2|6|1.3.6.1.6.3.11.3.1.1
1.3.6.1.2.1.1.9.1.2.3|6|1.3.6.1.6.3.15.2.1.1
1.3.6.1.2.1.1.9.1.2.4|6|1.3.6.1.6.3.1
1.3.6.1.2.1.1.9.1.2.5|6|1.3.6.1.2.1.49
1.3.6.1.2.1.1.9.1.2.6|6|1.3.6.1.2.1.4
1.3.6.1.2.1.1.9.1.2.7|6|1.3.6.1.2.1.50
1.3.6.1.2.1.1.9.1.2.8|6|1.3.6.1.6.3.16.2.2.1
1.3.6.1.2.1.1.9.1.3.1|4|The SNMP Management Architecture MIB.
1.3.6.1.2.1.1.9.1.3.2|4|The MIB for Message Processing and Dispatching.
1.3.6.1.2.1.1.9.1.3.3|4|The management information definitions for the SNMP User-based Security Model.
1.3.6.1.2.1.1.9.1.3.4|4|The MIB module for SNMPv2 entities
1.3.6.1.2.1.1.9.1.3.5|4|The MIB module for managing TCP implementations
1.3.6.1.2.1.1.9.1.3.6|4|The MIB module for managing IP and ICMP implementations
1.3.6.1.2.1.1.9.1.3.7|4|The MIB module for managing UDP implementations
1.3.6.1.2.1.1.9.1.3.8|4|View-based Access Control Model for SNMP.
1.3.6.1.2.1.1.9.1.4.1|67|2
1.3.6.1.2.1.1.9.1.4.2|67|2
1.3.6.1.2.1.1.9.1.4.3|67|2
1.3.6.1.2.1.1.9.1.4.4|67|2
1.3.6.1.2.1.1.9.1.4.5|67|2
1.3.6.1.2.1.1.9.1.4.6|67|2
1.3.6.1.2.1.1.9.1.4.7|67|2
1.3.6.1.2.1.1.9.1.4.8|67|2
1.3.6.1.2.1.2.1.0|2|2
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|eth0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.4.1|2|16436
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|100000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.10.1|65|762888510
1.3.6.1.2.1.2.2.1.10.2|65|2692239107
1.3.6.1.2.1.2.2.1.11.1|65|1306858
1.3.6.1.2.1.2.2.1.11.2|65|21626527
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.16.1|65|762888510
1.3.6.1.2.1.2.2.1.16.2|65|2448654006
1.3.6.1.2.1.2.2.1.17.1|65|1306858
1.3.6.1.2.1.2.2.1.17.2|65|15237139
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.3.1.1.1.2.1.195.218.254.97|2|2
1.3.6.1.2.1.3.1.1.2.2.1.195.218.254.97|4x|000e849f9c19
1.3.6.1.2.1.3.1.1.3.2.1.195.218.254.97|64x|c3dafe61
1.3.6.1.2.1.4.1.0|2|2
1.3.6.1.2.1.4.2.0|2|64
1.3.6.1.2.1.4.3.0|65|22908563
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|64050
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|22835646
1.3.6.1.2.1.4.10.0|65|15835620
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.13.0|2|30
1.3.6.1.2.1.4.14.0|65|92
1.3.6.1.2.1.4.15.0|65|46
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|31158
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|699707
1.3.6.1.2.1.4.20.1.1.127.0.0.1|64x|7f000001
1.3.6.1.2.1.4.20.1.1.195.218.254.105|64x|c3dafe69
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.195.218.254.105|2|2
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64x|ff000000
1.3.6.1.2.1.4.20.1.3.195.218.254.105|64x|ffffff00
1.3.6.1.2.1.4.20.1.4.127.0.0.1|2|0
1.3.6.1.2.1.4.20.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.21.1.1.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.1.127.0.0.0|64x|7f000000
1.3.6.1.2.1.4.21.1.1.195.218.254.0|64x|c3dafe00
1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|2
1.3.6.1.2.1.4.21.1.2.127.0.0.0|2|1
1.3.6.1.2.1.4.21.1.2.195.218.254.0|2|2
1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|1
1.3.6.1.2.1.4.21.1.3.127.0.0.0|2|0
1.3.6.1.2.1.4.21.1.3.195.218.254.0|2|0
1.3.6.1.2.1.4.21.1.7.0.0.0.0|64x|c3dafe61
1.3.6.1.2.1.4.21.1.7.127.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.7.195.218.254.0|64x|00000000
1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4
1.3.6.1.2.1.4.21.1.8.127.0.0.0|2|3
1.3.6.1.2.1.4.21.1.8.195.218.254.0|2|3
1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|2
1.3.6.1.2.1.4.21.1.9.127.0.0.0|2|2
1.3.6.1.2.1.4.21.1.9.195.218.254.0|2|2
1.3.6.1.2.1.4.21.1.11.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.11.127.0.0.0|64x|ff000000
1.3.6.1.2.1.4.21.1.11.195.218.254.0|64x|ffffff00
1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.127.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.195.218.254.0|6|0.0
1.3.6.1.2.1.4.22.1.1.2.195.218.254.97|2|2
1.3.6.1.2.1.4.22.1.2.2.195.218.254.97|4x|000e849f9c19
1.3.6.1.2.1.4.22.1.3.2.195.218.254.97|64x|c3dafe61
1.3.6.1.2.1.4.22.1.4.2.195.218.254.97|2|3
1.3.6.1.2.1.4.23.0|65|0
1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.195.218.254.97|64x|00000000
1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.0.0.0.255.0.0.0.0.0|64x|7f000000
1.3.6.1.2.1.4.24.4.1.1.195.218.254.0.0.255.255.255.0.0.0.0.0|64x|c3dafe00
1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.195.218.254.97|64x|00000000
1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.0.0.0.255.0.0.0.0.0|64x|000000ff
1.3.6.1.2.1.4.24.4.1.2.195.218.254.0.0.255.255.255.0.0.0.0.0|64x|00ffffff
1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.195.218.254.97|2|0
1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.0.0.0.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.3.195.218.254.0.0.255.255.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.195.218.254.97|64x|c3dafe61
1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.0.0.0.255.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.24.4.1.4.195.218.254.0.0.255.255.255.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.195.218.254.97|2|2
1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.0.0.0.255.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.4.1.5.195.218.254.0.0.255.255.255.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.195.218.254.97|2|4
1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.0.0.0.255.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.4.1.6.195.218.254.0.0.255.255.255.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.195.218.254.97|2|2
1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.0.0.0.255.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.7.195.218.254.0.0.255.255.255.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.195.218.254.97|6|0.0
1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.0.0.0.255.0.0.0.0.0|6|0.0
1.3.6.1.2.1.4.24.4.1.9.195.218.254.0.0.255.255.255.0.0.0.0.0|6|0.0
1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.195.218.254.97|2|0
1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.0.0.0.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.10.195.218.254.0.0.255.255.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.195.218.254.97|2|1
1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.0.0.0.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.11.195.218.254.0.0.255.255.255.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.12.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.13.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.14.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.0.0.0.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.15.195.218.254.0.0.255.255.255.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.195.218.254.97|2|1
1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.0.0.0.255.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.4.1.16.195.218.254.0.0.255.255.255.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.6.0|66|6
1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|2
1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.7.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|4
1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|2
1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|66|0
1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|1
1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256
1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256
1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97|2|1
1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.1.4.195.218.254.0.24.1.2.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.25.0|2|2
1.3.6.1.2.1.4.26.0|2|64
1.3.6.1.2.1.4.31.1.1.3.1|65|22906399
1.3.6.1.2.1.4.31.1.1.3.2|65|0
1.3.6.1.2.1.4.31.1.1.4.1|70|22906399
1.3.6.1.2.1.4.31.1.1.4.2|70|0
1.3.6.1.2.1.4.31.1.1.6.1|70|0
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|64050
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.13.2|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|46
1.3.6.1.2.1.4.31.1.1.15.2|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|22833483
1.3.6.1.2.1.4.31.1.1.18.2|65|0
1.3.6.1.2.1.4.31.1.1.19.1|70|22833483
1.3.6.1.2.1.4.31.1.1.19.2|70|0
1.3.6.1.2.1.4.31.1.1.20.1|65|15833452
1.3.6.1.2.1.4.31.1.1.20.2|65|6
1.3.6.1.2.1.4.31.1.1.21.1|70|15833452
1.3.6.1.2.1.4.31.1.1.21.2|70|6
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|699707
1.3.6.1.2.1.4.31.1.1.29.2|65|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|30000
1.3.6.1.2.1.4.31.1.1.47.2|66|30000
1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.3.1.4.195.218.254.105|2|2
1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|2
1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.4.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|1
1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.1.4.215.218.234.183.0
1.3.6.1.2.1.4.34.1.5.1.4.195.218.254.105|6|1.3.6.1.2.1.4.32.1.5.2.1.4.215.218.234.183.0
1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|6|1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1|2|2
1.3.6.1.2.1.4.34.1.6.1.4.195.218.254.105|2|2
1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|5
1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.7.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|1
1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1|67|0
1.3.6.1.2.1.4.34.1.8.1.4.195.218.254.105|67|0
1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|67|0
1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|67|0
1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1|67|0
1.3.6.1.2.1.4.34.1.9.1.4.195.218.254.105|67|0
1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|67|0
1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|67|0
1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.34.1.10.1.4.195.218.254.105|2|1
1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|1
1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1|2|2
1.3.6.1.2.1.4.34.1.11.1.4.195.218.254.105|2|2
1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64|2|2
1.3.6.1.2.1.4.35.1.4.2.1.4.195.218.254.97|4x|000e849f9c19
1.3.6.1.2.1.4.35.1.6.2.1.4.195.218.254.97|2|3
1.3.6.1.2.1.4.35.1.7.2.1.4.195.218.254.97|2|1
1.3.6.1.2.1.4.35.1.8.2.1.4.195.218.254.97|2|1
1.3.6.1.2.1.5.1.0|65|324
1.3.6.1.2.1.5.2.0|65|3
1.3.6.1.2.1.5.3.0|65|248
1.3.6.1.2.1.5.4.0|65|54
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|0
1.3.6.1.2.1.5.9.0|65|22
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|2735
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|2735
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|0
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.6.1.0|2|1
1.3.6.1.2.1.6.2.0|2|200
1.3.6.1.2.1.6.3.0|2|120000
1.3.6.1.2.1.6.4.0|2|-1
1.3.6.1.2.1.6.5.0|65|104742
1.3.6.1.2.1.6.6.0|65|44969
1.3.6.1.2.1.6.7.0|65|1812
1.3.6.1.2.1.6.8.0|65|4441
1.3.6.1.2.1.6.9.0|66|9
1.3.6.1.2.1.6.10.0|65|22280578
1.3.6.1.2.1.6.11.0|65|15264067
1.3.6.1.2.1.6.12.0|65|7502
1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.25.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.37.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.111.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.113.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.587.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.668.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.2049.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.6000.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.36152.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.59364.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.60182.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.53.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.631.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.953.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.195.218.254.105.53.0.0.0.0.0|2|2
1.3.6.1.2.1.6.13.1.1.195.218.254.105.41511.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.41735.194.154.70.112.22|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.45632.10.105.41.179.3389|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.47639.208.71.169.36.6667|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.51620.74.125.77.125.5222|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.51684.194.67.10.226.22|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.55059.194.67.10.225.22|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.56134.205.188.8.43.5190|2|5
1.3.6.1.2.1.6.13.1.1.195.218.254.105.56769.194.67.2.106.5222|2|5
1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.25.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.37.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.111.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.113.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.587.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.668.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.2049.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.6000.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.36152.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.59364.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.60182.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.2.127.0.0.1.53.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.631.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.953.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.0|64x|7f000001
1.3.6.1.2.1.6.13.1.2.195.218.254.105.53.0.0.0.0.0|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.41511.194.67.1.250.993|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.41735.194.154.70.112.22|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.45632.10.105.41.179.3389|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.47639.208.71.169.36.6667|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.51620.74.125.77.125.5222|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.51684.194.67.10.226.22|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.55059.194.67.10.225.22|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.56134.205.188.8.43.5190|64x|c3dafe69
1.3.6.1.2.1.6.13.1.2.195.218.254.105.56769.194.67.2.106.5222|64x|c3dafe69
1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0|2|22
1.3.6.1.2.1.6.13.1.3.0.0.0.0.25.0.0.0.0.0|2|25
1.3.6.1.2.1.6.13.1.3.0.0.0.0.37.0.0.0.0.0|2|37
1.3.6.1.2.1.6.13.1.3.0.0.0.0.111.0.0.0.0.0|2|111
1.3.6.1.2.1.6.13.1.3.0.0.0.0.113.0.0.0.0.0|2|113
1.3.6.1.2.1.6.13.1.3.0.0.0.0.587.0.0.0.0.0|2|587
1.3.6.1.2.1.6.13.1.3.0.0.0.0.668.0.0.0.0.0|2|668
1.3.6.1.2.1.6.13.1.3.0.0.0.0.2049.0.0.0.0.0|2|2049
1.3.6.1.2.1.6.13.1.3.0.0.0.0.6000.0.0.0.0.0|2|6000
1.3.6.1.2.1.6.13.1.3.0.0.0.0.36152.0.0.0.0.0|2|36152
1.3.6.1.2.1.6.13.1.3.0.0.0.0.59364.0.0.0.0.0|2|59364
1.3.6.1.2.1.6.13.1.3.0.0.0.0.60182.0.0.0.0.0|2|60182
1.3.6.1.2.1.6.13.1.3.127.0.0.1.53.0.0.0.0.0|2|53
1.3.6.1.2.1.6.13.1.3.127.0.0.1.631.0.0.0.0.0|2|631
1.3.6.1.2.1.6.13.1.3.127.0.0.1.953.0.0.0.0.0|2|953
1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.0|2|8118
1.3.6.1.2.1.6.13.1.3.195.218.254.105.53.0.0.0.0.0|2|53
1.3.6.1.2.1.6.13.1.3.195.218.254.105.41511.194.67.1.250.993|2|41511
1.3.6.1.2.1.6.13.1.3.195.218.254.105.41735.194.154.70.112.22|2|41735
1.3.6.1.2.1.6.13.1.3.195.218.254.105.45632.10.105.41.179.3389|2|45632
1.3.6.1.2.1.6.13.1.3.195.218.254.105.47639.208.71.169.36.6667|2|47639
1.3.6.1.2.1.6.13.1.3.195.218.254.105.51620.74.125.77.125.5222|2|51620
1.3.6.1.2.1.6.13.1.3.195.218.254.105.51684.194.67.10.226.22|2|51684
1.3.6.1.2.1.6.13.1.3.195.218.254.105.55059.194.67.10.225.22|2|55059
1.3.6.1.2.1.6.13.1.3.195.218.254.105.56134.205.188.8.43.5190|2|56134
1.3.6.1.2.1.6.13.1.3.195.218.254.105.56769.194.67.2.106.5222|2|56769
1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.25.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.37.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.111.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.113.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.587.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.668.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.2049.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.6000.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.36152.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.59364.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.60182.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.53.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.631.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.953.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.195.218.254.105.53.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.6.13.1.4.195.218.254.105.41511.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.195.218.254.105.41735.194.154.70.112.22|64x|c29a4670
1.3.6.1.2.1.6.13.1.4.195.218.254.105.45632.10.105.41.179.3389|64x|0a6929b3
1.3.6.1.2.1.6.13.1.4.195.218.254.105.47639.208.71.169.36.6667|64x|d047a924
1.3.6.1.2.1.6.13.1.4.195.218.254.105.51620.74.125.77.125.5222|64|J}M}
1.3.6.1.2.1.6.13.1.4.195.218.254.105.51684.194.67.10.226.22|64x|c2430ae2
1.3.6.1.2.1.6.13.1.4.195.218.254.105.55059.194.67.10.225.22|64x|c2430ae1
1.3.6.1.2.1.6.13.1.4.195.218.254.105.56134.205.188.8.43.5190|64x|cdbc082b
1.3.6.1.2.1.6.13.1.4.195.218.254.105.56769.194.67.2.106.5222|64x|c243026a
1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.25.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.37.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.111.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.113.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.587.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.668.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.2049.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.6000.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.36152.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.59364.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.0.0.0.0.60182.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.53.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.631.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.953.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.195.218.254.105.53.0.0.0.0.0|2|0
1.3.6.1.2.1.6.13.1.5.195.218.254.105.41511.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.195.218.254.105.41735.194.154.70.112.22|2|22
1.3.6.1.2.1.6.13.1.5.195.218.254.105.45632.10.105.41.179.3389|2|3389
1.3.6.1.2.1.6.13.1.5.195.218.254.105.47639.208.71.169.36.6667|2|6667
1.3.6.1.2.1.6.13.1.5.195.218.254.105.51620.74.125.77.125.5222|2|5222
1.3.6.1.2.1.6.13.1.5.195.218.254.105.51684.194.67.10.226.22|2|22
1.3.6.1.2.1.6.13.1.5.195.218.254.105.55059.194.67.10.225.22|2|22
1.3.6.1.2.1.6.13.1.5.195.218.254.105.56134.205.188.8.43.5190|2|5190
1.3.6.1.2.1.6.13.1.5.195.218.254.105.56769.194.67.2.106.5222|2|5222
1.3.6.1.2.1.6.14.0|65|3
1.3.6.1.2.1.6.15.0|65|6483
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.41511.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.41735.1.4.194.154.70.112.22|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.45632.1.4.10.105.41.179.3389|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.47639.1.4.208.71.169.36.6667|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.51620.1.4.74.125.77.125.5222|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.51684.1.4.194.67.10.226.22|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.55059.1.4.194.67.10.225.22|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.56134.1.4.205.188.8.43.5190|2|5
1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.56769.1.4.194.67.2.106.5222|2|5
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.41511.1.4.194.67.1.250.993|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.41735.1.4.194.154.70.112.22|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.45632.1.4.10.105.41.179.3389|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.47639.1.4.208.71.169.36.6667|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.51620.1.4.74.125.77.125.5222|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.51684.1.4.194.67.10.226.22|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.55059.1.4.194.67.10.225.22|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.56134.1.4.205.188.8.43.5190|66|0
1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.56769.1.4.194.67.2.106.5222|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.25|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.37|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.111|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.113|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.587|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.668|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.2049|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.6000|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.36152|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.59364|66|0
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.60182|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.53|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.631|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.953|66|0
1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.8118|66|0
1.3.6.1.2.1.6.20.1.4.1.4.195.218.254.105.53|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.80|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6000|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.631|66|0
1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.953|66|0
1.3.6.1.2.1.7.1.0|65|555447
1.3.6.1.2.1.7.2.0|65|229
1.3.6.1.2.1.7.3.0|65|1
1.3.6.1.2.1.7.4.0|65|560646
1.3.6.1.2.1.7.5.1.1.0.0.0.0.37|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.111|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.123|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.161|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.512|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.631|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.665|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.978|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.2049|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.32768|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.32769|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.32770|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.44998|64x|00000000
1.3.6.1.2.1.7.5.1.1.127.0.0.1.53|64x|7f000001
1.3.6.1.2.1.7.5.1.1.127.0.0.1.123|64x|7f000001
1.3.6.1.2.1.7.5.1.1.195.218.254.105.53|64x|c3dafe69
1.3.6.1.2.1.7.5.1.1.195.218.254.105.123|64x|c3dafe69
1.3.6.1.2.1.7.5.1.2.0.0.0.0.37|2|37
1.3.6.1.2.1.7.5.1.2.0.0.0.0.111|2|111
1.3.6.1.2.1.7.5.1.2.0.0.0.0.123|2|123
1.3.6.1.2.1.7.5.1.2.0.0.0.0.161|2|161
1.3.6.1.2.1.7.5.1.2.0.0.0.0.512|2|512
1.3.6.1.2.1.7.5.1.2.0.0.0.0.631|2|631
1.3.6.1.2.1.7.5.1.2.0.0.0.0.665|2|665
1.3.6.1.2.1.7.5.1.2.0.0.0.0.978|2|978
1.3.6.1.2.1.7.5.1.2.0.0.0.0.2049|2|2049
1.3.6.1.2.1.7.5.1.2.0.0.0.0.32768|2|32768
1.3.6.1.2.1.7.5.1.2.0.0.0.0.32769|2|32769
1.3.6.1.2.1.7.5.1.2.0.0.0.0.32770|2|32770
1.3.6.1.2.1.7.5.1.2.0.0.0.0.44998|2|44998
1.3.6.1.2.1.7.5.1.2.127.0.0.1.53|2|53
1.3.6.1.2.1.7.5.1.2.127.0.0.1.123|2|123
1.3.6.1.2.1.7.5.1.2.195.218.254.105.53|2|53
1.3.6.1.2.1.7.5.1.2.195.218.254.105.123|2|123
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.37.1.4.0.0.0.0.0.13480|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.111.1.4.0.0.0.0.0.13348|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.123.1.4.0.0.0.0.0.13701|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.161.1.4.0.0.0.0.0.17521|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.512.1.4.0.0.0.0.0.13481|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.631.1.4.0.0.0.0.0.16954|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.665.1.4.0.0.0.0.0.13621|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.978.1.4.0.0.0.0.0.13380|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.2049.1.4.0.0.0.0.0.13649|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32768.1.4.0.0.0.0.0.13386|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32769.1.4.0.0.0.0.0.13645|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32770.1.4.0.0.0.0.0.13671|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.44998.1.4.0.0.0.0.0.25448710|66|0
1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.53.1.4.0.0.0.0.0.13528|66|0
1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.123.1.4.0.0.0.0.0.13706|66|0
1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.53.1.4.0.0.0.0.0.13530|66|0
1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.123.1.4.0.0.0.0.0.13707|66|0
1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13702|66|0
1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13704|66|0
1.3.6.1.2.1.7.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13705|66|0
1.3.6.1.2.1.11.1.0|65|47500
1.3.6.1.2.1.11.2.0|65|47459
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|1
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|50584
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|10
1.3.6.1.2.1.11.16.0|65|47372
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|1
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|47483
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.25.1.1.0|67|233512142
1.3.6.1.2.1.25.1.2.0|4x|07da0a19160f0b002b0400
1.3.6.1.2.1.25.1.3.0|2|1536
1.3.6.1.2.1.25.1.4.0|4|424f4f545f494d4147453d4c696e757820726f20726f6f743d3830310a
1.3.6.1.2.1.25.1.5.0|66|15
1.3.6.1.2.1.25.1.6.0|66|165
1.3.6.1.2.1.25.1.7.0|2|0
1.3.6.1.2.1.25.2.2.0|2|1021976
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.3|2|3
1.3.6.1.2.1.25.2.3.1.1.6|2|6
1.3.6.1.2.1.25.2.3.1.1.7|2|7
1.3.6.1.2.1.25.2.3.1.1.10|2|10
1.3.6.1.2.1.25.2.3.1.1.31|2|31
1.3.6.1.2.1.25.2.3.1.1.32|2|32
1.3.6.1.2.1.25.2.3.1.1.33|2|33
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.31|4|/
1.3.6.1.2.1.25.2.3.1.3.32|4|/usr/local
1.3.6.1.2.1.25.2.3.1.3.33|4|/export
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.31|2|4096
1.3.6.1.2.1.25.2.3.1.4.32|2|4096
1.3.6.1.2.1.25.2.3.1.4.33|2|4096
1.3.6.1.2.1.25.2.3.1.5.1|2|1021976
1.3.6.1.2.1.25.2.3.1.5.3|2|2009964
1.3.6.1.2.1.25.2.3.1.5.6|2|1021976
1.3.6.1.2.1.25.2.3.1.5.7|2|207040
1.3.6.1.2.1.25.2.3.1.5.10|2|987988
1.3.6.1.2.1.25.2.3.1.5.31|2|2164327
1.3.6.1.2.1.25.2.3.1.5.32|2|16822765
1.3.6.1.2.1.25.2.3.1.5.33|2|96144541
1.3.6.1.2.1.25.2.3.1.6.1|2|958176
1.3.6.1.2.1.25.2.3.1.6.3|2|985608
1.3.6.1.2.1.25.2.3.1.6.6|2|23900
1.3.6.1.2.1.25.2.3.1.6.7|2|207040
1.3.6.1.2.1.25.2.3.1.6.10|2|27432
1.3.6.1.2.1.25.2.3.1.6.31|2|1667935
1.3.6.1.2.1.25.2.3.1.6.32|2|13299705
1.3.6.1.2.1.25.2.3.1.6.33|2|90601816
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.769|2|769
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
1.3.6.1.2.1.25.3.2.1.1.1280|2|1280
1.3.6.1.2.1.25.3.2.1.1.1281|2|1281
1.3.6.1.2.1.25.3.2.1.1.1537|2|1537
1.3.6.1.2.1.25.3.2.1.1.1552|2|1552
1.3.6.1.2.1.25.3.2.1.1.1553|2|1553
1.3.6.1.2.1.25.3.2.1.1.3072|2|3072
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.769|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1280|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.1281|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.1537|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1552|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.1553|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12
1.3.6.1.2.1.25.3.2.1.3.768|4|GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.769|4|GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.1280|4|lj
1.3.6.1.2.1.25.3.2.1.3.1281|4|ljc
1.3.6.1.2.1.25.3.2.1.3.1537|4|LITE-ON COMBO SOHC-4832K
1.3.6.1.2.1.25.3.2.1.3.1552|4|SCSI disk (/dev/sda)
1.3.6.1.2.1.25.3.2.1.3.1553|4|SCSI disk (/dev/sdb)
1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
1.3.6.1.2.1.25.3.2.1.4.769|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1280|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1281|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1537|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1552|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1553|6|0.0
1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0
1.3.6.1.2.1.25.3.2.1.5.768|2|2
1.3.6.1.2.1.25.3.2.1.5.769|2|2
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
1.3.6.1.2.1.25.3.2.1.5.1026|2|2
1.3.6.1.2.1.25.3.2.1.5.1280|2|1
1.3.6.1.2.1.25.3.2.1.5.1281|2|1
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
1.3.6.1.2.1.25.3.2.1.6.1280|65|0
1.3.6.1.2.1.25.3.2.1.6.1281|65|0
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.1.769|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|13
1.3.6.1.2.1.25.3.3.1.2.769|2|9
1.3.6.1.2.1.25.3.4.1.1.1025|2|1
1.3.6.1.2.1.25.3.4.1.1.1026|2|2
1.3.6.1.2.1.25.3.5.1.1.1280|2|2
1.3.6.1.2.1.25.3.5.1.1.1281|2|2
1.3.6.1.2.1.25.3.6.1.1.1537|2|1
1.3.6.1.2.1.25.3.6.1.1.1552|2|1
1.3.6.1.2.1.25.3.6.1.1.1553|2|1
1.3.6.1.2.1.25.3.6.1.2.1537|2|2
1.3.6.1.2.1.25.3.6.1.2.1552|2|2
1.3.6.1.2.1.25.3.6.1.2.1553|2|2
1.3.6.1.2.1.25.3.6.1.3.1537|2|1
1.3.6.1.2.1.25.3.6.1.3.1552|2|2
1.3.6.1.2.1.25.3.6.1.3.1553|2|2
1.3.6.1.2.1.25.3.6.1.4.1537|2|0
1.3.6.1.2.1.25.3.6.1.4.1552|2|78150744
1.3.6.1.2.1.25.3.6.1.4.1553|2|390711384
1.3.6.1.2.1.25.3.7.1.1.1552.1|2|1
1.3.6.1.2.1.25.3.7.1.1.1552.2|2|2
1.3.6.1.2.1.25.3.7.1.1.1552.3|2|3
1.3.6.1.2.1.25.3.7.1.1.1553.1|2|1
1.3.6.1.2.1.25.3.7.1.2.1552.1|4|/dev/sda1
1.3.6.1.2.1.25.3.7.1.2.1552.2|4|/dev/sda2
1.3.6.1.2.1.25.3.7.1.2.1552.3|4|/dev/sda3
1.3.6.1.2.1.25.3.7.1.2.1553.1|4|/dev/sdb1
1.3.6.1.2.1.25.3.7.1.3.1552.1|4|0x801
1.3.6.1.2.1.25.3.7.1.3.1552.2|4|0x802
1.3.6.1.2.1.25.3.7.1.3.1552.3|4|0x803
1.3.6.1.2.1.25.3.7.1.3.1553.1|4|0x811
1.3.6.1.2.1.25.3.7.1.4.1552.1|2|8657308
1.3.6.1.2.1.25.3.7.1.4.1552.2|2|0
1.3.6.1.2.1.25.3.7.1.4.1552.3|2|67291060
1.3.6.1.2.1.25.3.7.1.4.1553.1|2|384578164
1.3.6.1.2.1.25.3.7.1.5.1552.1|2|1
1.3.6.1.2.1.25.3.7.1.5.1552.2|2|0
1.3.6.1.2.1.25.3.7.1.5.1552.3|2|2
1.3.6.1.2.1.25.3.7.1.5.1553.1|2|3
1.3.6.1.2.1.25.3.8.1.1.1|2|1
1.3.6.1.2.1.25.3.8.1.1.2|2|2
1.3.6.1.2.1.25.3.8.1.1.3|2|3
1.3.6.1.2.1.25.3.8.1.2.1|4|/
1.3.6.1.2.1.25.3.8.1.2.2|4|/usr/local
1.3.6.1.2.1.25.3.8.1.2.3|4|/export
1.3.6.1.2.1.25.3.8.1.3.1|4|
1.3.6.1.2.1.25.3.8.1.3.2|4|
1.3.6.1.2.1.25.3.8.1.3.3|4|
1.3.6.1.2.1.25.3.8.1.4.1|6|1.3.6.1.2.1.25.3.9.23
1.3.6.1.2.1.25.3.8.1.4.2|6|1.3.6.1.2.1.25.3.9.23
1.3.6.1.2.1.25.3.8.1.4.3|6|1.3.6.1.2.1.25.3.9.23
1.3.6.1.2.1.25.3.8.1.5.1|2|1
1.3.6.1.2.1.25.3.8.1.5.2|2|1
1.3.6.1.2.1.25.3.8.1.5.3|2|1
1.3.6.1.2.1.25.3.8.1.6.1|2|1
1.3.6.1.2.1.25.3.8.1.6.2|2|2
1.3.6.1.2.1.25.3.8.1.6.3|2|2
1.3.6.1.2.1.25.3.8.1.7.1|2|31
1.3.6.1.2.1.25.3.8.1.7.2|2|32
1.3.6.1.2.1.25.3.8.1.7.3|2|33
1.3.6.1.2.1.25.3.8.1.8.1|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.8.2|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.8.3|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.1|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.2|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.3|4x|0000010100000000
1.3.6.1.2.1.25.4.2.1.1.1|2|1
1.3.6.1.2.1.25.4.2.1.1.2|2|2
1.3.6.1.2.1.25.4.2.1.1.3|2|3
1.3.6.1.2.1.25.4.2.1.1.4|2|4
1.3.6.1.2.1.25.4.2.1.1.5|2|5
1.3.6.1.2.1.25.4.2.1.1.6|2|6
1.3.6.1.2.1.25.4.2.1.1.7|2|7
1.3.6.1.2.1.25.4.2.1.1.8|2|8
1.3.6.1.2.1.25.4.2.1.1.9|2|9
1.3.6.1.2.1.25.4.2.1.1.87|2|87
1.3.6.1.2.1.25.4.2.1.1.88|2|88
1.3.6.1.2.1.25.4.2.1.1.89|2|89
1.3.6.1.2.1.25.4.2.1.1.184|2|184
1.3.6.1.2.1.25.4.2.1.1.185|2|185
1.3.6.1.2.1.25.4.2.1.1.186|2|186
1.3.6.1.2.1.25.4.2.1.1.187|2|187
1.3.6.1.2.1.25.4.2.1.1.190|2|190
1.3.6.1.2.1.25.4.2.1.1.192|2|192
1.3.6.1.2.1.25.4.2.1.1.204|2|204
1.3.6.1.2.1.25.4.2.1.1.220|2|220
1.3.6.1.2.1.25.4.2.1.1.221|2|221
1.3.6.1.2.1.25.4.2.1.1.222|2|222
1.3.6.1.2.1.25.4.2.1.1.223|2|223
1.3.6.1.2.1.25.4.2.1.1.224|2|224
1.3.6.1.2.1.25.4.2.1.1.225|2|225
1.3.6.1.2.1.25.4.2.1.1.226|2|226
1.3.6.1.2.1.25.4.2.1.1.227|2|227
1.3.6.1.2.1.25.4.2.1.1.228|2|228
1.3.6.1.2.1.25.4.2.1.1.229|2|229
1.3.6.1.2.1.25.4.2.1.1.230|2|230
1.3.6.1.2.1.25.4.2.1.1.231|2|231
1.3.6.1.2.1.25.4.2.1.1.232|2|232
1.3.6.1.2.1.25.4.2.1.1.233|2|233
1.3.6.1.2.1.25.4.2.1.1.234|2|234
1.3.6.1.2.1.25.4.2.1.1.903|2|903
1.3.6.1.2.1.25.4.2.1.1.904|2|904
1.3.6.1.2.1.25.4.2.1.1.940|2|940
1.3.6.1.2.1.25.4.2.1.1.941|2|941
1.3.6.1.2.1.25.4.2.1.1.969|2|969
1.3.6.1.2.1.25.4.2.1.1.970|2|970
1.3.6.1.2.1.25.4.2.1.1.975|2|975
1.3.6.1.2.1.25.4.2.1.1.976|2|976
1.3.6.1.2.1.25.4.2.1.1.1045|2|1045
1.3.6.1.2.1.25.4.2.1.1.1046|2|1046
1.3.6.1.2.1.25.4.2.1.1.1050|2|1050
1.3.6.1.2.1.25.4.2.1.1.1119|2|1119
1.3.6.1.2.1.25.4.2.1.1.2375|2|2375
1.3.6.1.2.1.25.4.2.1.1.2452|2|2452
1.3.6.1.2.1.25.4.2.1.1.2454|2|2454
1.3.6.1.2.1.25.4.2.1.1.2497|2|2497
1.3.6.1.2.1.25.4.2.1.1.2501|2|2501
1.3.6.1.2.1.25.4.2.1.1.2918|2|2918
1.3.6.1.2.1.25.4.2.1.1.2922|2|2922
1.3.6.1.2.1.25.4.2.1.1.2991|2|2991
1.3.6.1.2.1.25.4.2.1.1.2999|2|2999
1.3.6.1.2.1.25.4.2.1.1.3002|2|3002
1.3.6.1.2.1.25.4.2.1.1.3032|2|3032
1.3.6.1.2.1.25.4.2.1.1.3034|2|3034
1.3.6.1.2.1.25.4.2.1.1.3035|2|3035
1.3.6.1.2.1.25.4.2.1.1.3036|2|3036
1.3.6.1.2.1.25.4.2.1.1.3037|2|3037
1.3.6.1.2.1.25.4.2.1.1.3038|2|3038
1.3.6.1.2.1.25.4.2.1.1.3039|2|3039
1.3.6.1.2.1.25.4.2.1.1.3040|2|3040
1.3.6.1.2.1.25.4.2.1.1.3041|2|3041
1.3.6.1.2.1.25.4.2.1.1.3042|2|3042
1.3.6.1.2.1.25.4.2.1.1.3043|2|3043
1.3.6.1.2.1.25.4.2.1.1.3044|2|3044
1.3.6.1.2.1.25.4.2.1.1.3045|2|3045
1.3.6.1.2.1.25.4.2.1.1.3047|2|3047
1.3.6.1.2.1.25.4.2.1.1.3050|2|3050
1.3.6.1.2.1.25.4.2.1.1.3055|2|3055
1.3.6.1.2.1.25.4.2.1.1.3066|2|3066
1.3.6.1.2.1.25.4.2.1.1.3068|2|3068
1.3.6.1.2.1.25.4.2.1.1.3070|2|3070
1.3.6.1.2.1.25.4.2.1.1.3071|2|3071
1.3.6.1.2.1.25.4.2.1.1.3077|2|3077
1.3.6.1.2.1.25.4.2.1.1.3078|2|3078
1.3.6.1.2.1.25.4.2.1.1.3079|2|3079
1.3.6.1.2.1.25.4.2.1.1.3082|2|3082
1.3.6.1.2.1.25.4.2.1.1.3083|2|3083
1.3.6.1.2.1.25.4.2.1.1.3103|2|3103
1.3.6.1.2.1.25.4.2.1.1.3108|2|3108
1.3.6.1.2.1.25.4.2.1.1.3110|2|3110
1.3.6.1.2.1.25.4.2.1.1.3113|2|3113
1.3.6.1.2.1.25.4.2.1.1.3116|2|3116
1.3.6.1.2.1.25.4.2.1.1.3194|2|3194
1.3.6.1.2.1.25.4.2.1.1.3214|2|3214
1.3.6.1.2.1.25.4.2.1.1.3225|2|3225
1.3.6.1.2.1.25.4.2.1.1.3234|2|3234
1.3.6.1.2.1.25.4.2.1.1.3235|2|3235
1.3.6.1.2.1.25.4.2.1.1.3236|2|3236
1.3.6.1.2.1.25.4.2.1.1.3237|2|3237
1.3.6.1.2.1.25.4.2.1.1.3238|2|3238
1.3.6.1.2.1.25.4.2.1.1.3243|2|3243
1.3.6.1.2.1.25.4.2.1.1.3329|2|3329
1.3.6.1.2.1.25.4.2.1.1.3373|2|3373
1.3.6.1.2.1.25.4.2.1.1.3466|2|3466
1.3.6.1.2.1.25.4.2.1.1.3532|2|3532
1.3.6.1.2.1.25.4.2.1.1.3920|2|3920
1.3.6.1.2.1.25.4.2.1.1.3921|2|3921
1.3.6.1.2.1.25.4.2.1.1.3932|2|3932
1.3.6.1.2.1.25.4.2.1.1.3968|2|3968
1.3.6.1.2.1.25.4.2.1.1.3969|2|3969
1.3.6.1.2.1.25.4.2.1.1.3972|2|3972
1.3.6.1.2.1.25.4.2.1.1.3977|2|3977
1.3.6.1.2.1.25.4.2.1.1.3979|2|3979
1.3.6.1.2.1.25.4.2.1.1.3981|2|3981
1.3.6.1.2.1.25.4.2.1.1.3984|2|3984
1.3.6.1.2.1.25.4.2.1.1.3985|2|3985
1.3.6.1.2.1.25.4.2.1.1.3986|2|3986
1.3.6.1.2.1.25.4.2.1.1.3988|2|3988
1.3.6.1.2.1.25.4.2.1.1.3993|2|3993
1.3.6.1.2.1.25.4.2.1.1.3994|2|3994
1.3.6.1.2.1.25.4.2.1.1.3995|2|3995
1.3.6.1.2.1.25.4.2.1.1.3996|2|3996
1.3.6.1.2.1.25.4.2.1.1.3997|2|3997
1.3.6.1.2.1.25.4.2.1.1.3998|2|3998
1.3.6.1.2.1.25.4.2.1.1.3999|2|3999
1.3.6.1.2.1.25.4.2.1.1.4004|2|4004
1.3.6.1.2.1.25.4.2.1.1.4007|2|4007
1.3.6.1.2.1.25.4.2.1.1.4008|2|4008
1.3.6.1.2.1.25.4.2.1.1.4009|2|4009
1.3.6.1.2.1.25.4.2.1.1.4010|2|4010
1.3.6.1.2.1.25.4.2.1.1.4011|2|4011
1.3.6.1.2.1.25.4.2.1.1.4012|2|4012
1.3.6.1.2.1.25.4.2.1.1.4014|2|4014
1.3.6.1.2.1.25.4.2.1.1.4016|2|4016
1.3.6.1.2.1.25.4.2.1.1.4018|2|4018
1.3.6.1.2.1.25.4.2.1.1.4019|2|4019
1.3.6.1.2.1.25.4.2.1.1.4021|2|4021
1.3.6.1.2.1.25.4.2.1.1.4026|2|4026
1.3.6.1.2.1.25.4.2.1.1.4027|2|4027
1.3.6.1.2.1.25.4.2.1.1.4031|2|4031
1.3.6.1.2.1.25.4.2.1.1.4036|2|4036
1.3.6.1.2.1.25.4.2.1.1.4037|2|4037
1.3.6.1.2.1.25.4.2.1.1.4041|2|4041
1.3.6.1.2.1.25.4.2.1.1.4045|2|4045
1.3.6.1.2.1.25.4.2.1.1.4048|2|4048
1.3.6.1.2.1.25.4.2.1.1.4049|2|4049
1.3.6.1.2.1.25.4.2.1.1.4053|2|4053
1.3.6.1.2.1.25.4.2.1.1.4054|2|4054
1.3.6.1.2.1.25.4.2.1.1.4059|2|4059
1.3.6.1.2.1.25.4.2.1.1.4063|2|4063
1.3.6.1.2.1.25.4.2.1.1.4064|2|4064
1.3.6.1.2.1.25.4.2.1.1.4132|2|4132
1.3.6.1.2.1.25.4.2.1.1.4138|2|4138
1.3.6.1.2.1.25.4.2.1.1.4151|2|4151
1.3.6.1.2.1.25.4.2.1.1.4155|2|4155
1.3.6.1.2.1.25.4.2.1.1.8332|2|8332
1.3.6.1.2.1.25.4.2.1.1.8337|2|8337
1.3.6.1.2.1.25.4.2.1.1.11508|2|11508
1.3.6.1.2.1.25.4.2.1.1.11511|2|11511
1.3.6.1.2.1.25.4.2.1.1.14710|2|14710
1.3.6.1.2.1.25.4.2.1.1.14797|2|14797
1.3.6.1.2.1.25.4.2.1.1.19461|2|19461
1.3.6.1.2.1.25.4.2.1.1.19802|2|19802
1.3.6.1.2.1.25.4.2.1.1.20269|2|20269
1.3.6.1.2.1.25.4.2.1.1.20571|2|20571
1.3.6.1.2.1.25.4.2.1.1.20996|2|20996
1.3.6.1.2.1.25.4.2.1.1.21620|2|21620
1.3.6.1.2.1.25.4.2.1.1.22336|2|22336
1.3.6.1.2.1.25.4.2.1.1.22476|2|22476
1.3.6.1.2.1.25.4.2.1.1.22477|2|22477
1.3.6.1.2.1.25.4.2.1.1.22558|2|22558
1.3.6.1.2.1.25.4.2.1.2.1|4|init
1.3.6.1.2.1.25.4.2.1.2.2|4|migration/0
1.3.6.1.2.1.25.4.2.1.2.3|4|ksoftirqd/0
1.3.6.1.2.1.25.4.2.1.2.4|4|migration/1
1.3.6.1.2.1.25.4.2.1.2.5|4|ksoftirqd/1
1.3.6.1.2.1.25.4.2.1.2.6|4|events/0
1.3.6.1.2.1.25.4.2.1.2.7|4|events/1
1.3.6.1.2.1.25.4.2.1.2.8|4|khelper
1.3.6.1.2.1.25.4.2.1.2.9|4|kthread
1.3.6.1.2.1.25.4.2.1.2.87|4|kblockd/0
1.3.6.1.2.1.25.4.2.1.2.88|4|kblockd/1
1.3.6.1.2.1.25.4.2.1.2.89|4|kacpid
1.3.6.1.2.1.25.4.2.1.2.184|4|ata/0
1.3.6.1.2.1.25.4.2.1.2.185|4|ata/1
1.3.6.1.2.1.25.4.2.1.2.186|4|ata_aux
1.3.6.1.2.1.25.4.2.1.2.187|4|ksuspend_usbd
1.3.6.1.2.1.25.4.2.1.2.190|4|khubd
1.3.6.1.2.1.25.4.2.1.2.192|4|kseriod
1.3.6.1.2.1.25.4.2.1.2.204|4|khpsbpkt
1.3.6.1.2.1.25.4.2.1.2.220|4|pdflush
1.3.6.1.2.1.25.4.2.1.2.221|4|pdflush
1.3.6.1.2.1.25.4.2.1.2.222|4|kswapd0
1.3.6.1.2.1.25.4.2.1.2.223|4|aio/0
1.3.6.1.2.1.25.4.2.1.2.224|4|aio/1
1.3.6.1.2.1.25.4.2.1.2.225|4|jfsIO
1.3.6.1.2.1.25.4.2.1.2.226|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.2.227|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.2.228|4|jfsSync
1.3.6.1.2.1.25.4.2.1.2.229|4|xfslogd/0
1.3.6.1.2.1.25.4.2.1.2.230|4|xfslogd/1
1.3.6.1.2.1.25.4.2.1.2.231|4|xfsdatad/0
1.3.6.1.2.1.25.4.2.1.2.232|4|xfsdatad/1
1.3.6.1.2.1.25.4.2.1.2.233|4|ocfs2_wq
1.3.6.1.2.1.25.4.2.1.2.234|4|user_dlm
1.3.6.1.2.1.25.4.2.1.2.903|4|scsi_tgtd/0
1.3.6.1.2.1.25.4.2.1.2.904|4|scsi_tgtd/1
1.3.6.1.2.1.25.4.2.1.2.940|4|scsi_eh_2
1.3.6.1.2.1.25.4.2.1.2.941|4|scsi_eh_3
1.3.6.1.2.1.25.4.2.1.2.969|4|exec-osm/0
1.3.6.1.2.1.25.4.2.1.2.970|4|exec-osm/1
1.3.6.1.2.1.25.4.2.1.2.975|4|block-osm/0
1.3.6.1.2.1.25.4.2.1.2.976|4|block-osm/1
1.3.6.1.2.1.25.4.2.1.2.1045|4|kcryptd/0
1.3.6.1.2.1.25.4.2.1.2.1046|4|kcryptd/1
1.3.6.1.2.1.25.4.2.1.2.1050|4|kjournald
1.3.6.1.2.1.25.4.2.1.2.1119|4|udevd
1.3.6.1.2.1.25.4.2.1.2.2375|4|kpsmoused
1.3.6.1.2.1.25.4.2.1.2.2452|4|kjournald
1.3.6.1.2.1.25.4.2.1.2.2454|4|kjournald
1.3.6.1.2.1.25.4.2.1.2.2497|4|syslogd
1.3.6.1.2.1.25.4.2.1.2.2501|4|klogd
1.3.6.1.2.1.25.4.2.1.2.2918|4|rpc.portmap
1.3.6.1.2.1.25.4.2.1.2.2922|4|rpc.statd
1.3.6.1.2.1.25.4.2.1.2.2991|4|inetd
1.3.6.1.2.1.25.4.2.1.2.2999|4|sshd
1.3.6.1.2.1.25.4.2.1.2.3002|4|named
1.3.6.1.2.1.25.4.2.1.2.3032|4|rpc.rquotad
1.3.6.1.2.1.25.4.2.1.2.3034|4|nfsd4
1.3.6.1.2.1.25.4.2.1.2.3035|4|lockd
1.3.6.1.2.1.25.4.2.1.2.3036|4|rpciod/0
1.3.6.1.2.1.25.4.2.1.2.3037|4|rpciod/1
1.3.6.1.2.1.25.4.2.1.2.3038|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3039|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3040|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3041|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3042|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3043|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3044|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3045|4|nfsd
1.3.6.1.2.1.25.4.2.1.2.3047|4|rpc.mountd
1.3.6.1.2.1.25.4.2.1.2.3050|4|ntpd
1.3.6.1.2.1.25.4.2.1.2.3055|4|acpid
1.3.6.1.2.1.25.4.2.1.2.3066|4|dbus-daemon
1.3.6.1.2.1.25.4.2.1.2.3068|4|ntpd
1.3.6.1.2.1.25.4.2.1.2.3070|4|hald
1.3.6.1.2.1.25.4.2.1.2.3071|4|hald-runner
1.3.6.1.2.1.25.4.2.1.2.3077|4|hald-addon-keyb
1.3.6.1.2.1.25.4.2.1.2.3078|4|hald-addon-keyb
1.3.6.1.2.1.25.4.2.1.2.3079|4|hald-addon-keyb
1.3.6.1.2.1.25.4.2.1.2.3082|4|hald-addon-acpi
1.3.6.1.2.1.25.4.2.1.2.3083|4|hald-addon-stor
1.3.6.1.2.1.25.4.2.1.2.3103|4|cupsd
1.3.6.1.2.1.25.4.2.1.2.3108|4|crond
1.3.6.1.2.1.25.4.2.1.2.3110|4|atd
1.3.6.1.2.1.25.4.2.1.2.3113|4|sendmail
1.3.6.1.2.1.25.4.2.1.2.3116|4|sendmail
1.3.6.1.2.1.25.4.2.1.2.3194|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3214|4|automount
1.3.6.1.2.1.25.4.2.1.2.3225|4|snmpd
1.3.6.1.2.1.25.4.2.1.2.3234|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3235|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3236|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3237|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3238|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3243|4|xdm
1.3.6.1.2.1.25.4.2.1.2.3329|4|dbus-daemon
1.3.6.1.2.1.25.4.2.1.2.3373|4|httpd
1.3.6.1.2.1.25.4.2.1.2.3466|4|agetty
1.3.6.1.2.1.25.4.2.1.2.3532|4|gam_server
1.3.6.1.2.1.25.4.2.1.2.3920|4|X
1.3.6.1.2.1.25.4.2.1.2.3921|4|xdm
1.3.6.1.2.1.25.4.2.1.2.3932|4|xinitrc
1.3.6.1.2.1.25.4.2.1.2.3968|4|xinitrc
1.3.6.1.2.1.25.4.2.1.2.3969|4|xscreensaver
1.3.6.1.2.1.25.4.2.1.2.3972|4|ssh-agent
1.3.6.1.2.1.25.4.2.1.2.3977|4|dbus-launch
1.3.6.1.2.1.25.4.2.1.2.3979|4|dbus-daemon
1.3.6.1.2.1.25.4.2.1.2.3981|4|xfce4-session
1.3.6.1.2.1.25.4.2.1.2.3984|4|xfce-mcs-manage
1.3.6.1.2.1.25.4.2.1.2.3985|4|xfwm4
1.3.6.1.2.1.25.4.2.1.2.3986|4|xfdesktop
1.3.6.1.2.1.25.4.2.1.2.3988|4|Thunar
1.3.6.1.2.1.25.4.2.1.2.3993|4|xfce4-panel
1.3.6.1.2.1.25.4.2.1.2.3994|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3995|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3996|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3997|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3998|4|xterm
1.3.6.1.2.1.25.4.2.1.2.3999|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4004|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4007|4|xfce4-menu-plug
1.3.6.1.2.1.25.4.2.1.2.4008|4|bash
1.3.6.1.2.1.25.4.2.1.2.4009|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4010|4|bash
1.3.6.1.2.1.25.4.2.1.2.4011|4|bash
1.3.6.1.2.1.25.4.2.1.2.4012|4|bash
1.3.6.1.2.1.25.4.2.1.2.4014|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4016|4|bash
1.3.6.1.2.1.25.4.2.1.2.4018|4|xfce4-xmms-plug
1.3.6.1.2.1.25.4.2.1.2.4019|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4021|4|bash
1.3.6.1.2.1.25.4.2.1.2.4026|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4027|4|bash
1.3.6.1.2.1.25.4.2.1.2.4031|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4036|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4037|4|bash
1.3.6.1.2.1.25.4.2.1.2.4041|4|bash
1.3.6.1.2.1.25.4.2.1.2.4045|4|bash
1.3.6.1.2.1.25.4.2.1.2.4048|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4049|4|bash
1.3.6.1.2.1.25.4.2.1.2.4053|4|xterm
1.3.6.1.2.1.25.4.2.1.2.4054|4|bash
1.3.6.1.2.1.25.4.2.1.2.4059|4|bash
1.3.6.1.2.1.25.4.2.1.2.4063|4|bash
1.3.6.1.2.1.25.4.2.1.2.4064|4|bash
1.3.6.1.2.1.25.4.2.1.2.4132|4|pidgin
1.3.6.1.2.1.25.4.2.1.2.4138|4|firefox
1.3.6.1.2.1.25.4.2.1.2.4151|4|run-mozilla.sh
1.3.6.1.2.1.25.4.2.1.2.4155|4|firefox-bin
1.3.6.1.2.1.25.4.2.1.2.8332|4|ssh
1.3.6.1.2.1.25.4.2.1.2.8337|4|ssh
1.3.6.1.2.1.25.4.2.1.2.11508|4|less
1.3.6.1.2.1.25.4.2.1.2.11511|4|less
1.3.6.1.2.1.25.4.2.1.2.14710|4|wireshark
1.3.6.1.2.1.25.4.2.1.2.14797|4|wireshark
1.3.6.1.2.1.25.4.2.1.2.19461|4|privoxy
1.3.6.1.2.1.25.4.2.1.2.19802|4|emacs
1.3.6.1.2.1.25.4.2.1.2.20269|4|python
1.3.6.1.2.1.25.4.2.1.2.20571|4|ssh
1.3.6.1.2.1.25.4.2.1.2.20996|4|alpine
1.3.6.1.2.1.25.4.2.1.2.21620|4|python
1.3.6.1.2.1.25.4.2.1.2.22336|4|mpg321
1.3.6.1.2.1.25.4.2.1.2.22476|4|lotus
1.3.6.1.2.1.25.4.2.1.2.22477|4|rdesktop
1.3.6.1.2.1.25.4.2.1.2.22558|4|python
1.3.6.1.2.1.25.4.2.1.3.1|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4|6|0.0
1.3.6.1.2.1.25.4.2.1.3.5|6|0.0
1.3.6.1.2.1.25.4.2.1.3.6|6|0.0
1.3.6.1.2.1.25.4.2.1.3.7|6|0.0
1.3.6.1.2.1.25.4.2.1.3.8|6|0.0
1.3.6.1.2.1.25.4.2.1.3.9|6|0.0
1.3.6.1.2.1.25.4.2.1.3.87|6|0.0
1.3.6.1.2.1.25.4.2.1.3.88|6|0.0
1.3.6.1.2.1.25.4.2.1.3.89|6|0.0
1.3.6.1.2.1.25.4.2.1.3.184|6|0.0
1.3.6.1.2.1.25.4.2.1.3.185|6|0.0
1.3.6.1.2.1.25.4.2.1.3.186|6|0.0
1.3.6.1.2.1.25.4.2.1.3.187|6|0.0
1.3.6.1.2.1.25.4.2.1.3.190|6|0.0
1.3.6.1.2.1.25.4.2.1.3.192|6|0.0
1.3.6.1.2.1.25.4.2.1.3.204|6|0.0
1.3.6.1.2.1.25.4.2.1.3.220|6|0.0
1.3.6.1.2.1.25.4.2.1.3.221|6|0.0
1.3.6.1.2.1.25.4.2.1.3.222|6|0.0
1.3.6.1.2.1.25.4.2.1.3.223|6|0.0
1.3.6.1.2.1.25.4.2.1.3.224|6|0.0
1.3.6.1.2.1.25.4.2.1.3.225|6|0.0
1.3.6.1.2.1.25.4.2.1.3.226|6|0.0
1.3.6.1.2.1.25.4.2.1.3.227|6|0.0
1.3.6.1.2.1.25.4.2.1.3.228|6|0.0
1.3.6.1.2.1.25.4.2.1.3.229|6|0.0
1.3.6.1.2.1.25.4.2.1.3.230|6|0.0
1.3.6.1.2.1.25.4.2.1.3.231|6|0.0
1.3.6.1.2.1.25.4.2.1.3.232|6|0.0
1.3.6.1.2.1.25.4.2.1.3.233|6|0.0
1.3.6.1.2.1.25.4.2.1.3.234|6|0.0
1.3.6.1.2.1.25.4.2.1.3.903|6|0.0
1.3.6.1.2.1.25.4.2.1.3.904|6|0.0
1.3.6.1.2.1.25.4.2.1.3.940|6|0.0
1.3.6.1.2.1.25.4.2.1.3.941|6|0.0
1.3.6.1.2.1.25.4.2.1.3.969|6|0.0
1.3.6.1.2.1.25.4.2.1.3.970|6|0.0
1.3.6.1.2.1.25.4.2.1.3.975|6|0.0
1.3.6.1.2.1.25.4.2.1.3.976|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1045|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1046|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1050|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1119|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2375|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2452|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2454|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2497|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2501|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2918|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2922|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2991|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2999|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3002|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3032|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3034|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3035|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3036|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3037|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3038|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3039|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3040|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3041|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3042|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3043|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3044|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3045|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3047|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3050|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3055|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3066|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3068|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3070|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3071|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3077|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3078|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3079|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3082|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3083|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3103|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3108|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3110|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3113|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3116|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3194|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3214|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3225|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3234|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3235|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3236|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3237|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3238|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3243|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3329|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3373|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3466|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3532|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3920|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3921|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3932|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3968|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3969|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3972|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3977|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3979|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3981|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3984|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3985|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3986|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3988|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3993|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3994|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3995|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3996|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3997|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3998|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3999|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4004|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4007|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4008|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4009|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4010|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4011|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4012|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4014|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4016|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4018|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4019|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4021|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4026|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4027|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4031|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4036|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4037|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4041|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4045|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4048|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4049|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4053|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4054|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4059|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4063|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4064|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4132|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4138|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4151|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4155|6|0.0
1.3.6.1.2.1.25.4.2.1.3.8332|6|0.0
1.3.6.1.2.1.25.4.2.1.3.8337|6|0.0
1.3.6.1.2.1.25.4.2.1.3.11508|6|0.0
1.3.6.1.2.1.25.4.2.1.3.11511|6|0.0
1.3.6.1.2.1.25.4.2.1.3.14710|6|0.0
1.3.6.1.2.1.25.4.2.1.3.14797|6|0.0
1.3.6.1.2.1.25.4.2.1.3.19461|6|0.0
1.3.6.1.2.1.25.4.2.1.3.19802|6|0.0
1.3.6.1.2.1.25.4.2.1.3.20269|6|0.0
1.3.6.1.2.1.25.4.2.1.3.20571|6|0.0
1.3.6.1.2.1.25.4.2.1.3.20996|6|0.0
1.3.6.1.2.1.25.4.2.1.3.21620|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22336|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22476|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22477|6|0.0
1.3.6.1.2.1.25.4.2.1.3.22558|6|0.0
1.3.6.1.2.1.25.4.2.1.4.1|4|init [4]
1.3.6.1.2.1.25.4.2.1.4.2|4|migration/0
1.3.6.1.2.1.25.4.2.1.4.3|4|ksoftirqd/0
1.3.6.1.2.1.25.4.2.1.4.4|4|migration/1
1.3.6.1.2.1.25.4.2.1.4.5|4|ksoftirqd/1
1.3.6.1.2.1.25.4.2.1.4.6|4|events/0
1.3.6.1.2.1.25.4.2.1.4.7|4|events/1
1.3.6.1.2.1.25.4.2.1.4.8|4|khelper
1.3.6.1.2.1.25.4.2.1.4.9|4|kthread
1.3.6.1.2.1.25.4.2.1.4.87|4|kblockd/0
1.3.6.1.2.1.25.4.2.1.4.88|4|kblockd/1
1.3.6.1.2.1.25.4.2.1.4.89|4|kacpid
1.3.6.1.2.1.25.4.2.1.4.184|4|ata/0
1.3.6.1.2.1.25.4.2.1.4.185|4|ata/1
1.3.6.1.2.1.25.4.2.1.4.186|4|ata_aux
1.3.6.1.2.1.25.4.2.1.4.187|4|ksuspend_usbd
1.3.6.1.2.1.25.4.2.1.4.190|4|khubd
1.3.6.1.2.1.25.4.2.1.4.192|4|kseriod
1.3.6.1.2.1.25.4.2.1.4.204|4|khpsbpkt
1.3.6.1.2.1.25.4.2.1.4.220|4|pdflush
1.3.6.1.2.1.25.4.2.1.4.221|4|pdflush
1.3.6.1.2.1.25.4.2.1.4.222|4|kswapd0
1.3.6.1.2.1.25.4.2.1.4.223|4|aio/0
1.3.6.1.2.1.25.4.2.1.4.224|4|aio/1
1.3.6.1.2.1.25.4.2.1.4.225|4|jfsIO
1.3.6.1.2.1.25.4.2.1.4.226|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.4.227|4|jfsCommit
1.3.6.1.2.1.25.4.2.1.4.228|4|jfsSync
1.3.6.1.2.1.25.4.2.1.4.229|4|xfslogd/0
1.3.6.1.2.1.25.4.2.1.4.230|4|xfslogd/1
1.3.6.1.2.1.25.4.2.1.4.231|4|xfsdatad/0
1.3.6.1.2.1.25.4.2.1.4.232|4|xfsdatad/1
1.3.6.1.2.1.25.4.2.1.4.233|4|ocfs2_wq
1.3.6.1.2.1.25.4.2.1.4.234|4|user_dlm
1.3.6.1.2.1.25.4.2.1.4.903|4|scsi_tgtd/0
1.3.6.1.2.1.25.4.2.1.4.904|4|scsi_tgtd/1
1.3.6.1.2.1.25.4.2.1.4.940|4|scsi_eh_2
1.3.6.1.2.1.25.4.2.1.4.941|4|scsi_eh_3
1.3.6.1.2.1.25.4.2.1.4.969|4|exec-osm/0
1.3.6.1.2.1.25.4.2.1.4.970|4|exec-osm/1
1.3.6.1.2.1.25.4.2.1.4.975|4|block-osm/0
1.3.6.1.2.1.25.4.2.1.4.976|4|block-osm/1
1.3.6.1.2.1.25.4.2.1.4.1045|4|kcryptd/0
1.3.6.1.2.1.25.4.2.1.4.1046|4|kcryptd/1
1.3.6.1.2.1.25.4.2.1.4.1050|4|kjournald
1.3.6.1.2.1.25.4.2.1.4.1119|4|/sbin/udevd
1.3.6.1.2.1.25.4.2.1.4.2375|4|kpsmoused
1.3.6.1.2.1.25.4.2.1.4.2452|4|kjournald
1.3.6.1.2.1.25.4.2.1.4.2454|4|kjournald
1.3.6.1.2.1.25.4.2.1.4.2497|4|/usr/sbin/syslogd
1.3.6.1.2.1.25.4.2.1.4.2501|4|/usr/sbin/klogd
1.3.6.1.2.1.25.4.2.1.4.2918|4|/sbin/rpc.portmap
1.3.6.1.2.1.25.4.2.1.4.2922|4|/sbin/rpc.statd
1.3.6.1.2.1.25.4.2.1.4.2991|4|/usr/sbin/inetd
1.3.6.1.2.1.25.4.2.1.4.2999|4|/usr/sbin/sshd
1.3.6.1.2.1.25.4.2.1.4.3002|4|/usr/sbin/named
1.3.6.1.2.1.25.4.2.1.4.3032|4|/usr/sbin/rpc.rquotad
1.3.6.1.2.1.25.4.2.1.4.3034|4|nfsd4
1.3.6.1.2.1.25.4.2.1.4.3035|4|lockd
1.3.6.1.2.1.25.4.2.1.4.3036|4|rpciod/0
1.3.6.1.2.1.25.4.2.1.4.3037|4|rpciod/1
1.3.6.1.2.1.25.4.2.1.4.3038|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3039|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3040|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3041|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3042|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3043|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3044|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3045|4|nfsd
1.3.6.1.2.1.25.4.2.1.4.3047|4|/usr/sbin/rpc.mountd
1.3.6.1.2.1.25.4.2.1.4.3050|4|/usr/sbin/ntpd
1.3.6.1.2.1.25.4.2.1.4.3055|4|/usr/sbin/acpid
1.3.6.1.2.1.25.4.2.1.4.3066|4|/usr/bin/dbus-daemon
1.3.6.1.2.1.25.4.2.1.4.3068|4|/usr/sbin/ntpd
1.3.6.1.2.1.25.4.2.1.4.3070|4|/usr/sbin/hald
1.3.6.1.2.1.25.4.2.1.4.3071|4|hald-runner
1.3.6.1.2.1.25.4.2.1.4.3077|4|hald-addon-keyboard: listening on /dev/input/event1
1.3.6.1.2.1.25.4.2.1.4.3078|4|hald-addon-keyboard: listening on /dev/input/event4
1.3.6.1.2.1.25.4.2.1.4.3079|4|hald-addon-keyboard: listening on /dev/input/event5
1.3.6.1.2.1.25.4.2.1.4.3082|4|hald-addon-acpi: listening on acpid socket /var/run/acpid.socket
1.3.6.1.2.1.25.4.2.1.4.3083|4|hald-addon-storage: polling /dev/hdb (every 2 sec)
1.3.6.1.2.1.25.4.2.1.4.3103|4|/usr/sbin/cupsd
1.3.6.1.2.1.25.4.2.1.4.3108|4|/usr/sbin/crond
1.3.6.1.2.1.25.4.2.1.4.3110|4|/usr/sbin/atd
1.3.6.1.2.1.25.4.2.1.4.3113|4|sendmail: accepting connections
1.3.6.1.2.1.25.4.2.1.4.3116|4|sendmail: Queue runner@00:25:00 for /var/spool/clientmqueue
1.3.6.1.2.1.25.4.2.1.4.3194|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3214|4|/usr/sbin/automount
1.3.6.1.2.1.25.4.2.1.4.3225|4|/usr/sbin/snmpd
1.3.6.1.2.1.25.4.2.1.4.3234|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3235|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3236|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3237|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3238|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3243|4|/usr/bin/xdm
1.3.6.1.2.1.25.4.2.1.4.3329|4|/usr/bin/dbus-daemon
1.3.6.1.2.1.25.4.2.1.4.3373|4|/usr/sbin/httpd
1.3.6.1.2.1.25.4.2.1.4.3466|4|/sbin/agetty
1.3.6.1.2.1.25.4.2.1.4.3532|4|/usr/libexec/gam_server
1.3.6.1.2.1.25.4.2.1.4.3920|4|/usr/bin/X
1.3.6.1.2.1.25.4.2.1.4.3921|4|2d3a3020202020202020202020202020202020202020
1.3.6.1.2.1.25.4.2.1.4.3932|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.3968|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.3969|4|xscreensaver
1.3.6.1.2.1.25.4.2.1.4.3972|4|/usr/bin/ssh-agent
1.3.6.1.2.1.25.4.2.1.4.3977|4|/usr/bin/dbus-launch
1.3.6.1.2.1.25.4.2.1.4.3979|4|/usr/bin/dbus-daemon
1.3.6.1.2.1.25.4.2.1.4.3981|4|/usr/bin/xfce4-session
1.3.6.1.2.1.25.4.2.1.4.3984|4|xfce-mcs-manager
1.3.6.1.2.1.25.4.2.1.4.3985|4|xfwm4
1.3.6.1.2.1.25.4.2.1.4.3986|4|xfdesktop
1.3.6.1.2.1.25.4.2.1.4.3988|4|/usr/bin/Thunar
1.3.6.1.2.1.25.4.2.1.4.3993|4|xfce4-panel
1.3.6.1.2.1.25.4.2.1.4.3994|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3995|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3996|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3997|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3998|4|xterm
1.3.6.1.2.1.25.4.2.1.4.3999|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4004|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4007|4|/usr/libexec/xfce4/panel-plugins/xfce4-menu-plugin
1.3.6.1.2.1.25.4.2.1.4.4008|4|bash
1.3.6.1.2.1.25.4.2.1.4.4009|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4010|4|bash
1.3.6.1.2.1.25.4.2.1.4.4011|4|bash
1.3.6.1.2.1.25.4.2.1.4.4012|4|bash
1.3.6.1.2.1.25.4.2.1.4.4014|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4016|4|bash
1.3.6.1.2.1.25.4.2.1.4.4018|4|/usr/libexec/xfce4/panel-plugins/xfce4-xmms-plugin
1.3.6.1.2.1.25.4.2.1.4.4019|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4021|4|bash
1.3.6.1.2.1.25.4.2.1.4.4026|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4027|4|bash
1.3.6.1.2.1.25.4.2.1.4.4031|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4036|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4037|4|bash
1.3.6.1.2.1.25.4.2.1.4.4041|4|bash
1.3.6.1.2.1.25.4.2.1.4.4045|4|bash
1.3.6.1.2.1.25.4.2.1.4.4048|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4049|4|bash
1.3.6.1.2.1.25.4.2.1.4.4053|4|xterm
1.3.6.1.2.1.25.4.2.1.4.4054|4|bash
1.3.6.1.2.1.25.4.2.1.4.4059|4|bash
1.3.6.1.2.1.25.4.2.1.4.4063|4|bash
1.3.6.1.2.1.25.4.2.1.4.4064|4|bash
1.3.6.1.2.1.25.4.2.1.4.4132|4|/usr/bin/pidgin
1.3.6.1.2.1.25.4.2.1.4.4138|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.4151|4|/bin/sh
1.3.6.1.2.1.25.4.2.1.4.4155|4|/usr/local/lib/firefox-3.6/firefox-bin
1.3.6.1.2.1.25.4.2.1.4.8332|4|ssh
1.3.6.1.2.1.25.4.2.1.4.8337|4|ssh
1.3.6.1.2.1.25.4.2.1.4.11508|4|less
1.3.6.1.2.1.25.4.2.1.4.11511|4|less
1.3.6.1.2.1.25.4.2.1.4.14710|4|wireshark
1.3.6.1.2.1.25.4.2.1.4.14797|4|wireshark
1.3.6.1.2.1.25.4.2.1.4.19461|4|/usr/sbin/privoxy
1.3.6.1.2.1.25.4.2.1.4.19802|4|emacs
1.3.6.1.2.1.25.4.2.1.4.20269|4|python
1.3.6.1.2.1.25.4.2.1.4.20571|4|ssh
1.3.6.1.2.1.25.4.2.1.4.20996|4|alpine
1.3.6.1.2.1.25.4.2.1.4.21620|4|python
1.3.6.1.2.1.25.4.2.1.4.22336|4|mpg321
1.3.6.1.2.1.25.4.2.1.4.22476|4|/bin/bash
1.3.6.1.2.1.25.4.2.1.4.22477|4|rdesktop
1.3.6.1.2.1.25.4.2.1.4.22558|4|python
1.3.6.1.2.1.25.4.2.1.5.1|4|
1.3.6.1.2.1.25.4.2.1.5.2|4|
1.3.6.1.2.1.25.4.2.1.5.3|4|
1.3.6.1.2.1.25.4.2.1.5.4|4|
1.3.6.1.2.1.25.4.2.1.5.5|4|
1.3.6.1.2.1.25.4.2.1.5.6|4|
1.3.6.1.2.1.25.4.2.1.5.7|4|
1.3.6.1.2.1.25.4.2.1.5.8|4|
1.3.6.1.2.1.25.4.2.1.5.9|4|
1.3.6.1.2.1.25.4.2.1.5.87|4|
1.3.6.1.2.1.25.4.2.1.5.88|4|
1.3.6.1.2.1.25.4.2.1.5.89|4|
1.3.6.1.2.1.25.4.2.1.5.184|4|
1.3.6.1.2.1.25.4.2.1.5.185|4|
1.3.6.1.2.1.25.4.2.1.5.186|4|
1.3.6.1.2.1.25.4.2.1.5.187|4|
1.3.6.1.2.1.25.4.2.1.5.190|4|
1.3.6.1.2.1.25.4.2.1.5.192|4|
1.3.6.1.2.1.25.4.2.1.5.204|4|
1.3.6.1.2.1.25.4.2.1.5.220|4|
1.3.6.1.2.1.25.4.2.1.5.221|4|
1.3.6.1.2.1.25.4.2.1.5.222|4|
1.3.6.1.2.1.25.4.2.1.5.223|4|
1.3.6.1.2.1.25.4.2.1.5.224|4|
1.3.6.1.2.1.25.4.2.1.5.225|4|
1.3.6.1.2.1.25.4.2.1.5.226|4|
1.3.6.1.2.1.25.4.2.1.5.227|4|
1.3.6.1.2.1.25.4.2.1.5.228|4|
1.3.6.1.2.1.25.4.2.1.5.229|4|
1.3.6.1.2.1.25.4.2.1.5.230|4|
1.3.6.1.2.1.25.4.2.1.5.231|4|
1.3.6.1.2.1.25.4.2.1.5.232|4|
1.3.6.1.2.1.25.4.2.1.5.233|4|
1.3.6.1.2.1.25.4.2.1.5.234|4|
1.3.6.1.2.1.25.4.2.1.5.903|4|
1.3.6.1.2.1.25.4.2.1.5.904|4|
1.3.6.1.2.1.25.4.2.1.5.940|4|
1.3.6.1.2.1.25.4.2.1.5.941|4|
1.3.6.1.2.1.25.4.2.1.5.969|4|
1.3.6.1.2.1.25.4.2.1.5.970|4|
1.3.6.1.2.1.25.4.2.1.5.975|4|
1.3.6.1.2.1.25.4.2.1.5.976|4|
1.3.6.1.2.1.25.4.2.1.5.1045|4|
1.3.6.1.2.1.25.4.2.1.5.1046|4|
1.3.6.1.2.1.25.4.2.1.5.1050|4|
1.3.6.1.2.1.25.4.2.1.5.1119|4|--daemon
1.3.6.1.2.1.25.4.2.1.5.2375|4|
1.3.6.1.2.1.25.4.2.1.5.2452|4|
1.3.6.1.2.1.25.4.2.1.5.2454|4|
1.3.6.1.2.1.25.4.2.1.5.2497|4|
1.3.6.1.2.1.25.4.2.1.5.2501|4|-c 3 -x
1.3.6.1.2.1.25.4.2.1.5.2918|4|
1.3.6.1.2.1.25.4.2.1.5.2922|4|
1.3.6.1.2.1.25.4.2.1.5.2991|4|
1.3.6.1.2.1.25.4.2.1.5.2999|4|
1.3.6.1.2.1.25.4.2.1.5.3002|4|
1.3.6.1.2.1.25.4.2.1.5.3032|4|
1.3.6.1.2.1.25.4.2.1.5.3034|4|
1.3.6.1.2.1.25.4.2.1.5.3035|4|
1.3.6.1.2.1.25.4.2.1.5.3036|4|
1.3.6.1.2.1.25.4.2.1.5.3037|4|
1.3.6.1.2.1.25.4.2.1.5.3038|4|
1.3.6.1.2.1.25.4.2.1.5.3039|4|
1.3.6.1.2.1.25.4.2.1.5.3040|4|
1.3.6.1.2.1.25.4.2.1.5.3041|4|
1.3.6.1.2.1.25.4.2.1.5.3042|4|
1.3.6.1.2.1.25.4.2.1.5.3043|4|
1.3.6.1.2.1.25.4.2.1.5.3044|4|
1.3.6.1.2.1.25.4.2.1.5.3045|4|
1.3.6.1.2.1.25.4.2.1.5.3047|4|
1.3.6.1.2.1.25.4.2.1.5.3050|4|-g -p /var/run/ntpd.pid
1.3.6.1.2.1.25.4.2.1.5.3055|4|
1.3.6.1.2.1.25.4.2.1.5.3066|4|--system
1.3.6.1.2.1.25.4.2.1.5.3068|4|-g -p /var/run/ntpd.pid
1.3.6.1.2.1.25.4.2.1.5.3070|4|--daemon=yes
1.3.6.1.2.1.25.4.2.1.5.3071|4|
1.3.6.1.2.1.25.4.2.1.5.3077|4|
1.3.6.1.2.1.25.4.2.1.5.3078|4|
1.3.6.1.2.1.25.4.2.1.5.3079|4|
1.3.6.1.2.1.25.4.2.1.5.3082|4|
1.3.6.1.2.1.25.4.2.1.5.3083|4|
1.3.6.1.2.1.25.4.2.1.5.3103|4|
1.3.6.1.2.1.25.4.2.1.5.3108|4|-l10
1.3.6.1.2.1.25.4.2.1.5.3110|4|-b 15 -l 1
1.3.6.1.2.1.25.4.2.1.5.3113|4|
1.3.6.1.2.1.25.4.2.1.5.3116|4|
1.3.6.1.2.1.25.4.2.1.5.3194|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3214|4|-t 5 /auto file /etc/auto.auto
1.3.6.1.2.1.25.4.2.1.5.3225|4|-A -p /var/run/snmpd -a -c /etc/snmp/snmpd.conf
1.3.6.1.2.1.25.4.2.1.5.3234|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3235|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3236|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3237|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3238|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3243|4|-nodaemon
1.3.6.1.2.1.25.4.2.1.5.3329|4|--fork --print-pid 4 --print-address 6 --session
1.3.6.1.2.1.25.4.2.1.5.3373|4|-k start
1.3.6.1.2.1.25.4.2.1.5.3466|4|38400 tty6 linux
1.3.6.1.2.1.25.4.2.1.5.3532|4|
1.3.6.1.2.1.25.4.2.1.5.3920|4|:0 -auth /usr/lib/X11/xdm/authdir/authfiles/A:0-g8nHN0
1.3.6.1.2.1.25.4.2.1.5.3921|4|
1.3.6.1.2.1.25.4.2.1.5.3932|4|/etc/X11/xinit/xinitrc
1.3.6.1.2.1.25.4.2.1.5.3968|4|/etc/X11/xinit/xinitrc
1.3.6.1.2.1.25.4.2.1.5.3969|4|-no-splash
1.3.6.1.2.1.25.4.2.1.5.3972|4|-s
1.3.6.1.2.1.25.4.2.1.5.3977|4|--sh-syntax --exit-with-session
1.3.6.1.2.1.25.4.2.1.5.3979|4|--fork --print-pid 4 --print-address 6 --session
1.3.6.1.2.1.25.4.2.1.5.3981|4|
1.3.6.1.2.1.25.4.2.1.5.3984|4|
1.3.6.1.2.1.25.4.2.1.5.3985|4|--sm-client-id 11c3dafe69000115209737700000029700000 --display :0.0
1.3.6.1.2.1.25.4.2.1.5.3986|4|--sm-client-id 11c3dafe69000115209737700000029700003 --display :0.0
1.3.6.1.2.1.25.4.2.1.5.3988|4|--daemon
1.3.6.1.2.1.25.4.2.1.5.3993|4|--sm-client-id 11c3dafe69000115209737700000029700001 --display :0.0
1.3.6.1.2.1.25.4.2.1.5.3994|4|-xtsessionID 11c3dafe69000115210972100000061770008 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3995|4|-xtsessionID 11c3dafe69000115210965900000061770007 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3996|4|-xtsessionID 11c3dafe69000115210961600000061770006 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3997|4|-xtsessionID 11c3dafe69000115209986400000029700006 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3998|4|-xtsessionID 11c3dafe69000115209747200000029700005 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.3999|4|-xtsessionID 11c3dafe69000115211106500000064280001 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4004|4|-xtsessionID 11c3dafe69000115211106700000064280002 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4007|4|socket_id 18874412 name xfce4-menu id 5 display_name Xfce Menu size 36 screen_position 11
1.3.6.1.2.1.25.4.2.1.5.4008|4|
1.3.6.1.2.1.25.4.2.1.5.4009|4|-xtsessionID 11c3dafe69000115211106800000064280003 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4010|4|
1.3.6.1.2.1.25.4.2.1.5.4011|4|
1.3.6.1.2.1.25.4.2.1.5.4012|4|
1.3.6.1.2.1.25.4.2.1.5.4014|4|-xtsessionID 11c3dafe69000115211110000000064280004 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4016|4|
1.3.6.1.2.1.25.4.2.1.5.4018|4|socket_id 18874427 name xfce4-xmms-plugin id 11946297210 display_name Xfce4 XMMS Plugin size 36 screen_position 11
1.3.6.1.2.1.25.4.2.1.5.4019|4|-xtsessionID 11c3dafe69000115211110100000064280005 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4021|4|
1.3.6.1.2.1.25.4.2.1.5.4026|4|-xtsessionID 11c3dafe69000115211110300000064280006 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4027|4|
1.3.6.1.2.1.25.4.2.1.5.4031|4|-xtsessionID 11c3dafe69000115211623900000081180004 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4036|4|-xtsessionID 11c3dafe69000115225555000000050600002 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4037|4|
1.3.6.1.2.1.25.4.2.1.5.4041|4|
1.3.6.1.2.1.25.4.2.1.5.4045|4|
1.3.6.1.2.1.25.4.2.1.5.4048|4|-xtsessionID 11c3dafe69000115225555600000050600003 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4049|4|
1.3.6.1.2.1.25.4.2.1.5.4053|4|-xtsessionID 11c3dafe69000115225556500000050600004 -title Terminal
1.3.6.1.2.1.25.4.2.1.5.4054|4|
1.3.6.1.2.1.25.4.2.1.5.4059|4|
1.3.6.1.2.1.25.4.2.1.5.4063|4|
1.3.6.1.2.1.25.4.2.1.5.4064|4|
1.3.6.1.2.1.25.4.2.1.5.4132|4|
1.3.6.1.2.1.25.4.2.1.5.4138|4|/usr/bin/firefox
1.3.6.1.2.1.25.4.2.1.5.4151|4|/usr/local/lib/firefox-3.6/run-mozilla.sh /usr/local/lib/firefox-3.6/firefox-bin
1.3.6.1.2.1.25.4.2.1.5.4155|4|
1.3.6.1.2.1.25.4.2.1.5.8332|4|arethusa
1.3.6.1.2.1.25.4.2.1.5.8337|4|pherusa
1.3.6.1.2.1.25.4.2.1.5.11508|4|common/metaops.c
1.3.6.1.2.1.25.4.2.1.5.11511|4|common/metaops.c
1.3.6.1.2.1.25.4.2.1.5.14710|4|/tmp/w.cap
1.3.6.1.2.1.25.4.2.1.5.14797|4|/tmp/w2.cap
1.3.6.1.2.1.25.4.2.1.5.19461|4|--user privoxy privoxy --pidfile /var/run/privoxy/privoxy.pid /etc/privoxy/config
1.3.6.1.2.1.25.4.2.1.5.19802|4|snmprec.py
1.3.6.1.2.1.25.4.2.1.5.20269|4|
1.3.6.1.2.1.25.4.2.1.5.20571|4|wifimgr02
1.3.6.1.2.1.25.4.2.1.5.20996|4|
1.3.6.1.2.1.25.4.2.1.5.21620|4|
1.3.6.1.2.1.25.4.2.1.5.22336|4|Within Temptation - 01 - Forgiven (Single Version).mp3 Within Temptation - 02 - Forgiven (Album Version).mp3 Within Temptation -
1.3.6.1.2.1.25.4.2.1.5.22476|4|/home/ilya/bin/lotus
1.3.6.1.2.1.25.4.2.1.5.22477|4|-r disk:floppy /home/ilya/p -g 1200x700 -d SOVINTEL -u ietingoff -p XXXXXXXXXXXX 10.105.41.179
1.3.6.1.2.1.25.4.2.1.5.22558|4|snmprec.py --agent-address 127.0.0.1 --output-file=devices/linux/slackware/1.3.6.1.2.1.1.1_12_2/127.0.0.1@public.snmprec
1.3.6.1.2.1.25.4.2.1.6.1|2|4
1.3.6.1.2.1.25.4.2.1.6.2|2|4
1.3.6.1.2.1.25.4.2.1.6.3|2|4
1.3.6.1.2.1.25.4.2.1.6.4|2|4
1.3.6.1.2.1.25.4.2.1.6.5|2|4
1.3.6.1.2.1.25.4.2.1.6.6|2|4
1.3.6.1.2.1.25.4.2.1.6.7|2|4
1.3.6.1.2.1.25.4.2.1.6.8|2|4
1.3.6.1.2.1.25.4.2.1.6.9|2|4
1.3.6.1.2.1.25.4.2.1.6.87|2|4
1.3.6.1.2.1.25.4.2.1.6.88|2|4
1.3.6.1.2.1.25.4.2.1.6.89|2|4
1.3.6.1.2.1.25.4.2.1.6.184|2|4
1.3.6.1.2.1.25.4.2.1.6.185|2|4
1.3.6.1.2.1.25.4.2.1.6.186|2|4
1.3.6.1.2.1.25.4.2.1.6.187|2|4
1.3.6.1.2.1.25.4.2.1.6.190|2|4
1.3.6.1.2.1.25.4.2.1.6.192|2|4
1.3.6.1.2.1.25.4.2.1.6.204|2|4
1.3.6.1.2.1.25.4.2.1.6.220|2|4
1.3.6.1.2.1.25.4.2.1.6.221|2|4
1.3.6.1.2.1.25.4.2.1.6.222|2|4
1.3.6.1.2.1.25.4.2.1.6.223|2|4
1.3.6.1.2.1.25.4.2.1.6.224|2|4
1.3.6.1.2.1.25.4.2.1.6.225|2|4
1.3.6.1.2.1.25.4.2.1.6.226|2|4
1.3.6.1.2.1.25.4.2.1.6.227|2|4
1.3.6.1.2.1.25.4.2.1.6.228|2|4
1.3.6.1.2.1.25.4.2.1.6.229|2|4
1.3.6.1.2.1.25.4.2.1.6.230|2|4
1.3.6.1.2.1.25.4.2.1.6.231|2|4
1.3.6.1.2.1.25.4.2.1.6.232|2|4
1.3.6.1.2.1.25.4.2.1.6.233|2|4
1.3.6.1.2.1.25.4.2.1.6.234|2|4
1.3.6.1.2.1.25.4.2.1.6.903|2|4
1.3.6.1.2.1.25.4.2.1.6.904|2|4
1.3.6.1.2.1.25.4.2.1.6.940|2|4
1.3.6.1.2.1.25.4.2.1.6.941|2|4
1.3.6.1.2.1.25.4.2.1.6.969|2|4
1.3.6.1.2.1.25.4.2.1.6.970|2|4
1.3.6.1.2.1.25.4.2.1.6.975|2|4
1.3.6.1.2.1.25.4.2.1.6.976|2|4
1.3.6.1.2.1.25.4.2.1.6.1045|2|4
1.3.6.1.2.1.25.4.2.1.6.1046|2|4
1.3.6.1.2.1.25.4.2.1.6.1050|2|4
1.3.6.1.2.1.25.4.2.1.6.1119|2|4
1.3.6.1.2.1.25.4.2.1.6.2375|2|4
1.3.6.1.2.1.25.4.2.1.6.2452|2|4
1.3.6.1.2.1.25.4.2.1.6.2454|2|4
1.3.6.1.2.1.25.4.2.1.6.2497|2|4
1.3.6.1.2.1.25.4.2.1.6.2501|2|4
1.3.6.1.2.1.25.4.2.1.6.2918|2|4
1.3.6.1.2.1.25.4.2.1.6.2922|2|4
1.3.6.1.2.1.25.4.2.1.6.2991|2|4
1.3.6.1.2.1.25.4.2.1.6.2999|2|4
1.3.6.1.2.1.25.4.2.1.6.3002|2|4
1.3.6.1.2.1.25.4.2.1.6.3032|2|4
1.3.6.1.2.1.25.4.2.1.6.3034|2|4
1.3.6.1.2.1.25.4.2.1.6.3035|2|4
1.3.6.1.2.1.25.4.2.1.6.3036|2|4
1.3.6.1.2.1.25.4.2.1.6.3037|2|4
1.3.6.1.2.1.25.4.2.1.6.3038|2|4
1.3.6.1.2.1.25.4.2.1.6.3039|2|4
1.3.6.1.2.1.25.4.2.1.6.3040|2|4
1.3.6.1.2.1.25.4.2.1.6.3041|2|4
1.3.6.1.2.1.25.4.2.1.6.3042|2|4
1.3.6.1.2.1.25.4.2.1.6.3043|2|4
1.3.6.1.2.1.25.4.2.1.6.3044|2|4
1.3.6.1.2.1.25.4.2.1.6.3045|2|4
1.3.6.1.2.1.25.4.2.1.6.3047|2|4
1.3.6.1.2.1.25.4.2.1.6.3050|2|4
1.3.6.1.2.1.25.4.2.1.6.3055|2|4
1.3.6.1.2.1.25.4.2.1.6.3066|2|4
1.3.6.1.2.1.25.4.2.1.6.3068|2|4
1.3.6.1.2.1.25.4.2.1.6.3070|2|4
1.3.6.1.2.1.25.4.2.1.6.3071|2|4
1.3.6.1.2.1.25.4.2.1.6.3077|2|4
1.3.6.1.2.1.25.4.2.1.6.3078|2|4
1.3.6.1.2.1.25.4.2.1.6.3079|2|4
1.3.6.1.2.1.25.4.2.1.6.3082|2|4
1.3.6.1.2.1.25.4.2.1.6.3083|2|4
1.3.6.1.2.1.25.4.2.1.6.3103|2|4
1.3.6.1.2.1.25.4.2.1.6.3108|2|4
1.3.6.1.2.1.25.4.2.1.6.3110|2|4
1.3.6.1.2.1.25.4.2.1.6.3113|2|4
1.3.6.1.2.1.25.4.2.1.6.3116|2|4
1.3.6.1.2.1.25.4.2.1.6.3194|2|4
1.3.6.1.2.1.25.4.2.1.6.3214|2|4
1.3.6.1.2.1.25.4.2.1.6.3225|2|4
1.3.6.1.2.1.25.4.2.1.6.3234|2|4
1.3.6.1.2.1.25.4.2.1.6.3235|2|4
1.3.6.1.2.1.25.4.2.1.6.3236|2|4
1.3.6.1.2.1.25.4.2.1.6.3237|2|4
1.3.6.1.2.1.25.4.2.1.6.3238|2|4
1.3.6.1.2.1.25.4.2.1.6.3243|2|4
1.3.6.1.2.1.25.4.2.1.6.3329|2|4
1.3.6.1.2.1.25.4.2.1.6.3373|2|4
1.3.6.1.2.1.25.4.2.1.6.3466|2|4
1.3.6.1.2.1.25.4.2.1.6.3532|2|4
1.3.6.1.2.1.25.4.2.1.6.3920|2|4
1.3.6.1.2.1.25.4.2.1.6.3921|2|4
1.3.6.1.2.1.25.4.2.1.6.3932|2|4
1.3.6.1.2.1.25.4.2.1.6.3968|2|4
1.3.6.1.2.1.25.4.2.1.6.3969|2|4
1.3.6.1.2.1.25.4.2.1.6.3972|2|4
1.3.6.1.2.1.25.4.2.1.6.3977|2|4
1.3.6.1.2.1.25.4.2.1.6.3979|2|4
1.3.6.1.2.1.25.4.2.1.6.3981|2|4
1.3.6.1.2.1.25.4.2.1.6.3984|2|4
1.3.6.1.2.1.25.4.2.1.6.3985|2|4
1.3.6.1.2.1.25.4.2.1.6.3986|2|4
1.3.6.1.2.1.25.4.2.1.6.3988|2|4
1.3.6.1.2.1.25.4.2.1.6.3993|2|4
1.3.6.1.2.1.25.4.2.1.6.3994|2|4
1.3.6.1.2.1.25.4.2.1.6.3995|2|4
1.3.6.1.2.1.25.4.2.1.6.3996|2|4
1.3.6.1.2.1.25.4.2.1.6.3997|2|4
1.3.6.1.2.1.25.4.2.1.6.3998|2|4
1.3.6.1.2.1.25.4.2.1.6.3999|2|4
1.3.6.1.2.1.25.4.2.1.6.4004|2|4
1.3.6.1.2.1.25.4.2.1.6.4007|2|4
1.3.6.1.2.1.25.4.2.1.6.4008|2|4
1.3.6.1.2.1.25.4.2.1.6.4009|2|4
1.3.6.1.2.1.25.4.2.1.6.4010|2|4
1.3.6.1.2.1.25.4.2.1.6.4011|2|4
1.3.6.1.2.1.25.4.2.1.6.4012|2|4
1.3.6.1.2.1.25.4.2.1.6.4014|2|4
1.3.6.1.2.1.25.4.2.1.6.4016|2|4
1.3.6.1.2.1.25.4.2.1.6.4018|2|4
1.3.6.1.2.1.25.4.2.1.6.4019|2|4
1.3.6.1.2.1.25.4.2.1.6.4021|2|4
1.3.6.1.2.1.25.4.2.1.6.4026|2|4
1.3.6.1.2.1.25.4.2.1.6.4027|2|4
1.3.6.1.2.1.25.4.2.1.6.4031|2|4
1.3.6.1.2.1.25.4.2.1.6.4036|2|4
1.3.6.1.2.1.25.4.2.1.6.4037|2|4
1.3.6.1.2.1.25.4.2.1.6.4041|2|4
1.3.6.1.2.1.25.4.2.1.6.4045|2|4
1.3.6.1.2.1.25.4.2.1.6.4048|2|4
1.3.6.1.2.1.25.4.2.1.6.4049|2|4
1.3.6.1.2.1.25.4.2.1.6.4053|2|4
1.3.6.1.2.1.25.4.2.1.6.4054|2|4
1.3.6.1.2.1.25.4.2.1.6.4059|2|4
1.3.6.1.2.1.25.4.2.1.6.4063|2|4
1.3.6.1.2.1.25.4.2.1.6.4064|2|4
1.3.6.1.2.1.25.4.2.1.6.4132|2|4
1.3.6.1.2.1.25.4.2.1.6.4138|2|4
1.3.6.1.2.1.25.4.2.1.6.4151|2|4
1.3.6.1.2.1.25.4.2.1.6.4155|2|4
1.3.6.1.2.1.25.4.2.1.6.8332|2|4
1.3.6.1.2.1.25.4.2.1.6.8337|2|4
1.3.6.1.2.1.25.4.2.1.6.11508|2|4
1.3.6.1.2.1.25.4.2.1.6.11511|2|4
1.3.6.1.2.1.25.4.2.1.6.14710|2|4
1.3.6.1.2.1.25.4.2.1.6.14797|2|4
1.3.6.1.2.1.25.4.2.1.6.19461|2|4
1.3.6.1.2.1.25.4.2.1.6.19802|2|4
1.3.6.1.2.1.25.4.2.1.6.20269|2|4
1.3.6.1.2.1.25.4.2.1.6.20571|2|4
1.3.6.1.2.1.25.4.2.1.6.20996|2|4
1.3.6.1.2.1.25.4.2.1.6.21620|2|4
1.3.6.1.2.1.25.4.2.1.6.22336|2|4
1.3.6.1.2.1.25.4.2.1.6.22476|2|4
1.3.6.1.2.1.25.4.2.1.6.22477|2|4
1.3.6.1.2.1.25.4.2.1.6.22558|2|4
1.3.6.1.2.1.25.4.2.1.7.1|2|2
1.3.6.1.2.1.25.4.2.1.7.2|2|2
1.3.6.1.2.1.25.4.2.1.7.3|2|2
1.3.6.1.2.1.25.4.2.1.7.4|2|2
1.3.6.1.2.1.25.4.2.1.7.5|2|2
1.3.6.1.2.1.25.4.2.1.7.6|2|2
1.3.6.1.2.1.25.4.2.1.7.7|2|2
1.3.6.1.2.1.25.4.2.1.7.8|2|2
1.3.6.1.2.1.25.4.2.1.7.9|2|2
1.3.6.1.2.1.25.4.2.1.7.87|2|2
1.3.6.1.2.1.25.4.2.1.7.88|2|2
1.3.6.1.2.1.25.4.2.1.7.89|2|2
1.3.6.1.2.1.25.4.2.1.7.184|2|2
1.3.6.1.2.1.25.4.2.1.7.185|2|2
1.3.6.1.2.1.25.4.2.1.7.186|2|2
1.3.6.1.2.1.25.4.2.1.7.187|2|2
1.3.6.1.2.1.25.4.2.1.7.190|2|2
1.3.6.1.2.1.25.4.2.1.7.192|2|2
1.3.6.1.2.1.25.4.2.1.7.204|2|2
1.3.6.1.2.1.25.4.2.1.7.220|2|2
1.3.6.1.2.1.25.4.2.1.7.221|2|2
1.3.6.1.2.1.25.4.2.1.7.222|2|2
1.3.6.1.2.1.25.4.2.1.7.223|2|2
1.3.6.1.2.1.25.4.2.1.7.224|2|2
1.3.6.1.2.1.25.4.2.1.7.225|2|2
1.3.6.1.2.1.25.4.2.1.7.226|2|2
1.3.6.1.2.1.25.4.2.1.7.227|2|2
1.3.6.1.2.1.25.4.2.1.7.228|2|2
1.3.6.1.2.1.25.4.2.1.7.229|2|2
1.3.6.1.2.1.25.4.2.1.7.230|2|2
1.3.6.1.2.1.25.4.2.1.7.231|2|2
1.3.6.1.2.1.25.4.2.1.7.232|2|2
1.3.6.1.2.1.25.4.2.1.7.233|2|2
1.3.6.1.2.1.25.4.2.1.7.234|2|2
1.3.6.1.2.1.25.4.2.1.7.903|2|2
1.3.6.1.2.1.25.4.2.1.7.904|2|2
1.3.6.1.2.1.25.4.2.1.7.940|2|2
1.3.6.1.2.1.25.4.2.1.7.941|2|2
1.3.6.1.2.1.25.4.2.1.7.969|2|2
1.3.6.1.2.1.25.4.2.1.7.970|2|2
1.3.6.1.2.1.25.4.2.1.7.975|2|2
1.3.6.1.2.1.25.4.2.1.7.976|2|2
1.3.6.1.2.1.25.4.2.1.7.1045|2|2
1.3.6.1.2.1.25.4.2.1.7.1046|2|2
1.3.6.1.2.1.25.4.2.1.7.1050|2|2
1.3.6.1.2.1.25.4.2.1.7.1119|2|2
1.3.6.1.2.1.25.4.2.1.7.2375|2|2
1.3.6.1.2.1.25.4.2.1.7.2452|2|2
1.3.6.1.2.1.25.4.2.1.7.2454|2|2
1.3.6.1.2.1.25.4.2.1.7.2497|2|2
1.3.6.1.2.1.25.4.2.1.7.2501|2|2
1.3.6.1.2.1.25.4.2.1.7.2918|2|2
1.3.6.1.2.1.25.4.2.1.7.2922|2|2
1.3.6.1.2.1.25.4.2.1.7.2991|2|2
1.3.6.1.2.1.25.4.2.1.7.2999|2|2
1.3.6.1.2.1.25.4.2.1.7.3002|2|2
1.3.6.1.2.1.25.4.2.1.7.3032|2|2
1.3.6.1.2.1.25.4.2.1.7.3034|2|2
1.3.6.1.2.1.25.4.2.1.7.3035|2|2
1.3.6.1.2.1.25.4.2.1.7.3036|2|2
1.3.6.1.2.1.25.4.2.1.7.3037|2|2
1.3.6.1.2.1.25.4.2.1.7.3038|2|2
1.3.6.1.2.1.25.4.2.1.7.3039|2|2
1.3.6.1.2.1.25.4.2.1.7.3040|2|2
1.3.6.1.2.1.25.4.2.1.7.3041|2|2
1.3.6.1.2.1.25.4.2.1.7.3042|2|2
1.3.6.1.2.1.25.4.2.1.7.3043|2|2
1.3.6.1.2.1.25.4.2.1.7.3044|2|2
1.3.6.1.2.1.25.4.2.1.7.3045|2|2
1.3.6.1.2.1.25.4.2.1.7.3047|2|2
1.3.6.1.2.1.25.4.2.1.7.3050|2|2
1.3.6.1.2.1.25.4.2.1.7.3055|2|2
1.3.6.1.2.1.25.4.2.1.7.3066|2|2
1.3.6.1.2.1.25.4.2.1.7.3068|2|2
1.3.6.1.2.1.25.4.2.1.7.3070|2|2
1.3.6.1.2.1.25.4.2.1.7.3071|2|2
1.3.6.1.2.1.25.4.2.1.7.3077|2|2
1.3.6.1.2.1.25.4.2.1.7.3078|2|2
1.3.6.1.2.1.25.4.2.1.7.3079|2|2
1.3.6.1.2.1.25.4.2.1.7.3082|2|2
1.3.6.1.2.1.25.4.2.1.7.3083|2|2
1.3.6.1.2.1.25.4.2.1.7.3103|2|2
1.3.6.1.2.1.25.4.2.1.7.3108|2|2
1.3.6.1.2.1.25.4.2.1.7.3110|2|2
1.3.6.1.2.1.25.4.2.1.7.3113|2|2
1.3.6.1.2.1.25.4.2.1.7.3116|2|2
1.3.6.1.2.1.25.4.2.1.7.3194|2|2
1.3.6.1.2.1.25.4.2.1.7.3214|2|2
1.3.6.1.2.1.25.4.2.1.7.3225|2|1
1.3.6.1.2.1.25.4.2.1.7.3234|2|2
1.3.6.1.2.1.25.4.2.1.7.3235|2|2
1.3.6.1.2.1.25.4.2.1.7.3236|2|2
1.3.6.1.2.1.25.4.2.1.7.3237|2|2
1.3.6.1.2.1.25.4.2.1.7.3238|2|2
1.3.6.1.2.1.25.4.2.1.7.3243|2|2
1.3.6.1.2.1.25.4.2.1.7.3329|2|2
1.3.6.1.2.1.25.4.2.1.7.3373|2|2
1.3.6.1.2.1.25.4.2.1.7.3466|2|2
1.3.6.1.2.1.25.4.2.1.7.3532|2|2
1.3.6.1.2.1.25.4.2.1.7.3920|2|2
1.3.6.1.2.1.25.4.2.1.7.3921|2|2
1.3.6.1.2.1.25.4.2.1.7.3932|2|2
1.3.6.1.2.1.25.4.2.1.7.3968|2|2
1.3.6.1.2.1.25.4.2.1.7.3969|2|2
1.3.6.1.2.1.25.4.2.1.7.3972|2|2
1.3.6.1.2.1.25.4.2.1.7.3977|2|2
1.3.6.1.2.1.25.4.2.1.7.3979|2|2
1.3.6.1.2.1.25.4.2.1.7.3981|2|2
1.3.6.1.2.1.25.4.2.1.7.3984|2|2
1.3.6.1.2.1.25.4.2.1.7.3985|2|2
1.3.6.1.2.1.25.4.2.1.7.3986|2|2
1.3.6.1.2.1.25.4.2.1.7.3988|2|2
1.3.6.1.2.1.25.4.2.1.7.3993|2|2
1.3.6.1.2.1.25.4.2.1.7.3994|2|2
1.3.6.1.2.1.25.4.2.1.7.3995|2|2
1.3.6.1.2.1.25.4.2.1.7.3996|2|2
1.3.6.1.2.1.25.4.2.1.7.3997|2|2
1.3.6.1.2.1.25.4.2.1.7.3998|2|2
1.3.6.1.2.1.25.4.2.1.7.3999|2|2
1.3.6.1.2.1.25.4.2.1.7.4004|2|2
1.3.6.1.2.1.25.4.2.1.7.4007|2|2
1.3.6.1.2.1.25.4.2.1.7.4008|2|2
1.3.6.1.2.1.25.4.2.1.7.4009|2|2
1.3.6.1.2.1.25.4.2.1.7.4010|2|2
1.3.6.1.2.1.25.4.2.1.7.4011|2|2
1.3.6.1.2.1.25.4.2.1.7.4012|2|2
1.3.6.1.2.1.25.4.2.1.7.4014|2|2
1.3.6.1.2.1.25.4.2.1.7.4016|2|2
1.3.6.1.2.1.25.4.2.1.7.4018|2|2
1.3.6.1.2.1.25.4.2.1.7.4019|2|2
1.3.6.1.2.1.25.4.2.1.7.4021|2|2
1.3.6.1.2.1.25.4.2.1.7.4026|2|2
1.3.6.1.2.1.25.4.2.1.7.4027|2|2
1.3.6.1.2.1.25.4.2.1.7.4031|2|2
1.3.6.1.2.1.25.4.2.1.7.4036|2|2
1.3.6.1.2.1.25.4.2.1.7.4037|2|2
1.3.6.1.2.1.25.4.2.1.7.4041|2|2
1.3.6.1.2.1.25.4.2.1.7.4045|2|2
1.3.6.1.2.1.25.4.2.1.7.4048|2|2
1.3.6.1.2.1.25.4.2.1.7.4049|2|2
1.3.6.1.2.1.25.4.2.1.7.4053|2|2
1.3.6.1.2.1.25.4.2.1.7.4054|2|2
1.3.6.1.2.1.25.4.2.1.7.4059|2|2
1.3.6.1.2.1.25.4.2.1.7.4063|2|2
1.3.6.1.2.1.25.4.2.1.7.4064|2|2
1.3.6.1.2.1.25.4.2.1.7.4132|2|2
1.3.6.1.2.1.25.4.2.1.7.4138|2|2
1.3.6.1.2.1.25.4.2.1.7.4151|2|2
1.3.6.1.2.1.25.4.2.1.7.4155|2|2
1.3.6.1.2.1.25.4.2.1.7.8332|2|2
1.3.6.1.2.1.25.4.2.1.7.8337|2|2
1.3.6.1.2.1.25.4.2.1.7.11508|2|2
1.3.6.1.2.1.25.4.2.1.7.11511|2|2
1.3.6.1.2.1.25.4.2.1.7.14710|2|2
1.3.6.1.2.1.25.4.2.1.7.14797|2|2
1.3.6.1.2.1.25.4.2.1.7.19461|2|2
1.3.6.1.2.1.25.4.2.1.7.19802|2|2
1.3.6.1.2.1.25.4.2.1.7.20269|2|3
1.3.6.1.2.1.25.4.2.1.7.20571|2|2
1.3.6.1.2.1.25.4.2.1.7.20996|2|2
1.3.6.1.2.1.25.4.2.1.7.21620|2|3
1.3.6.1.2.1.25.4.2.1.7.22336|2|3
1.3.6.1.2.1.25.4.2.1.7.22476|2|2
1.3.6.1.2.1.25.4.2.1.7.22477|2|2
1.3.6.1.2.1.25.4.2.1.7.22558|2|2
1.3.6.1.2.1.25.5.1.1.1.1|2|151
1.3.6.1.2.1.25.5.1.1.1.2|2|5
1.3.6.1.2.1.25.5.1.1.1.3|2|251
1.3.6.1.2.1.25.5.1.1.1.4|2|3
1.3.6.1.2.1.25.5.1.1.1.5|2|96
1.3.6.1.2.1.25.5.1.1.1.6|2|787
1.3.6.1.2.1.25.5.1.1.1.7|2|6
1.3.6.1.2.1.25.5.1.1.1.8|2|2
1.3.6.1.2.1.25.5.1.1.1.9|2|0
1.3.6.1.2.1.25.5.1.1.1.87|2|6
1.3.6.1.2.1.25.5.1.1.1.88|2|0
1.3.6.1.2.1.25.5.1.1.1.89|2|0
1.3.6.1.2.1.25.5.1.1.1.184|2|0
1.3.6.1.2.1.25.5.1.1.1.185|2|0
1.3.6.1.2.1.25.5.1.1.1.186|2|0
1.3.6.1.2.1.25.5.1.1.1.187|2|0
1.3.6.1.2.1.25.5.1.1.1.190|2|112
1.3.6.1.2.1.25.5.1.1.1.192|2|0
1.3.6.1.2.1.25.5.1.1.1.204|2|0
1.3.6.1.2.1.25.5.1.1.1.220|2|176
1.3.6.1.2.1.25.5.1.1.1.221|2|438
1.3.6.1.2.1.25.5.1.1.1.222|2|2618
1.3.6.1.2.1.25.5.1.1.1.223|2|0
1.3.6.1.2.1.25.5.1.1.1.224|2|0
1.3.6.1.2.1.25.5.1.1.1.225|2|0
1.3.6.1.2.1.25.5.1.1.1.226|2|0
1.3.6.1.2.1.25.5.1.1.1.227|2|0
1.3.6.1.2.1.25.5.1.1.1.228|2|0
1.3.6.1.2.1.25.5.1.1.1.229|2|0
1.3.6.1.2.1.25.5.1.1.1.230|2|0
1.3.6.1.2.1.25.5.1.1.1.231|2|0
1.3.6.1.2.1.25.5.1.1.1.232|2|0
1.3.6.1.2.1.25.5.1.1.1.233|2|0
1.3.6.1.2.1.25.5.1.1.1.234|2|0
1.3.6.1.2.1.25.5.1.1.1.903|2|0
1.3.6.1.2.1.25.5.1.1.1.904|2|0
1.3.6.1.2.1.25.5.1.1.1.940|2|0
1.3.6.1.2.1.25.5.1.1.1.941|2|0
1.3.6.1.2.1.25.5.1.1.1.969|2|0
1.3.6.1.2.1.25.5.1.1.1.970|2|0
1.3.6.1.2.1.25.5.1.1.1.975|2|0
1.3.6.1.2.1.25.5.1.1.1.976|2|0
1.3.6.1.2.1.25.5.1.1.1.1045|2|0
1.3.6.1.2.1.25.5.1.1.1.1046|2|0
1.3.6.1.2.1.25.5.1.1.1.1050|2|351
1.3.6.1.2.1.25.5.1.1.1.1119|2|85
1.3.6.1.2.1.25.5.1.1.1.2375|2|0
1.3.6.1.2.1.25.5.1.1.1.2452|2|1456
1.3.6.1.2.1.25.5.1.1.1.2454|2|20
1.3.6.1.2.1.25.5.1.1.1.2497|2|289
1.3.6.1.2.1.25.5.1.1.1.2501|2|61
1.3.6.1.2.1.25.5.1.1.1.2918|2|0
1.3.6.1.2.1.25.5.1.1.1.2922|2|0
1.3.6.1.2.1.25.5.1.1.1.2991|2|0
1.3.6.1.2.1.25.5.1.1.1.2999|2|0
1.3.6.1.2.1.25.5.1.1.1.3002|2|5402
1.3.6.1.2.1.25.5.1.1.1.3032|2|0
1.3.6.1.2.1.25.5.1.1.1.3034|2|0
1.3.6.1.2.1.25.5.1.1.1.3035|2|0
1.3.6.1.2.1.25.5.1.1.1.3036|2|0
1.3.6.1.2.1.25.5.1.1.1.3037|2|0
1.3.6.1.2.1.25.5.1.1.1.3038|2|49
1.3.6.1.2.1.25.5.1.1.1.3039|2|46
1.3.6.1.2.1.25.5.1.1.1.3040|2|52
1.3.6.1.2.1.25.5.1.1.1.3041|2|41
1.3.6.1.2.1.25.5.1.1.1.3042|2|53
1.3.6.1.2.1.25.5.1.1.1.3043|2|44
1.3.6.1.2.1.25.5.1.1.1.3044|2|65
1.3.6.1.2.1.25.5.1.1.1.3045|2|59
1.3.6.1.2.1.25.5.1.1.1.3047|2|2
1.3.6.1.2.1.25.5.1.1.1.3050|2|27
1.3.6.1.2.1.25.5.1.1.1.3055|2|0
1.3.6.1.2.1.25.5.1.1.1.3066|2|20
1.3.6.1.2.1.25.5.1.1.1.3068|2|56
1.3.6.1.2.1.25.5.1.1.1.3070|2|93
1.3.6.1.2.1.25.5.1.1.1.3071|2|4
1.3.6.1.2.1.25.5.1.1.1.3077|2|1330
1.3.6.1.2.1.25.5.1.1.1.3078|2|0
1.3.6.1.2.1.25.5.1.1.1.3079|2|0
1.3.6.1.2.1.25.5.1.1.1.3082|2|0
1.3.6.1.2.1.25.5.1.1.1.3083|2|700
1.3.6.1.2.1.25.5.1.1.1.3103|2|14
1.3.6.1.2.1.25.5.1.1.1.3108|2|191
1.3.6.1.2.1.25.5.1.1.1.3110|2|0
1.3.6.1.2.1.25.5.1.1.1.3113|2|57
1.3.6.1.2.1.25.5.1.1.1.3116|2|25
1.3.6.1.2.1.25.5.1.1.1.3194|2|11
1.3.6.1.2.1.25.5.1.1.1.3214|2|1627
1.3.6.1.2.1.25.5.1.1.1.3225|2|2718
1.3.6.1.2.1.25.5.1.1.1.3234|2|1
1.3.6.1.2.1.25.5.1.1.1.3235|2|1
1.3.6.1.2.1.25.5.1.1.1.3236|2|1
1.3.6.1.2.1.25.5.1.1.1.3237|2|0
1.3.6.1.2.1.25.5.1.1.1.3238|2|0
1.3.6.1.2.1.25.5.1.1.1.3243|2|0
1.3.6.1.2.1.25.5.1.1.1.3329|2|0
1.3.6.1.2.1.25.5.1.1.1.3373|2|0
1.3.6.1.2.1.25.5.1.1.1.3466|2|0
1.3.6.1.2.1.25.5.1.1.1.3532|2|0
1.3.6.1.2.1.25.5.1.1.1.3920|2|3611791
1.3.6.1.2.1.25.5.1.1.1.3921|2|5
1.3.6.1.2.1.25.5.1.1.1.3932|2|4
1.3.6.1.2.1.25.5.1.1.1.3968|2|0
1.3.6.1.2.1.25.5.1.1.1.3969|2|1649
1.3.6.1.2.1.25.5.1.1.1.3972|2|34
1.3.6.1.2.1.25.5.1.1.1.3977|2|0
1.3.6.1.2.1.25.5.1.1.1.3979|2|1580
1.3.6.1.2.1.25.5.1.1.1.3981|2|2324
1.3.6.1.2.1.25.5.1.1.1.3984|2|2117
1.3.6.1.2.1.25.5.1.1.1.3985|2|5577
1.3.6.1.2.1.25.5.1.1.1.3986|2|881
1.3.6.1.2.1.25.5.1.1.1.3988|2|14
1.3.6.1.2.1.25.5.1.1.1.3993|2|8008
1.3.6.1.2.1.25.5.1.1.1.3994|2|786
1.3.6.1.2.1.25.5.1.1.1.3995|2|702
1.3.6.1.2.1.25.5.1.1.1.3996|2|119
1.3.6.1.2.1.25.5.1.1.1.3997|2|582
1.3.6.1.2.1.25.5.1.1.1.3998|2|1040
1.3.6.1.2.1.25.5.1.1.1.3999|2|311
1.3.6.1.2.1.25.5.1.1.1.4004|2|148
1.3.6.1.2.1.25.5.1.1.1.4007|2|39
1.3.6.1.2.1.25.5.1.1.1.4008|2|0
1.3.6.1.2.1.25.5.1.1.1.4009|2|242
1.3.6.1.2.1.25.5.1.1.1.4010|2|17
1.3.6.1.2.1.25.5.1.1.1.4011|2|3
1.3.6.1.2.1.25.5.1.1.1.4012|2|5
1.3.6.1.2.1.25.5.1.1.1.4014|2|692
1.3.6.1.2.1.25.5.1.1.1.4016|2|12
1.3.6.1.2.1.25.5.1.1.1.4018|2|80
1.3.6.1.2.1.25.5.1.1.1.4019|2|275
1.3.6.1.2.1.25.5.1.1.1.4021|2|16
1.3.6.1.2.1.25.5.1.1.1.4026|2|103
1.3.6.1.2.1.25.5.1.1.1.4027|2|1
1.3.6.1.2.1.25.5.1.1.1.4031|2|230
1.3.6.1.2.1.25.5.1.1.1.4036|2|31
1.3.6.1.2.1.25.5.1.1.1.4037|2|2
1.3.6.1.2.1.25.5.1.1.1.4041|2|6
1.3.6.1.2.1.25.5.1.1.1.4045|2|25
1.3.6.1.2.1.25.5.1.1.1.4048|2|48
1.3.6.1.2.1.25.5.1.1.1.4049|2|12
1.3.6.1.2.1.25.5.1.1.1.4053|2|41
1.3.6.1.2.1.25.5.1.1.1.4054|2|6
1.3.6.1.2.1.25.5.1.1.1.4059|2|9
1.3.6.1.2.1.25.5.1.1.1.4063|2|4
1.3.6.1.2.1.25.5.1.1.1.4064|2|14
1.3.6.1.2.1.25.5.1.1.1.4132|2|93385
1.3.6.1.2.1.25.5.1.1.1.4138|2|0
1.3.6.1.2.1.25.5.1.1.1.4151|2|0
1.3.6.1.2.1.25.5.1.1.1.4155|2|1140524
1.3.6.1.2.1.25.5.1.1.1.8332|2|78
1.3.6.1.2.1.25.5.1.1.1.8337|2|79
1.3.6.1.2.1.25.5.1.1.1.11508|2|2
1.3.6.1.2.1.25.5.1.1.1.11511|2|1
1.3.6.1.2.1.25.5.1.1.1.14710|2|1488
1.3.6.1.2.1.25.5.1.1.1.14797|2|816
1.3.6.1.2.1.25.5.1.1.1.19461|2|3302
1.3.6.1.2.1.25.5.1.1.1.19802|2|331
1.3.6.1.2.1.25.5.1.1.1.20269|2|14
1.3.6.1.2.1.25.5.1.1.1.20571|2|3
1.3.6.1.2.1.25.5.1.1.1.20996|2|114
1.3.6.1.2.1.25.5.1.1.1.21620|2|17
1.3.6.1.2.1.25.5.1.1.1.22336|2|1800
1.3.6.1.2.1.25.5.1.1.1.22476|2|0
1.3.6.1.2.1.25.5.1.1.1.22477|2|79
1.3.6.1.2.1.25.5.1.1.1.22558|2|1171
1.3.6.1.2.1.25.5.1.1.2.1|2|76
1.3.6.1.2.1.25.5.1.1.2.2|2|0
1.3.6.1.2.1.25.5.1.1.2.3|2|0
1.3.6.1.2.1.25.5.1.1.2.4|2|0
1.3.6.1.2.1.25.5.1.1.2.5|2|0
1.3.6.1.2.1.25.5.1.1.2.6|2|0
1.3.6.1.2.1.25.5.1.1.2.7|2|0
1.3.6.1.2.1.25.5.1.1.2.8|2|0
1.3.6.1.2.1.25.5.1.1.2.9|2|0
1.3.6.1.2.1.25.5.1.1.2.87|2|0
1.3.6.1.2.1.25.5.1.1.2.88|2|0
1.3.6.1.2.1.25.5.1.1.2.89|2|0
1.3.6.1.2.1.25.5.1.1.2.184|2|0
1.3.6.1.2.1.25.5.1.1.2.185|2|0
1.3.6.1.2.1.25.5.1.1.2.186|2|0
1.3.6.1.2.1.25.5.1.1.2.187|2|0
1.3.6.1.2.1.25.5.1.1.2.190|2|0
1.3.6.1.2.1.25.5.1.1.2.192|2|0
1.3.6.1.2.1.25.5.1.1.2.204|2|0
1.3.6.1.2.1.25.5.1.1.2.220|2|0
1.3.6.1.2.1.25.5.1.1.2.221|2|0
1.3.6.1.2.1.25.5.1.1.2.222|2|0
1.3.6.1.2.1.25.5.1.1.2.223|2|0
1.3.6.1.2.1.25.5.1.1.2.224|2|0
1.3.6.1.2.1.25.5.1.1.2.225|2|0
1.3.6.1.2.1.25.5.1.1.2.226|2|0
1.3.6.1.2.1.25.5.1.1.2.227|2|0
1.3.6.1.2.1.25.5.1.1.2.228|2|0
1.3.6.1.2.1.25.5.1.1.2.229|2|0
1.3.6.1.2.1.25.5.1.1.2.230|2|0
1.3.6.1.2.1.25.5.1.1.2.231|2|0
1.3.6.1.2.1.25.5.1.1.2.232|2|0
1.3.6.1.2.1.25.5.1.1.2.233|2|0
1.3.6.1.2.1.25.5.1.1.2.234|2|0
1.3.6.1.2.1.25.5.1.1.2.903|2|0
1.3.6.1.2.1.25.5.1.1.2.904|2|0
1.3.6.1.2.1.25.5.1.1.2.940|2|0
1.3.6.1.2.1.25.5.1.1.2.941|2|0
1.3.6.1.2.1.25.5.1.1.2.969|2|0
1.3.6.1.2.1.25.5.1.1.2.970|2|0
1.3.6.1.2.1.25.5.1.1.2.975|2|0
1.3.6.1.2.1.25.5.1.1.2.976|2|0
1.3.6.1.2.1.25.5.1.1.2.1045|2|0
1.3.6.1.2.1.25.5.1.1.2.1046|2|0
1.3.6.1.2.1.25.5.1.1.2.1050|2|0
1.3.6.1.2.1.25.5.1.1.2.1119|2|512
1.3.6.1.2.1.25.5.1.1.2.2375|2|0
1.3.6.1.2.1.25.5.1.1.2.2452|2|0
1.3.6.1.2.1.25.5.1.1.2.2454|2|0
1.3.6.1.2.1.25.5.1.1.2.2497|2|616
1.3.6.1.2.1.25.5.1.1.2.2501|2|408
1.3.6.1.2.1.25.5.1.1.2.2918|2|452
1.3.6.1.2.1.25.5.1.1.2.2922|2|512
1.3.6.1.2.1.25.5.1.1.2.2991|2|448
1.3.6.1.2.1.25.5.1.1.2.2999|2|776
1.3.6.1.2.1.25.5.1.1.2.3002|2|9444
1.3.6.1.2.1.25.5.1.1.2.3032|2|124
1.3.6.1.2.1.25.5.1.1.2.3034|2|0
1.3.6.1.2.1.25.5.1.1.2.3035|2|0
1.3.6.1.2.1.25.5.1.1.2.3036|2|0
1.3.6.1.2.1.25.5.1.1.2.3037|2|0
1.3.6.1.2.1.25.5.1.1.2.3038|2|0
1.3.6.1.2.1.25.5.1.1.2.3039|2|0
1.3.6.1.2.1.25.5.1.1.2.3040|2|0
1.3.6.1.2.1.25.5.1.1.2.3041|2|0
1.3.6.1.2.1.25.5.1.1.2.3042|2|0
1.3.6.1.2.1.25.5.1.1.2.3043|2|0
1.3.6.1.2.1.25.5.1.1.2.3044|2|0
1.3.6.1.2.1.25.5.1.1.2.3045|2|0
1.3.6.1.2.1.25.5.1.1.2.3047|2|460
1.3.6.1.2.1.25.5.1.1.2.3050|2|1120
1.3.6.1.2.1.25.5.1.1.2.3055|2|492
1.3.6.1.2.1.25.5.1.1.2.3066|2|764
1.3.6.1.2.1.25.5.1.1.2.3068|2|708
1.3.6.1.2.1.25.5.1.1.2.3070|2|2468
1.3.6.1.2.1.25.5.1.1.2.3071|2|964
1.3.6.1.2.1.25.5.1.1.2.3077|2|788
1.3.6.1.2.1.25.5.1.1.2.3078|2|756
1.3.6.1.2.1.25.5.1.1.2.3079|2|756
1.3.6.1.2.1.25.5.1.1.2.3082|2|760
1.3.6.1.2.1.25.5.1.1.2.3083|2|900
1.3.6.1.2.1.25.5.1.1.2.3103|2|1504
1.3.6.1.2.1.25.5.1.1.2.3108|2|620
1.3.6.1.2.1.25.5.1.1.2.3110|2|304
1.3.6.1.2.1.25.5.1.1.2.3113|2|1068
1.3.6.1.2.1.25.5.1.1.2.3116|2|900
1.3.6.1.2.1.25.5.1.1.2.3194|2|1052
1.3.6.1.2.1.25.5.1.1.2.3214|2|568
1.3.6.1.2.1.25.5.1.1.2.3225|2|3072
1.3.6.1.2.1.25.5.1.1.2.3234|2|1996
1.3.6.1.2.1.25.5.1.1.2.3235|2|2000
1.3.6.1.2.1.25.5.1.1.2.3236|2|2000
1.3.6.1.2.1.25.5.1.1.2.3237|2|1992
1.3.6.1.2.1.25.5.1.1.2.3238|2|1884
1.3.6.1.2.1.25.5.1.1.2.3243|2|1108
1.3.6.1.2.1.25.5.1.1.2.3329|2|304
1.3.6.1.2.1.25.5.1.1.2.3373|2|2192
1.3.6.1.2.1.25.5.1.1.2.3466|2|460
1.3.6.1.2.1.25.5.1.1.2.3532|2|1048
1.3.6.1.2.1.25.5.1.1.2.3920|2|253164
1.3.6.1.2.1.25.5.1.1.2.3921|2|2860
1.3.6.1.2.1.25.5.1.1.2.3932|2|1280
1.3.6.1.2.1.25.5.1.1.2.3968|2|1012
1.3.6.1.2.1.25.5.1.1.2.3969|2|13604
1.3.6.1.2.1.25.5.1.1.2.3972|2|900
1.3.6.1.2.1.25.5.1.1.2.3977|2|760
1.3.6.1.2.1.25.5.1.1.2.3979|2|856
1.3.6.1.2.1.25.5.1.1.2.3981|2|5784
1.3.6.1.2.1.25.5.1.1.2.3984|2|5396
1.3.6.1.2.1.25.5.1.1.2.3985|2|10544
1.3.6.1.2.1.25.5.1.1.2.3986|2|11104
1.3.6.1.2.1.25.5.1.1.2.3988|2|4460
1.3.6.1.2.1.25.5.1.1.2.3993|2|11632
1.3.6.1.2.1.25.5.1.1.2.3994|2|4112
1.3.6.1.2.1.25.5.1.1.2.3995|2|3988
1.3.6.1.2.1.25.5.1.1.2.3996|2|4040
1.3.6.1.2.1.25.5.1.1.2.3997|2|4052
1.3.6.1.2.1.25.5.1.1.2.3998|2|4060
1.3.6.1.2.1.25.5.1.1.2.3999|2|4056
1.3.6.1.2.1.25.5.1.1.2.4004|2|4016
1.3.6.1.2.1.25.5.1.1.2.4007|2|7100
1.3.6.1.2.1.25.5.1.1.2.4008|2|1932
1.3.6.1.2.1.25.5.1.1.2.4009|2|4036
1.3.6.1.2.1.25.5.1.1.2.4010|2|2004
1.3.6.1.2.1.25.5.1.1.2.4011|2|1932
1.3.6.1.2.1.25.5.1.1.2.4012|2|1988
1.3.6.1.2.1.25.5.1.1.2.4014|2|4044
1.3.6.1.2.1.25.5.1.1.2.4016|2|2012
1.3.6.1.2.1.25.5.1.1.2.4018|2|7952
1.3.6.1.2.1.25.5.1.1.2.4019|2|4032
1.3.6.1.2.1.25.5.1.1.2.4021|2|2012
1.3.6.1.2.1.25.5.1.1.2.4026|2|4020
1.3.6.1.2.1.25.5.1.1.2.4027|2|1932
1.3.6.1.2.1.25.5.1.1.2.4031|2|3972
1.3.6.1.2.1.25.5.1.1.2.4036|2|3968
1.3.6.1.2.1.25.5.1.1.2.4037|2|1996
1.3.6.1.2.1.25.5.1.1.2.4041|2|1976
1.3.6.1.2.1.25.5.1.1.2.4045|2|2032
1.3.6.1.2.1.25.5.1.1.2.4048|2|4024
1.3.6.1.2.1.25.5.1.1.2.4049|2|2012
1.3.6.1.2.1.25.5.1.1.2.4053|2|3960
1.3.6.1.2.1.25.5.1.1.2.4054|2|2028
1.3.6.1.2.1.25.5.1.1.2.4059|2|1988
1.3.6.1.2.1.25.5.1.1.2.4063|2|1976
1.3.6.1.2.1.25.5.1.1.2.4064|2|2024
1.3.6.1.2.1.25.5.1.1.2.4132|2|36644
1.3.6.1.2.1.25.5.1.1.2.4138|2|1544
1.3.6.1.2.1.25.5.1.1.2.4151|2|1604
1.3.6.1.2.1.25.5.1.1.2.4155|2|180664
1.3.6.1.2.1.25.5.1.1.2.8332|2|1992
1.3.6.1.2.1.25.5.1.1.2.8337|2|1980
1.3.6.1.2.1.25.5.1.1.2.11508|2|1132
1.3.6.1.2.1.25.5.1.1.2.11511|2|1124
1.3.6.1.2.1.25.5.1.1.2.14710|2|51348
1.3.6.1.2.1.25.5.1.1.2.14797|2|42088
1.3.6.1.2.1.25.5.1.1.2.19461|2|2012
1.3.6.1.2.1.25.5.1.1.2.19802|2|6256
1.3.6.1.2.1.25.5.1.1.2.20269|2|4060
1.3.6.1.2.1.25.5.1.1.2.20571|2|1928
1.3.6.1.2.1.25.5.1.1.2.20996|2|6376
1.3.6.1.2.1.25.5.1.1.2.21620|2|3700
1.3.6.1.2.1.25.5.1.1.2.22336|2|9548
1.3.6.1.2.1.25.5.1.1.2.22476|2|1488
1.3.6.1.2.1.25.5.1.1.2.22477|2|2320
1.3.6.1.2.1.25.5.1.1.2.22558|2|7212
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|eth0
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|0
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|763065745
1.3.6.1.2.1.31.1.1.1.6.2|70|24167091249
1.3.6.1.2.1.31.1.1.1.7.1|70|1309108
1.3.6.1.2.1.31.1.1.1.7.2|70|21626571
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|763065745
1.3.6.1.2.1.31.1.1.1.10.2|70|2448657392
1.3.6.1.2.1.31.1.1.1.11.1|70|1309108
1.3.6.1.2.1.31.1.1.1.11.2|70|15237185
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.15.1|66|10
1.3.6.1.2.1.31.1.1.1.15.2|66|100
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.2|2|2
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.5.0|67|0
1.3.6.1.2.1.55.1.1.0|2|2
1.3.6.1.2.1.55.1.2.0|2|64
1.3.6.1.2.1.55.1.3.0|66|2
1.3.6.1.2.1.55.1.5.1.2.1|4|lo
1.3.6.1.2.1.55.1.5.1.2.2|4|eth0
1.3.6.1.2.1.55.1.5.1.3.1|6|0.0
1.3.6.1.2.1.55.1.5.1.3.2|6|0.0
1.3.6.1.2.1.55.1.5.1.4.1|66|16436
1.3.6.1.2.1.55.1.5.1.4.2|66|1500
1.3.6.1.2.1.55.1.5.1.8.1|4|
1.3.6.1.2.1.55.1.5.1.8.2|4x|00127962f940
1.3.6.1.2.1.55.1.5.1.9.1|2|1
1.3.6.1.2.1.55.1.5.1.9.2|2|1
1.3.6.1.2.1.55.1.5.1.10.1|2|1
1.3.6.1.2.1.55.1.5.1.10.2|2|1
1.3.6.1.2.1.88.1.1.1.0|2|1
1.3.6.1.2.1.88.1.1.2.0|66|0
1.3.6.1.2.1.88.1.1.3.0|66|0
1.3.6.1.2.1.88.1.1.4.0|66|0
1.3.6.1.2.1.88.1.1.5.0|65|0
1.3.6.1.2.1.88.1.2.1.0|65|0
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1|6|1.3.6.1.2.1.2.2.1.1
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2|6|1.3.6.1.2.1.2.2.1.7
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3|6|1.3.6.1.2.1.2.2.1.8
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1|6|1.3.6.1.2.1.88.2.1.1
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2|6|1.3.6.1.2.1.88.2.1.2
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3|6|1.3.6.1.2.1.88.2.1.3
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4|6|1.3.6.1.2.1.88.2.1.4
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5|6|1.3.6.1.2.1.88.2.1.6
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1|6|1.3.6.1.2.1.88.2.1.1
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2|6|1.3.6.1.2.1.88.2.1.2
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3|6|1.3.6.1.2.1.88.2.1.3
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4|6|1.3.6.1.2.1.88.2.1.4
1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5|6|1.3.6.1.2.1.88.2.1.5
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1|2|1
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2|2|1
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3|2|1
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4|2|2
1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5|2|2
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4|2|1
1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5|2|1
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4|
1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4|
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4x|80
1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4x|80
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.85.112|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|2|1
1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.85.112|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|2|1
1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|2|1
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|6|1.3.6.1.6.3.1.1.5.3
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.85.112|6|1.3.6.1.6.3.1.1.5.4
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|6|1.3.6.1.2.1.88.2.0.4
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|6|1.3.6.1.2.1.88.2.0.3
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|6|1.3.6.1.2.1.88.2.0.1
1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|6|1.3.6.1.2.1.88.2.0.2
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4|_snmpd
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110|4|_linkUpDown
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112|4|_linkUpDown
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101|4|_triggerFail
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103|4|_triggerFire
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100|4|_triggerFire
1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103|4|_triggerFire
1.3.6.1.2.1.92.1.1.1.0|66|1000
1.3.6.1.2.1.92.1.1.2.0|66|1440
1.3.6.1.2.1.92.1.2.1.0|65|0
1.3.6.1.2.1.92.1.2.2.0|65|0
1.3.6.1.4.1.2021.4.1.0|2|0
1.3.6.1.4.1.2021.4.2.0|4|swap
1.3.6.1.4.1.2021.4.3.0|2|987988
1.3.6.1.4.1.2021.4.4.0|2|960556
1.3.6.1.4.1.2021.4.5.0|2|1021976
1.3.6.1.4.1.2021.4.6.0|2|63676
1.3.6.1.4.1.2021.4.11.0|2|1024232
1.3.6.1.4.1.2021.4.12.0|2|16000
1.3.6.1.4.1.2021.4.14.0|2|23936
1.3.6.1.4.1.2021.4.15.0|2|207212
1.3.6.1.4.1.2021.4.100.0|2|0
1.3.6.1.4.1.2021.4.101.0|4|
1.3.6.1.4.1.2021.10.1.1.1|2|1
1.3.6.1.4.1.2021.10.1.1.2|2|2
1.3.6.1.4.1.2021.10.1.1.3|2|3
1.3.6.1.4.1.2021.10.1.2.1|4|Load-1
1.3.6.1.4.1.2021.10.1.2.2|4|Load-5
1.3.6.1.4.1.2021.10.1.2.3|4|Load-15
1.3.6.1.4.1.2021.10.1.3.1|4|0.46
1.3.6.1.4.1.2021.10.1.3.2|4|0.13
1.3.6.1.4.1.2021.10.1.3.3|4|0.03
1.3.6.1.4.1.2021.10.1.4.1|4|12.00
1.3.6.1.4.1.2021.10.1.4.2|4|12.00
1.3.6.1.4.1.2021.10.1.4.3|4|12.00
1.3.6.1.4.1.2021.10.1.5.1|2|46
1.3.6.1.4.1.2021.10.1.5.2|2|13
1.3.6.1.4.1.2021.10.1.5.3|2|2
1.3.6.1.4.1.2021.10.1.6.1|68x|9f78043eeb851f
1.3.6.1.4.1.2021.10.1.6.2|68x|9f78043e051eb8
1.3.6.1.4.1.2021.10.1.6.3|68x|9f78043cf5c28f
1.3.6.1.4.1.2021.10.1.100.1|2|0
1.3.6.1.4.1.2021.10.1.100.2|2|0
1.3.6.1.4.1.2021.10.1.100.3|2|0
1.3.6.1.4.1.2021.10.1.101.1|4|
1.3.6.1.4.1.2021.10.1.101.2|4|
1.3.6.1.4.1.2021.10.1.101.3|4|
1.3.6.1.4.1.2021.11.1.0|2|1
1.3.6.1.4.1.2021.11.2.0|4|systemStats
1.3.6.1.4.1.2021.11.3.0|2|0
1.3.6.1.4.1.2021.11.4.0|2|0
1.3.6.1.4.1.2021.11.5.0|2|63
1.3.6.1.4.1.2021.11.6.0|2|0
1.3.6.1.4.1.2021.11.7.0|2|103
1.3.6.1.4.1.2021.11.8.0|2|937
1.3.6.1.4.1.2021.11.9.0|2|18
1.3.6.1.4.1.2021.11.10.0|2|1
1.3.6.1.4.1.2021.11.11.0|2|79
1.3.6.1.4.1.2021.11.50.0|65|24580765
1.3.6.1.4.1.2021.11.51.0|65|3089966
1.3.6.1.4.1.2021.11.52.0|65|1853831
1.3.6.1.4.1.2021.11.53.0|65|436392522
1.3.6.1.4.1.2021.11.54.0|65|946523
1.3.6.1.4.1.2021.11.55.0|65|0
1.3.6.1.4.1.2021.11.56.0|65|121512
1.3.6.1.4.1.2021.11.57.0|65|70616652
1.3.6.1.4.1.2021.11.58.0|65|51638586
1.3.6.1.4.1.2021.11.59.0|65|184272731
1.3.6.1.4.1.2021.11.60.0|65|3573783408
1.3.6.1.4.1.2021.11.61.0|65|26866
1.3.6.1.4.1.2021.11.62.0|65|43165
1.3.6.1.4.1.2021.11.63.0|65|161646
1.3.6.1.4.1.2021.13.14.1.0|2|1
1.3.6.1.4.1.2021.16.1.0|2|50
1.3.6.1.4.1.2021.100.1.0|2|1
1.3.6.1.4.1.2021.100.2.0|4|5.4.2.1
1.3.6.1.4.1.2021.100.3.0|4|$Date: 2013/03/12 19:26:13 $
1.3.6.1.4.1.2021.100.4.0|4|Mon Oct 25 22:15:22 2010
1.3.6.1.4.1.2021.100.5.0|4|$Id: linux-full-walk.snmprec,v 1.1 2013/03/12 19:26:13 elie Exp $
1.3.6.1.4.1.2021.100.6.0|4|'--prefix=/usr' '--sysconfdir=/etc/snmp' '--mandir=/usr/man' '--enable-ipv6' '--disable-debugging' '--enable-static=no' '--with-libwrap' '--with-perl-modules' '--with-default-snmp-version=3' '--with-sys-contact=root@example.org' '--with-sys-location=unknown' '--with-logfile=/var/log/snmpd.log' '--with-persistent-directory=/var/lib/net-snmp' '--without-rpm' '--program-suffix=' '--program-prefix=' '--build=i486-slackware-linux' 'CFLAGS=-O2 -march=i486 -mtune=i686' 'build_alias=i486-slackware-linux'
1.3.6.1.4.1.2021.100.10.0|2|0
1.3.6.1.4.1.2021.100.11.0|2|0
1.3.6.1.4.1.2021.100.12.0|2|0
1.3.6.1.4.1.2021.100.13.0|2|0
1.3.6.1.4.1.2021.100.20.0|2|1
1.3.6.1.4.1.2021.101.1.0|2|0
1.3.6.1.4.1.2021.101.2.0|4|snmp
1.3.6.1.4.1.2021.101.100.0|2|0
1.3.6.1.4.1.2021.101.101.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.1.0.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.1.1.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.1.2.0|4|
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.4.127|4|ip
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.5.127|4|icmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.6.127|4|tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.7.127|4|udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.1.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.2.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.3.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.4.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.5.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.6.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.7.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.8.127|4|mibII/system
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.1.127|4|if number
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.2.127|4|ifTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.25.127|4|ipv6IpForwarding
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.34.127|4|ipAddressTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.35.127|4|inetNetToMediaTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.13.127|4|tcpTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.19.127|4|tcpConnectionTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.20.127|4|tcpListenerTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.5.127|4|udpTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.7.127|4|udpEndpointTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.1.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.2.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.3.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.4.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.5.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.6.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.8.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.9.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.10.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.11.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.12.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.13.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.14.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.15.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.16.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.17.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.18.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.19.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.20.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.21.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.22.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.24.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.25.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.26.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.27.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.28.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.29.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.30.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.31.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.11.32.127|4|mibII/snmp
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.4.127|4|memory
1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.11.127|4|vmstat
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.13.0.127|4|ipReasmTimeout
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.4.127|4|ipCidrRouteTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.7.127|4|inetCidrRouteTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.26.0.127|4|ipv6IpDefaultHopLimit
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.1.127|4|ipSystemStatsTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.1.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.2.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.3.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.4.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.5.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.6.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.7.127|4|host/hr_system
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.2.2.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.4.1.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.1.127|4|ifXTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.5.127|4|ifTableLastChanged
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.1.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.2.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.3.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.4.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.63.1.2.127|4|schedTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.88.1.1.127|4|mteResource
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.100.127|4|memSwapError
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.101.127|4|memSwapErrMsg
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.16.1.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.1.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.2.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.3.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.4.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.5.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.6.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.10.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.11.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.12.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.13.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.20.127|4|ucd-snmp/versioninfo
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.1.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.2.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.100.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.101.127|4|ucd-snmp/errormib
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.4413.4.1.127|4|pass
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.1.127|4|target/snmpTargetSpinLock
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.4.127|4|snmpUnavailableContexts
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.5.127|4|snmpUnknownContexts
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.13.1.3.127|4|snmpNotifyFilterTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.16.1.1.127|4|vacm_context
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.1.9.1.2.1|4|mibII/sysORTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.1.9.1.3.1|4|mibII/sysORTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.1.9.1.4.1|4|mibII/sysORTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.1.127|4|mibII/at
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.2.127|4|mibII/at
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.3.127|4|mibII/at
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.1.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.2.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.3.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.4.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.5.127|4|mibII/ipaddr
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.1.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.2.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.3.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.4.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.5.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.6.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.7.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.8.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.9.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.10.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.11.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.12.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.13.127|4|mibII/iproute
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.1.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.2.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.3.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.4.127|4|mibII/ipmedia
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.24.6.0.127|4|route number
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.1.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.2.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.3.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.4.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.5.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.6.127|4|mibII/ipv6tcp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.1.127|4|mibII/ipv6udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.2.127|4|mibII/ipv6udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.3.127|4|mibII/ipv6udp
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.1.127|4|mteTriggerFailures
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.2.127|4|mteTriggerTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.3.127|4|mteTriggerDeltaTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.4.127|4|mteTriggerExistenceTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.5.127|4|mteTriggerBooleanTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.6.127|4|mteTriggerThresholdTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.3.1.127|4|mteObjectsTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.2.127|4|mteEventTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.3.127|4|mteEventNotificationTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.4.127|4|mteEventSetTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.1.127|4|nlmLogTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.2.127|4|nlmLogVariableTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.1.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.2.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.3.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.4.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.5.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.100.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.101.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.102.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.103.127|4|ucd-snmp/proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.1.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.2.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.3.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.100.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.101.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.102.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.103.127|4|ucd-extensible
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.1.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.2.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.3.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.4.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.5.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.6.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.7.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.8.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.9.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.10.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.100.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.101.127|4|ucd-snmp/disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.1.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.2.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.3.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.4.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.5.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.6.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.100.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.101.127|4|ucd-snmp/loadave
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.13.14.1.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.1.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.2.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.3.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.4.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.100.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.101.127|4|ucd-snmp/file
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.2.1.127|4|nsModuleTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.1.127|4|nsCacheTimeout
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.2.127|4|nsCacheEnabled
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.3.127|4|tzCacheTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.8.1.127|4|nsTransactionTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.9.1.127|4|nsVacmAccessTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.1.1.6.1.127|4|snmpSetSerialNo
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.1.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.2.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.3.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.4.127|4|snmpv3/snmpEngine
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.11.2.1.1.127|4|snmpv3/snmpMPDStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.11.2.1.2.127|4|snmpv3/snmpMPDStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.11.2.1.3.127|4|snmpv3/snmpMPDStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.1.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.2.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.3.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.4.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.5.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.1.6.127|4|snmpv3/usmStats
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.2.1.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.16.1.5.1.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.1.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.2.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.3.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.4.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.5.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.6.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.7.127|4|host/hr_storage
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.1.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.2.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.3.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.4.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.5.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.6.127|4|host/hr_device
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.1.127|4|host/hr_proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.2.127|4|host/hr_proc
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.4.1.1.127|4|host/hr_network
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.1.127|4|host/hr_print
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.2.127|4|host/hr_print
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.1.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.2.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.3.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.4.127|4|host/hr_disk
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.1.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.2.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.3.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.4.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.5.127|4|host/hr_partition
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.1.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.2.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.3.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.4.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.5.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.6.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.7.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.8.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.9.127|4|host/hr_filesys
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.1.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.2.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.3.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.4.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.5.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.6.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.4.2.1.7.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.5.1.1.1.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.5.1.1.2.127|4|host/hr_swrun
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.2.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.3.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.4.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.5.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.6.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.7.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.8.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.9.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.10.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.11.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.1.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.2.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.3.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.4.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.5.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.6.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.7.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.8.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.9.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.10.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.11.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.12.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.13.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.14.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.15.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.16.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.17.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.18.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.19.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.20.127|4|mibII/ipv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.1.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.2.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.3.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.4.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.5.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.6.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.7.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.8.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.9.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.10.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.11.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.12.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.13.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.14.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.15.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.16.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.17.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.18.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.19.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.20.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.21.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.22.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.23.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.24.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.25.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.26.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.27.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.28.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.29.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.30.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.31.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.32.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.33.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.34.127|4|mibII/icmpv6
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.1.0.127|4|nlmConfigGlobalEntryLimit
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.2.0.127|4|nlmConfigGlobalAgeOut
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.1.0.127|4|nlmStatsGlobalNotificationsLogged
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.2.0.127|4|nlmStatsGlobalNotificationsBumped
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.1.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.2.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.3.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.4.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.5.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.6.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.7.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.8.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.9.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.10.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.11.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.100.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.101.127|4|ucd-snmp/logmatch
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.1.127|4|nsExtendNumEntries
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.2.127|4|nsExtendConfigTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.3.127|4|nsExtendOut1Table
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.4.127|4|nsExtendOut2Table
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.1.127|4|nsDebugEnabled
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.2.127|4|nsDebugOutputAll
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.3.127|4|nsDebugDumpPdu
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.1.4.127|4|tzDebugTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.2.1.127|4|tzLoggingTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.2.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.3.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.4.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.5.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.6.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.7.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.8.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.9.127|4|target/snmpTargetAddrEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.2.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.3.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.4.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.5.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.6.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.7.127|4|target/snmpTargetParamsEntry
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.2.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.3.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.4.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.5.127|4|snmpNotifyTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.1.127|4|snmpNotifyFilterProfileTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.2.127|4|snmpNotifyFilterProfileTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.3.127|4|snmpNotifyFilterProfileTable
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.3.127|4|mibII/vacm:sec2group
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.4.127|4|mibII/vacm:sec2group
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.5.127|4|mibII/vacm:sec2group
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.4.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.5.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.6.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.7.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.8.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.9.127|4|mibII/vacm:access
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127|4|dlmod
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127|4|snmpv3/usmUser
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127|4|mibII/vacm:view
1.3.6.1.4.1.8072.1.2.1.1.5.0.1.0.0|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.1.1.0|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.1.2.0|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.6.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.7.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.25.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.34.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.35.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.13.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.20.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.7.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.14.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.15.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.16.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.17.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.18.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.21.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.22.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.24.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.25.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.26.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.27.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.28.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.29.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.30.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.31.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.11.32.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.11.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.13.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.26.0.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.4.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.63.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.88.1.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.100.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.101.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.16.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.4413.4.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.5.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.13.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.16.1.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.1.9.1.2.1|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.1.9.1.3.1|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.1.9.1.4.1|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.24.6.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.3.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.102.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.103.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.102.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.103.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.13.14.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.2.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.8.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.9.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.1.1.6.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.11.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.11.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.11.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.2.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.16.1.5.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.4.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.4.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.5.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.5.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.14.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.15.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.16.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.17.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.18.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.14.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.15.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.16.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.17.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.18.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.19.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.20.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.21.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.22.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.23.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.24.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.25.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.26.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.27.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.28.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.29.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.30.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.31.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.32.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.33.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.34.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.1.0.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.2.0.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.1.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.2.0.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.100.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.101.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.1.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.3.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.4.127|4x|80
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.2.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.1.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127|4x|c0
1.3.6.1.4.1.8072.1.2.1.1.6.0.1.0.0|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.1.1.0|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.1.2.0|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.6.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.7.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.25.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.34.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.35.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.13.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.19.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.20.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.7.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.14.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.15.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.16.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.17.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.18.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.19.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.21.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.22.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.24.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.25.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.26.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.27.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.28.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.29.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.30.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.31.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.11.32.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.11.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.13.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.7.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.26.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.2.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.4.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.63.1.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.88.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.100.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.101.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.16.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.4413.4.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.13.1.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.16.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.1.9.1.2.1|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.1.9.1.3.1|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.1.9.1.4.1|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.24.6.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.5.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.6.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.3.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.102.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.103.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.102.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.103.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.13.14.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.8.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.9.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.1.1.6.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.11.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.11.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.11.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.2.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.16.1.5.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.4.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.4.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.5.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.5.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.14.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.15.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.16.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.17.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.18.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.19.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.14.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.15.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.16.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.17.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.18.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.19.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.20.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.21.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.22.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.23.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.24.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.25.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.26.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.27.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.28.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.29.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.30.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.31.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.32.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.33.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.34.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.1.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.2.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.1.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.2.0.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.100.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.101.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.2.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.3.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.1.4.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.2.1.127|2|0
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.1.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127|2|-1
1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127|2|-1
1.3.6.1.4.1.8072.1.3.2.1.0|2|0
1.3.6.1.4.1.8072.1.5.1.0|2|5
1.3.6.1.4.1.8072.1.5.2.0|2|2
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.2.2|2|15
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.4|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.7|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.31.1|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.34|2|30
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.35|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.13|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.19|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.20|2|60
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.7|2|60
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.2.2|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.4|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.7|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.31.1|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.34|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.35|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.13|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.19|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.20|2|4
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.5|2|5
1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.7|2|4
1.3.6.1.4.1.8072.1.7.1.1.0|2|1
1.3.6.1.4.1.8072.1.7.1.2.0|2|1
1.3.6.1.4.1.8072.1.7.1.3.0|2|2
1.3.6.1.4.1.8072.1.7.2.1.1.3.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103|2|3
1.3.6.1.4.1.8072.1.7.2.1.1.4.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103|2|0
1.3.6.1.4.1.8072.1.7.2.1.1.5.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|2|1
1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|2|2
1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|2|2
1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|2|2
1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|4|all
1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|4|all
1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|4|all
1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|4|_all_
1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|4|_all_
1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|4|_all_
1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|2|4
1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|2|4
1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101|2|1
1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121|2|1
1.3.6.1.6.3.1.1.6.1.0|2|989152178
1.3.6.1.6.3.10.2.1.1.0|4x|80001f888092c37021529f4647
1.3.6.1.6.3.10.2.1.2.0|2|58
1.3.6.1.6.3.10.2.1.3.0|2|2334420
1.3.6.1.6.3.10.2.1.4.0|2|1500
1.3.6.1.6.3.11.2.1.1.0|65|0
1.3.6.1.6.3.11.2.1.2.0|65|0
1.3.6.1.6.3.11.2.1.3.0|65|0
1.3.6.1.6.3.12.1.1.0|2|0
1.3.6.1.6.3.12.1.4.0|65|0
1.3.6.1.6.3.12.1.5.0|65|0
1.3.6.1.6.3.15.1.1.1.0|65|0
1.3.6.1.6.3.15.1.1.2.0|65|0
1.3.6.1.6.3.15.1.1.3.0|65|0
1.3.6.1.6.3.15.1.1.4.0|65|37
1.3.6.1.6.3.15.1.1.5.0|65|3
1.3.6.1.6.3.15.1.1.6.0|65|0
1.3.6.1.6.3.15.1.2.1.0|2|0
1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|test-user
1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|test-user-aes
1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|6|0.0
1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|6|0.0
1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|6|1.3.6.1.6.3.10.1.1.2
1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|6|1.3.6.1.6.3.10.1.1.2
1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|6|1.3.6.1.6.3.10.1.2.2
1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|6|1.3.6.1.6.3.10.1.2.4
1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|4|
1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|
1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|2|3
1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|3
1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114|2|1
1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|1
1.3.6.1.6.3.16.1.1.1.1.0|4|
1.3.6.1.6.3.16.1.2.1.3.1.5.108.111.99.97.108|4|MyRWGroup
1.3.6.1.6.3.16.1.2.1.3.2.5.108.111.99.97.108|4|MyRWGroup
1.3.6.1.6.3.16.1.2.1.3.3.9.116.101.115.116.45.117.115.101.114|4|MyRWGroup
1.3.6.1.6.3.16.1.2.1.3.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115|4|grptest_user_aes
1.3.6.1.6.3.16.1.2.1.4.1.5.108.111.99.97.108|2|4
1.3.6.1.6.3.16.1.2.1.4.2.5.108.111.99.97.108|2|4
1.3.6.1.6.3.16.1.2.1.4.3.9.116.101.115.116.45.117.115.101.114|2|4
1.3.6.1.6.3.16.1.2.1.4.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|4
1.3.6.1.6.3.16.1.2.1.5.1.5.108.111.99.97.108|2|1
1.3.6.1.6.3.16.1.2.1.5.2.5.108.111.99.97.108|2|1
1.3.6.1.6.3.16.1.2.1.5.3.9.116.101.115.116.45.117.115.101.114|2|1
1.3.6.1.6.3.16.1.2.1.5.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115|2|1
1.3.6.1.6.3.16.1.4.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1|2|1
1.3.6.1.6.3.16.1.4.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|2|2
1.3.6.1.6.3.16.1.4.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1|4|all
1.3.6.1.6.3.16.1.4.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|4|_all_
1.3.6.1.6.3.16.1.4.1.6.9.77.121.82.87.71.114.111.117.112.0.0.1|4|all
1.3.6.1.6.3.16.1.4.1.6.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|4|_all_
1.3.6.1.6.3.16.1.4.1.7.9.77.121.82.87.71.114.111.117.112.0.0.1|4|all
1.3.6.1.6.3.16.1.4.1.7.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|4|_all_
1.3.6.1.6.3.16.1.4.1.8.9.77.121.82.87.71.114.111.117.112.0.0.1|2|4
1.3.6.1.6.3.16.1.4.1.8.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|2|4
1.3.6.1.6.3.16.1.4.1.9.9.77.121.82.87.71.114.111.117.112.0.0.1|2|1
1.3.6.1.6.3.16.1.4.1.9.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2|2|1
1.3.6.1.6.3.16.1.5.1.0|2|0
1.3.6.1.6.3.16.1.5.2.1.3.3.97.108.108.1.1|4x|80
1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.0|4|
1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.0|4|
1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.2|4|
1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|4|
1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|4|
1.3.6.1.6.3.16.1.5.2.1.4.3.97.108.108.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.0|2|1
1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.0|2|2
1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.1|2|2
1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.2|2|2
1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|2|1
1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.5.3.97.108.108.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.0|2|4
1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.2|2|4
1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.0|2|4
1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.2|2|4
1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|2|4
1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|2|4
1.3.6.1.6.3.16.1.5.2.1.6.3.97.108.108.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.0|2|1
1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.0|2|1
1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.1|2|1
1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.2|2|1
1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6|2|1
1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1|2|1
snmpsim-0.4.5/data/recorded/winxp-full-walk.snmprec 0000664 0063214 0063214 00000313067 13051045252 022551 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4|Hardware: x86 Family 6 Model 9 Stepping 5 AT/AT COMPATIBLE - Software: Windows 2000 Version 5.1 (Build 2600 Uniprocessor Free)
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.311.1.1.3.1.1
1.3.6.1.2.1.1.3.0|67|82795
1.3.6.1.2.1.1.4.0|4|info@snmplabs.com
1.3.6.1.2.1.1.5.0|4|CRAY
1.3.6.1.2.1.1.6.0|4|Moscow, Russia
1.3.6.1.2.1.1.7.0|2|76
1.3.6.1.2.1.2.1.0|2|3
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.65539|2|65539
1.3.6.1.2.1.2.2.1.1.65540|2|65540
1.3.6.1.2.1.2.2.1.2.1|4x|4d5320544350204c6f6f706261636b20696e7465726661636500
1.3.6.1.2.1.2.2.1.2.65539|4x|496e74656c2852292050524f2f576972656c65737320323230304247204e6574776f726b20436f6e6e656374696f6e00
1.3.6.1.2.1.2.2.1.2.65540|4x|426c7565746f6f7468204465766963652028506572736f6e616c2041726561204e6574776f726b2900
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.65539|2|6
1.3.6.1.2.1.2.2.1.3.65540|2|6
1.3.6.1.2.1.2.2.1.4.1|2|1520
1.3.6.1.2.1.2.2.1.4.65539|2|1500
1.3.6.1.2.1.2.2.1.4.65540|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.65539|66|54000000
1.3.6.1.2.1.2.2.1.5.65540|66|1000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.65539|4x|000e35d33d53
1.3.6.1.2.1.2.2.1.6.65540|4x|00158307d419
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.65539|2|1
1.3.6.1.2.1.2.2.1.7.65540|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.65539|2|1
1.3.6.1.2.1.2.2.1.8.65540|2|2
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.65539|67|0
1.3.6.1.2.1.2.2.1.9.65540|67|0
1.3.6.1.2.1.2.2.1.10.1|65|230095059
1.3.6.1.2.1.2.2.1.10.65539|65|911220674
1.3.6.1.2.1.2.2.1.10.65540|65|0
1.3.6.1.2.1.2.2.1.11.1|65|5645581
1.3.6.1.2.1.2.2.1.11.65539|65|616079
1.3.6.1.2.1.2.2.1.11.65540|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.65539|65|2379
1.3.6.1.2.1.2.2.1.12.65540|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.65539|65|0
1.3.6.1.2.1.2.2.1.13.65540|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.65539|65|0
1.3.6.1.2.1.2.2.1.14.65540|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.65539|65|2
1.3.6.1.2.1.2.2.1.15.65540|65|0
1.3.6.1.2.1.2.2.1.16.1|65|230095059
1.3.6.1.2.1.2.2.1.16.65539|65|21194412
1.3.6.1.2.1.2.2.1.16.65540|65|0
1.3.6.1.2.1.2.2.1.17.1|65|5645581
1.3.6.1.2.1.2.2.1.17.65539|65|334006
1.3.6.1.2.1.2.2.1.17.65540|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.65539|65|33
1.3.6.1.2.1.2.2.1.18.65540|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.65539|65|0
1.3.6.1.2.1.2.2.1.19.65540|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.65539|65|0
1.3.6.1.2.1.2.2.1.20.65540|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.65539|66|0
1.3.6.1.2.1.2.2.1.21.65540|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.65539|6|0.0
1.3.6.1.2.1.2.2.1.22.65540|6|0.0
1.3.6.1.2.1.4.1.0|2|2
1.3.6.1.2.1.4.2.0|2|128
1.3.6.1.2.1.4.3.0|65|6264649
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|3
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|2290
1.3.6.1.2.1.4.9.0|65|6262365
1.3.6.1.2.1.4.10.0|65|5980477
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.13.0|2|60
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|0
1.3.6.1.2.1.4.20.1.1.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.20.1.1.127.0.0.1|64x|7f000001
1.3.6.1.2.1.4.20.1.1.192.168.1.9|64x|c0a80109
1.3.6.1.2.1.4.20.1.2.0.0.0.0|2|65540
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.192.168.1.9|2|65539
1.3.6.1.2.1.4.20.1.3.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64x|ff000000
1.3.6.1.2.1.4.20.1.3.192.168.1.9|64x|ffffff00
1.3.6.1.2.1.4.20.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.20.1.4.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.4.192.168.1.9|2|1
1.3.6.1.2.1.4.20.1.5.0.0.0.0|2|65535
1.3.6.1.2.1.4.20.1.5.127.0.0.1|2|65535
1.3.6.1.2.1.4.20.1.5.192.168.1.9|2|65535
1.3.6.1.2.1.4.21.1.1.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.1.127.0.0.0|64x|7f000000
1.3.6.1.2.1.4.21.1.1.192.168.1.0|64x|c0a80100
1.3.6.1.2.1.4.21.1.1.192.168.1.9|64x|c0a80109
1.3.6.1.2.1.4.21.1.1.192.168.1.255|64x|c0a801ff
1.3.6.1.2.1.4.21.1.1.224.0.0.0|64x|e0000000
1.3.6.1.2.1.4.21.1.1.255.255.255.255|64x|ffffffff
1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|65539
1.3.6.1.2.1.4.21.1.2.127.0.0.0|2|1
1.3.6.1.2.1.4.21.1.2.192.168.1.0|2|65539
1.3.6.1.2.1.4.21.1.2.192.168.1.9|2|1
1.3.6.1.2.1.4.21.1.2.192.168.1.255|2|65539
1.3.6.1.2.1.4.21.1.2.224.0.0.0|2|65539
1.3.6.1.2.1.4.21.1.2.255.255.255.255|2|65540
1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|25
1.3.6.1.2.1.4.21.1.3.127.0.0.0|2|1
1.3.6.1.2.1.4.21.1.3.192.168.1.0|2|25
1.3.6.1.2.1.4.21.1.3.192.168.1.9|2|25
1.3.6.1.2.1.4.21.1.3.192.168.1.255|2|25
1.3.6.1.2.1.4.21.1.3.224.0.0.0|2|25
1.3.6.1.2.1.4.21.1.3.255.255.255.255|2|1
1.3.6.1.2.1.4.21.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.4.127.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.4.192.168.1.0|2|-1
1.3.6.1.2.1.4.21.1.4.192.168.1.9|2|-1
1.3.6.1.2.1.4.21.1.4.192.168.1.255|2|-1
1.3.6.1.2.1.4.21.1.4.224.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.4.255.255.255.255|2|-1
1.3.6.1.2.1.4.21.1.5.0.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.5.127.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.5.192.168.1.0|2|-1
1.3.6.1.2.1.4.21.1.5.192.168.1.9|2|-1
1.3.6.1.2.1.4.21.1.5.192.168.1.255|2|-1
1.3.6.1.2.1.4.21.1.5.224.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.5.255.255.255.255|2|-1
1.3.6.1.2.1.4.21.1.6.0.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.6.127.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.6.192.168.1.0|2|-1
1.3.6.1.2.1.4.21.1.6.192.168.1.9|2|-1
1.3.6.1.2.1.4.21.1.6.192.168.1.255|2|-1
1.3.6.1.2.1.4.21.1.6.224.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.6.255.255.255.255|2|-1
1.3.6.1.2.1.4.21.1.7.0.0.0.0|64x|c0a80101
1.3.6.1.2.1.4.21.1.7.127.0.0.0|64x|7f000001
1.3.6.1.2.1.4.21.1.7.192.168.1.0|64x|c0a80109
1.3.6.1.2.1.4.21.1.7.192.168.1.9|64x|7f000001
1.3.6.1.2.1.4.21.1.7.192.168.1.255|64x|c0a80109
1.3.6.1.2.1.4.21.1.7.224.0.0.0|64x|c0a80109
1.3.6.1.2.1.4.21.1.7.255.255.255.255|64x|c0a80109
1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4
1.3.6.1.2.1.4.21.1.8.127.0.0.0|2|3
1.3.6.1.2.1.4.21.1.8.192.168.1.0|2|3
1.3.6.1.2.1.4.21.1.8.192.168.1.9|2|3
1.3.6.1.2.1.4.21.1.8.192.168.1.255|2|3
1.3.6.1.2.1.4.21.1.8.224.0.0.0|2|3
1.3.6.1.2.1.4.21.1.8.255.255.255.255|2|3
1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|3
1.3.6.1.2.1.4.21.1.9.127.0.0.0|2|2
1.3.6.1.2.1.4.21.1.9.192.168.1.0|2|2
1.3.6.1.2.1.4.21.1.9.192.168.1.9|2|2
1.3.6.1.2.1.4.21.1.9.192.168.1.255|2|2
1.3.6.1.2.1.4.21.1.9.224.0.0.0|2|2
1.3.6.1.2.1.4.21.1.9.255.255.255.255|2|2
1.3.6.1.2.1.4.21.1.10.0.0.0.0|2|23078
1.3.6.1.2.1.4.21.1.10.127.0.0.0|2|23281
1.3.6.1.2.1.4.21.1.10.192.168.1.0|2|23081
1.3.6.1.2.1.4.21.1.10.192.168.1.9|2|23081
1.3.6.1.2.1.4.21.1.10.192.168.1.255|2|23081
1.3.6.1.2.1.4.21.1.10.224.0.0.0|2|23081
1.3.6.1.2.1.4.21.1.10.255.255.255.255|2|23280
1.3.6.1.2.1.4.21.1.11.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.21.1.11.127.0.0.0|64x|ff000000
1.3.6.1.2.1.4.21.1.11.192.168.1.0|64x|ffffff00
1.3.6.1.2.1.4.21.1.11.192.168.1.9|64x|ffffffff
1.3.6.1.2.1.4.21.1.11.192.168.1.255|64x|ffffffff
1.3.6.1.2.1.4.21.1.11.224.0.0.0|64x|f0000000
1.3.6.1.2.1.4.21.1.11.255.255.255.255|64x|ffffffff
1.3.6.1.2.1.4.21.1.12.0.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.12.127.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.12.192.168.1.0|2|-1
1.3.6.1.2.1.4.21.1.12.192.168.1.9|2|-1
1.3.6.1.2.1.4.21.1.12.192.168.1.255|2|-1
1.3.6.1.2.1.4.21.1.12.224.0.0.0|2|-1
1.3.6.1.2.1.4.21.1.12.255.255.255.255|2|-1
1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.127.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.192.168.1.0|6|0.0
1.3.6.1.2.1.4.21.1.13.192.168.1.9|6|0.0
1.3.6.1.2.1.4.21.1.13.192.168.1.255|6|0.0
1.3.6.1.2.1.4.21.1.13.224.0.0.0|6|0.0
1.3.6.1.2.1.4.21.1.13.255.255.255.255|6|0.0
1.3.6.1.2.1.4.22.1.1.65539.192.168.1.1|2|65539
1.3.6.1.2.1.4.22.1.1.65539.192.168.1.2|2|65539
1.3.6.1.2.1.4.22.1.2.65539.192.168.1.1|4x|485b393abb68
1.3.6.1.2.1.4.22.1.2.65539.192.168.1.2|4x|b88d120f4fa4
1.3.6.1.2.1.4.22.1.3.65539.192.168.1.1|64x|c0a80101
1.3.6.1.2.1.4.22.1.3.65539.192.168.1.2|64x|c0a80102
1.3.6.1.2.1.4.22.1.4.65539.192.168.1.1|2|3
1.3.6.1.2.1.4.22.1.4.65539.192.168.1.2|2|3
1.3.6.1.2.1.4.23.0|65|0
1.3.6.1.2.1.4.24.1.0|66|8
1.3.6.1.2.1.4.24.2.1.1.0.0.0.0.3.0.192.168.1.1|64x|00000000
1.3.6.1.2.1.4.24.2.1.1.127.0.0.0.2.0.127.0.0.1|64x|7f000000
1.3.6.1.2.1.4.24.2.1.1.192.168.1.0.2.0.192.168.1.9|64x|c0a80100
1.3.6.1.2.1.4.24.2.1.1.192.168.1.9.2.0.127.0.0.1|64x|c0a80109
1.3.6.1.2.1.4.24.2.1.1.192.168.1.255.2.0.192.168.1.9|64x|c0a801ff
1.3.6.1.2.1.4.24.2.1.1.224.0.0.0.2.0.192.168.1.9|64x|e0000000
1.3.6.1.2.1.4.24.2.1.1.255.255.255.255.2.0.192.168.1.9|64x|ffffffff
1.3.6.1.2.1.4.24.2.1.2.0.0.0.0.3.0.192.168.1.1|64x|00000000
1.3.6.1.2.1.4.24.2.1.2.127.0.0.0.2.0.127.0.0.1|64x|ff000000
1.3.6.1.2.1.4.24.2.1.2.192.168.1.0.2.0.192.168.1.9|64x|ffffff00
1.3.6.1.2.1.4.24.2.1.2.192.168.1.9.2.0.127.0.0.1|64x|ffffffff
1.3.6.1.2.1.4.24.2.1.2.192.168.1.255.2.0.192.168.1.9|64x|ffffffff
1.3.6.1.2.1.4.24.2.1.2.224.0.0.0.2.0.192.168.1.9|64x|f0000000
1.3.6.1.2.1.4.24.2.1.2.255.255.255.255.2.0.192.168.1.9|64x|ffffffff
1.3.6.1.2.1.4.24.2.1.3.0.0.0.0.3.0.192.168.1.1|2|0
1.3.6.1.2.1.4.24.2.1.3.127.0.0.0.2.0.127.0.0.1|2|0
1.3.6.1.2.1.4.24.2.1.3.192.168.1.0.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.3.192.168.1.9.2.0.127.0.0.1|2|0
1.3.6.1.2.1.4.24.2.1.3.192.168.1.255.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.3.224.0.0.0.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.3.255.255.255.255.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.4.0.0.0.0.3.0.192.168.1.1|64x|c0a80101
1.3.6.1.2.1.4.24.2.1.4.127.0.0.0.2.0.127.0.0.1|64x|7f000001
1.3.6.1.2.1.4.24.2.1.4.192.168.1.0.2.0.192.168.1.9|64x|c0a80109
1.3.6.1.2.1.4.24.2.1.4.192.168.1.9.2.0.127.0.0.1|64x|7f000001
1.3.6.1.2.1.4.24.2.1.4.192.168.1.255.2.0.192.168.1.9|64x|c0a80109
1.3.6.1.2.1.4.24.2.1.4.224.0.0.0.2.0.192.168.1.9|64x|c0a80109
1.3.6.1.2.1.4.24.2.1.4.255.255.255.255.2.0.192.168.1.9|64x|c0a80109
1.3.6.1.2.1.4.24.2.1.5.0.0.0.0.3.0.192.168.1.1|2|65539
1.3.6.1.2.1.4.24.2.1.5.127.0.0.0.2.0.127.0.0.1|2|1
1.3.6.1.2.1.4.24.2.1.5.192.168.1.0.2.0.192.168.1.9|2|65539
1.3.6.1.2.1.4.24.2.1.5.192.168.1.9.2.0.127.0.0.1|2|1
1.3.6.1.2.1.4.24.2.1.5.192.168.1.255.2.0.192.168.1.9|2|65539
1.3.6.1.2.1.4.24.2.1.5.224.0.0.0.2.0.192.168.1.9|2|65539
1.3.6.1.2.1.4.24.2.1.5.255.255.255.255.2.0.192.168.1.9|2|65540
1.3.6.1.2.1.4.24.2.1.6.0.0.0.0.3.0.192.168.1.1|2|4
1.3.6.1.2.1.4.24.2.1.6.127.0.0.0.2.0.127.0.0.1|2|3
1.3.6.1.2.1.4.24.2.1.6.192.168.1.0.2.0.192.168.1.9|2|3
1.3.6.1.2.1.4.24.2.1.6.192.168.1.9.2.0.127.0.0.1|2|3
1.3.6.1.2.1.4.24.2.1.6.192.168.1.255.2.0.192.168.1.9|2|3
1.3.6.1.2.1.4.24.2.1.6.224.0.0.0.2.0.192.168.1.9|2|3
1.3.6.1.2.1.4.24.2.1.6.255.255.255.255.2.0.192.168.1.9|2|3
1.3.6.1.2.1.4.24.2.1.7.0.0.0.0.3.0.192.168.1.1|2|3
1.3.6.1.2.1.4.24.2.1.7.127.0.0.0.2.0.127.0.0.1|2|2
1.3.6.1.2.1.4.24.2.1.7.192.168.1.0.2.0.192.168.1.9|2|2
1.3.6.1.2.1.4.24.2.1.7.192.168.1.9.2.0.127.0.0.1|2|2
1.3.6.1.2.1.4.24.2.1.7.192.168.1.255.2.0.192.168.1.9|2|2
1.3.6.1.2.1.4.24.2.1.7.224.0.0.0.2.0.192.168.1.9|2|2
1.3.6.1.2.1.4.24.2.1.7.255.255.255.255.2.0.192.168.1.9|2|2
1.3.6.1.2.1.4.24.2.1.8.0.0.0.0.3.0.192.168.1.1|2|23078
1.3.6.1.2.1.4.24.2.1.8.127.0.0.0.2.0.127.0.0.1|2|23281
1.3.6.1.2.1.4.24.2.1.8.192.168.1.0.2.0.192.168.1.9|2|23081
1.3.6.1.2.1.4.24.2.1.8.192.168.1.9.2.0.127.0.0.1|2|23081
1.3.6.1.2.1.4.24.2.1.8.192.168.1.255.2.0.192.168.1.9|2|23081
1.3.6.1.2.1.4.24.2.1.8.224.0.0.0.2.0.192.168.1.9|2|23081
1.3.6.1.2.1.4.24.2.1.8.255.255.255.255.2.0.192.168.1.9|2|23280
1.3.6.1.2.1.4.24.2.1.9.0.0.0.0.3.0.192.168.1.1|6|0.0
1.3.6.1.2.1.4.24.2.1.9.127.0.0.0.2.0.127.0.0.1|6|0.0
1.3.6.1.2.1.4.24.2.1.9.192.168.1.0.2.0.192.168.1.9|6|0.0
1.3.6.1.2.1.4.24.2.1.9.192.168.1.9.2.0.127.0.0.1|6|0.0
1.3.6.1.2.1.4.24.2.1.9.192.168.1.255.2.0.192.168.1.9|6|0.0
1.3.6.1.2.1.4.24.2.1.9.224.0.0.0.2.0.192.168.1.9|6|0.0
1.3.6.1.2.1.4.24.2.1.9.255.255.255.255.2.0.192.168.1.9|6|0.0
1.3.6.1.2.1.4.24.2.1.10.0.0.0.0.3.0.192.168.1.1|2|0
1.3.6.1.2.1.4.24.2.1.10.127.0.0.0.2.0.127.0.0.1|2|0
1.3.6.1.2.1.4.24.2.1.10.192.168.1.0.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.10.192.168.1.9.2.0.127.0.0.1|2|0
1.3.6.1.2.1.4.24.2.1.10.192.168.1.255.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.10.224.0.0.0.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.10.255.255.255.255.2.0.192.168.1.9|2|0
1.3.6.1.2.1.4.24.2.1.11.0.0.0.0.3.0.192.168.1.1|2|25
1.3.6.1.2.1.4.24.2.1.11.127.0.0.0.2.0.127.0.0.1|2|1
1.3.6.1.2.1.4.24.2.1.11.192.168.1.0.2.0.192.168.1.9|2|25
1.3.6.1.2.1.4.24.2.1.11.192.168.1.9.2.0.127.0.0.1|2|25
1.3.6.1.2.1.4.24.2.1.11.192.168.1.255.2.0.192.168.1.9|2|25
1.3.6.1.2.1.4.24.2.1.11.224.0.0.0.2.0.192.168.1.9|2|25
1.3.6.1.2.1.4.24.2.1.11.255.255.255.255.2.0.192.168.1.9|2|1
1.3.6.1.2.1.4.24.2.1.12.0.0.0.0.3.0.192.168.1.1|2|-1
1.3.6.1.2.1.4.24.2.1.12.127.0.0.0.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.12.192.168.1.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.12.192.168.1.9.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.12.192.168.1.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.12.224.0.0.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.12.255.255.255.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.13.0.0.0.0.3.0.192.168.1.1|2|-1
1.3.6.1.2.1.4.24.2.1.13.127.0.0.0.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.13.192.168.1.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.13.192.168.1.9.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.13.192.168.1.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.13.224.0.0.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.13.255.255.255.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.14.0.0.0.0.3.0.192.168.1.1|2|-1
1.3.6.1.2.1.4.24.2.1.14.127.0.0.0.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.14.192.168.1.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.14.192.168.1.9.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.14.192.168.1.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.14.224.0.0.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.14.255.255.255.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.15.0.0.0.0.3.0.192.168.1.1|2|-1
1.3.6.1.2.1.4.24.2.1.15.127.0.0.0.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.15.192.168.1.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.15.192.168.1.9.2.0.127.0.0.1|2|-1
1.3.6.1.2.1.4.24.2.1.15.192.168.1.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.15.224.0.0.0.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.4.24.2.1.15.255.255.255.255.2.0.192.168.1.9|2|-1
1.3.6.1.2.1.5.1.0|65|1
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|1
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|0
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|1
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|1
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|0
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.6.1.0|2|4
1.3.6.1.2.1.6.2.0|2|300
1.3.6.1.2.1.6.3.0|2|120000
1.3.6.1.2.1.6.4.0|2|-1
1.3.6.1.2.1.6.5.0|65|821
1.3.6.1.2.1.6.6.0|65|7
1.3.6.1.2.1.6.7.0|65|1
1.3.6.1.2.1.6.8.0|65|65
1.3.6.1.2.1.6.9.0|66|11
1.3.6.1.2.1.6.10.0|65|6220181
1.3.6.1.2.1.6.11.0|65|5938281
1.3.6.1.2.1.6.12.0|65|3
1.3.6.1.2.1.6.13.1.1.0.0.0.0.135.0.0.0.0.6220|2|2
1.3.6.1.2.1.6.13.1.1.0.0.0.0.445.0.0.0.0.39166|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1025.0.0.0.0.24745|2|2
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1146.127.0.0.1.1147|2|5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1147.127.0.0.1.1146|2|5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1712.127.0.0.1.1713|2|5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1713.127.0.0.1.1712|2|5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1714.127.0.0.1.1715|2|5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.1715.127.0.0.1.1714|2|5
1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.20619|2|2
1.3.6.1.2.1.6.13.1.1.192.168.1.9.139.0.0.0.0.61692|2|2
1.3.6.1.2.1.6.13.1.1.192.168.1.9.1720.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.192.168.1.9.1815.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.192.168.1.9.1818.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.192.168.1.9.1819.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.192.168.1.9.1820.194.67.1.250.993|2|5
1.3.6.1.2.1.6.13.1.1.192.168.1.9.1898.87.245.209.170.80|2|11
1.3.6.1.2.1.6.13.1.2.0.0.0.0.135.0.0.0.0.6220|64x|00000000
1.3.6.1.2.1.6.13.1.2.0.0.0.0.445.0.0.0.0.39166|64x|00000000
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1025.0.0.0.0.24745|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1146.127.0.0.1.1147|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1147.127.0.0.1.1146|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1712.127.0.0.1.1713|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1713.127.0.0.1.1712|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1714.127.0.0.1.1715|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.1715.127.0.0.1.1714|64x|7f000001
1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.20619|64x|7f000001
1.3.6.1.2.1.6.13.1.2.192.168.1.9.139.0.0.0.0.61692|64x|c0a80109
1.3.6.1.2.1.6.13.1.2.192.168.1.9.1720.194.67.1.250.993|64x|c0a80109
1.3.6.1.2.1.6.13.1.2.192.168.1.9.1815.194.67.1.250.993|64x|c0a80109
1.3.6.1.2.1.6.13.1.2.192.168.1.9.1818.194.67.1.250.993|64x|c0a80109
1.3.6.1.2.1.6.13.1.2.192.168.1.9.1819.194.67.1.250.993|64x|c0a80109
1.3.6.1.2.1.6.13.1.2.192.168.1.9.1820.194.67.1.250.993|64x|c0a80109
1.3.6.1.2.1.6.13.1.2.192.168.1.9.1898.87.245.209.170.80|64x|c0a80109
1.3.6.1.2.1.6.13.1.3.0.0.0.0.135.0.0.0.0.6220|2|135
1.3.6.1.2.1.6.13.1.3.0.0.0.0.445.0.0.0.0.39166|2|445
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1025.0.0.0.0.24745|2|1025
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1146.127.0.0.1.1147|2|1146
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1147.127.0.0.1.1146|2|1147
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1712.127.0.0.1.1713|2|1712
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1713.127.0.0.1.1712|2|1713
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1714.127.0.0.1.1715|2|1714
1.3.6.1.2.1.6.13.1.3.127.0.0.1.1715.127.0.0.1.1714|2|1715
1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.20619|2|8118
1.3.6.1.2.1.6.13.1.3.192.168.1.9.139.0.0.0.0.61692|2|139
1.3.6.1.2.1.6.13.1.3.192.168.1.9.1720.194.67.1.250.993|2|1720
1.3.6.1.2.1.6.13.1.3.192.168.1.9.1815.194.67.1.250.993|2|1815
1.3.6.1.2.1.6.13.1.3.192.168.1.9.1818.194.67.1.250.993|2|1818
1.3.6.1.2.1.6.13.1.3.192.168.1.9.1819.194.67.1.250.993|2|1819
1.3.6.1.2.1.6.13.1.3.192.168.1.9.1820.194.67.1.250.993|2|1820
1.3.6.1.2.1.6.13.1.3.192.168.1.9.1898.87.245.209.170.80|2|1898
1.3.6.1.2.1.6.13.1.4.0.0.0.0.135.0.0.0.0.6220|64x|00000000
1.3.6.1.2.1.6.13.1.4.0.0.0.0.445.0.0.0.0.39166|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1025.0.0.0.0.24745|64x|00000000
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1146.127.0.0.1.1147|64x|7f000001
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1147.127.0.0.1.1146|64x|7f000001
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1712.127.0.0.1.1713|64x|7f000001
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1713.127.0.0.1.1712|64x|7f000001
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1714.127.0.0.1.1715|64x|7f000001
1.3.6.1.2.1.6.13.1.4.127.0.0.1.1715.127.0.0.1.1714|64x|7f000001
1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.20619|64x|00000000
1.3.6.1.2.1.6.13.1.4.192.168.1.9.139.0.0.0.0.61692|64x|00000000
1.3.6.1.2.1.6.13.1.4.192.168.1.9.1720.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.192.168.1.9.1815.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.192.168.1.9.1818.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.192.168.1.9.1819.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.192.168.1.9.1820.194.67.1.250.993|64x|c24301fa
1.3.6.1.2.1.6.13.1.4.192.168.1.9.1898.87.245.209.170.80|64x|57f5d1aa
1.3.6.1.2.1.6.13.1.5.0.0.0.0.135.0.0.0.0.6220|2|6220
1.3.6.1.2.1.6.13.1.5.0.0.0.0.445.0.0.0.0.39166|2|39166
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1025.0.0.0.0.24745|2|24745
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1146.127.0.0.1.1147|2|1147
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1147.127.0.0.1.1146|2|1146
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1712.127.0.0.1.1713|2|1713
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1713.127.0.0.1.1712|2|1712
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1714.127.0.0.1.1715|2|1715
1.3.6.1.2.1.6.13.1.5.127.0.0.1.1715.127.0.0.1.1714|2|1714
1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.20619|2|20619
1.3.6.1.2.1.6.13.1.5.192.168.1.9.139.0.0.0.0.61692|2|61692
1.3.6.1.2.1.6.13.1.5.192.168.1.9.1720.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.192.168.1.9.1815.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.192.168.1.9.1818.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.192.168.1.9.1819.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.192.168.1.9.1820.194.67.1.250.993|2|993
1.3.6.1.2.1.6.13.1.5.192.168.1.9.1898.87.245.209.170.80|2|80
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|62
1.3.6.1.2.1.6.19.1.7.1.4.0.0.0.0.135.1.4.0.0.0.0.6220|2|2
1.3.6.1.2.1.6.19.1.7.1.4.0.0.0.0.445.1.4.0.0.0.0.39166|2|2
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1025.1.4.0.0.0.0.24745|2|2
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1146.1.4.127.0.0.1.1147|2|5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1147.1.4.127.0.0.1.1146|2|5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1712.1.4.127.0.0.1.1713|2|5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1713.1.4.127.0.0.1.1712|2|5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1714.1.4.127.0.0.1.1715|2|5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.1715.1.4.127.0.0.1.1714|2|5
1.3.6.1.2.1.6.19.1.7.1.4.127.0.0.1.8118.1.4.0.0.0.0.20619|2|2
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.139.1.4.0.0.0.0.61692|2|2
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1720.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1815.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1818.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1819.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1820.1.4.194.67.1.250.993|2|5
1.3.6.1.2.1.6.19.1.7.1.4.192.168.1.9.1898.1.4.87.245.209.170.80|2|11
1.3.6.1.2.1.7.1.0|65|42556
1.3.6.1.2.1.7.2.0|65|3
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|42563
1.3.6.1.2.1.7.5.1.1.0.0.0.0.161|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.162|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.445|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.500|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.1876|64x|00000000
1.3.6.1.2.1.7.5.1.1.0.0.0.0.4500|64x|00000000
1.3.6.1.2.1.7.5.1.1.127.0.0.1.123|64x|7f000001
1.3.6.1.2.1.7.5.1.1.127.0.0.1.1900|64x|7f000001
1.3.6.1.2.1.7.5.1.1.192.168.1.9.123|64x|c0a80109
1.3.6.1.2.1.7.5.1.1.192.168.1.9.137|64x|c0a80109
1.3.6.1.2.1.7.5.1.1.192.168.1.9.138|64x|c0a80109
1.3.6.1.2.1.7.5.1.1.192.168.1.9.1900|64x|c0a80109
1.3.6.1.2.1.7.5.1.2.0.0.0.0.161|2|161
1.3.6.1.2.1.7.5.1.2.0.0.0.0.162|2|162
1.3.6.1.2.1.7.5.1.2.0.0.0.0.445|2|445
1.3.6.1.2.1.7.5.1.2.0.0.0.0.500|2|500
1.3.6.1.2.1.7.5.1.2.0.0.0.0.1876|2|1876
1.3.6.1.2.1.7.5.1.2.0.0.0.0.4500|2|4500
1.3.6.1.2.1.7.5.1.2.127.0.0.1.123|2|123
1.3.6.1.2.1.7.5.1.2.127.0.0.1.1900|2|1900
1.3.6.1.2.1.7.5.1.2.192.168.1.9.123|2|123
1.3.6.1.2.1.7.5.1.2.192.168.1.9.137|2|137
1.3.6.1.2.1.7.5.1.2.192.168.1.9.138|2|138
1.3.6.1.2.1.7.5.1.2.192.168.1.9.1900|2|1900
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.161|2|161
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.162|2|162
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.445|2|445
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.500|2|500
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.1876|2|1876
1.3.6.1.2.1.7.7.1.3.1.4.0.0.0.0.4500|2|4500
1.3.6.1.2.1.7.7.1.3.1.4.127.0.0.1.123|2|123
1.3.6.1.2.1.7.7.1.3.1.4.127.0.0.1.1900|2|1900
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.123|2|123
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.137|2|137
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.138|2|138
1.3.6.1.2.1.7.7.1.3.1.4.192.168.1.9.1900|2|1900
1.3.6.1.2.1.11.1.0|65|5295
1.3.6.1.2.1.11.2.0|65|5286
1.3.6.1.2.1.11.3.0|65|2
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|13
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|5291
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|0
1.3.6.1.2.1.11.16.0|65|5295
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|2
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|5306
1.3.6.1.2.1.11.29.0|65|4
1.3.6.1.2.1.11.30.0|2|1
1.3.6.1.2.1.25.1.1.0|67|23294484
1.3.6.1.2.1.25.1.2.0|4x|07dd030a14041c01
1.3.6.1.2.1.25.1.3.0|2|0
1.3.6.1.2.1.25.1.4.0|4|
1.3.6.1.2.1.25.1.5.0|66|2
1.3.6.1.2.1.25.1.6.0|66|33
1.3.6.1.2.1.25.1.7.0|2|0
1.3.6.1.2.1.25.2.2.0|2|1014576
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.2|2|2
1.3.6.1.2.1.25.2.3.1.1.3|2|3
1.3.6.1.2.1.25.2.3.1.1.4|2|4
1.3.6.1.2.1.25.2.3.1.1.5|2|5
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.2|6|1.3.6.1.2.1.25.2.1.7
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.4|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.5|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.3.1|4|C:\ Label: Serial Number 1848504c
1.3.6.1.2.1.25.2.3.1.3.2|4|D:\
1.3.6.1.2.1.25.2.3.1.3.3|4|Z:\ Label: Serial Number ba85e1bf
1.3.6.1.2.1.25.2.3.1.3.4|4|Virtual Memory
1.3.6.1.2.1.25.2.3.1.3.5|4|Physical Memory
1.3.6.1.2.1.25.2.3.1.4.1|2|16384
1.3.6.1.2.1.25.2.3.1.4.2|2|0
1.3.6.1.2.1.25.2.3.1.4.3|2|4096
1.3.6.1.2.1.25.2.3.1.4.4|2|65536
1.3.6.1.2.1.25.2.3.1.4.5|2|65536
1.3.6.1.2.1.25.2.3.1.5.1|2|1952447
1.3.6.1.2.1.25.2.3.1.5.2|2|0
1.3.6.1.2.1.25.2.3.1.5.3|2|21304198
1.3.6.1.2.1.25.2.3.1.5.4|2|20377
1.3.6.1.2.1.25.2.3.1.5.5|2|15852
1.3.6.1.2.1.25.2.3.1.6.1|2|1884128
1.3.6.1.2.1.25.2.3.1.6.2|2|0
1.3.6.1.2.1.25.2.3.1.6.3|2|20191655
1.3.6.1.2.1.25.2.3.1.6.4|2|7962
1.3.6.1.2.1.25.2.3.1.6.5|2|9686
1.3.6.1.2.1.25.2.3.1.7.1|65|0
1.3.6.1.2.1.25.2.3.1.7.2|65|0
1.3.6.1.2.1.25.2.3.1.7.3|65|0
1.3.6.1.2.1.25.2.3.1.7.4|65|0
1.3.6.1.2.1.25.2.3.1.7.5|65|0
1.3.6.1.2.1.25.3.2.1.1.1|2|1
1.3.6.1.2.1.25.3.2.1.1.2|2|2
1.3.6.1.2.1.25.3.2.1.1.3|2|3
1.3.6.1.2.1.25.3.2.1.1.4|2|4
1.3.6.1.2.1.25.3.2.1.1.5|2|5
1.3.6.1.2.1.25.3.2.1.1.6|2|6
1.3.6.1.2.1.25.3.2.1.1.7|2|7
1.3.6.1.2.1.25.3.2.1.1.8|2|8
1.3.6.1.2.1.25.3.2.1.1.9|2|9
1.3.6.1.2.1.25.3.2.1.1.10|2|10
1.3.6.1.2.1.25.3.2.1.1.11|2|11
1.3.6.1.2.1.25.3.2.1.1.12|2|12
1.3.6.1.2.1.25.3.2.1.1.13|2|13
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.3|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.4|6|1.3.6.1.2.1.25.3.1.5
1.3.6.1.2.1.25.3.2.1.2.5|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.6|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.7|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.8|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.9|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.10|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.11|6|1.3.6.1.2.1.25.3.1.13
1.3.6.1.2.1.25.3.2.1.2.12|6|1.3.6.1.2.1.25.3.1.16
1.3.6.1.2.1.25.3.2.1.2.13|6|1.3.6.1.2.1.25.3.1.15
1.3.6.1.2.1.25.3.2.1.3.1|4|Microsoft XPS Document Writer
1.3.6.1.2.1.25.3.2.1.3.2|4|Microsoft Office Document Image Writer Driver
1.3.6.1.2.1.25.3.2.1.3.3|4|HP Officejet 6500 E710a-f
1.3.6.1.2.1.25.3.2.1.3.4|4|Fax - HP Officejet 6500 E710a-f
1.3.6.1.2.1.25.3.2.1.3.5|4|Intel
1.3.6.1.2.1.25.3.2.1.3.6|4|MS TCP Loopback interface
1.3.6.1.2.1.25.3.2.1.3.7|4|Intel(R) PRO/Wireless 2200BG Network Connection
1.3.6.1.2.1.25.3.2.1.3.8|4|Bluetooth Device (Personal Area Network)
1.3.6.1.2.1.25.3.2.1.3.9|4|D:\
1.3.6.1.2.1.25.3.2.1.3.10|4|Fixed Disk
1.3.6.1.2.1.25.3.2.1.3.11|4|IBM enhanced (101- or 102-key) keyboard, Subtype=(0)
1.3.6.1.2.1.25.3.2.1.3.12|4|5-Buttons (with wheel)
1.3.6.1.2.1.25.3.2.1.3.13|4|LPT1:
1.3.6.1.2.1.25.3.2.1.4.1|6|0.0
1.3.6.1.2.1.25.3.2.1.4.2|6|0.0
1.3.6.1.2.1.25.3.2.1.4.3|6|0.0
1.3.6.1.2.1.25.3.2.1.4.4|6|0.0
1.3.6.1.2.1.25.3.2.1.4.5|6|0.0
1.3.6.1.2.1.25.3.2.1.4.6|6|0.0
1.3.6.1.2.1.25.3.2.1.4.7|6|0.0
1.3.6.1.2.1.25.3.2.1.4.8|6|0.0
1.3.6.1.2.1.25.3.2.1.4.9|6|0.0
1.3.6.1.2.1.25.3.2.1.4.10|6|0.0
1.3.6.1.2.1.25.3.2.1.4.11|6|0.0
1.3.6.1.2.1.25.3.2.1.4.12|6|0.0
1.3.6.1.2.1.25.3.2.1.4.13|6|0.0
1.3.6.1.2.1.25.3.2.1.5.1|2|2
1.3.6.1.2.1.25.3.2.1.5.2|2|2
1.3.6.1.2.1.25.3.2.1.5.3|2|2
1.3.6.1.2.1.25.3.2.1.5.4|2|2
1.3.6.1.2.1.25.3.2.1.5.5|2|2
1.3.6.1.2.1.25.3.2.1.5.6|2|1
1.3.6.1.2.1.25.3.2.1.5.7|2|1
1.3.6.1.2.1.25.3.2.1.5.8|2|1
1.3.6.1.2.1.25.3.2.1.5.9|2|1
1.3.6.1.2.1.25.3.2.1.5.10|2|2
1.3.6.1.2.1.25.3.2.1.5.11|2|2
1.3.6.1.2.1.25.3.2.1.5.12|2|2
1.3.6.1.2.1.25.3.2.1.5.13|2|1
1.3.6.1.2.1.25.3.2.1.6.1|65|0
1.3.6.1.2.1.25.3.2.1.6.2|65|0
1.3.6.1.2.1.25.3.2.1.6.3|65|0
1.3.6.1.2.1.25.3.2.1.6.4|65|0
1.3.6.1.2.1.25.3.2.1.6.5|65|0
1.3.6.1.2.1.25.3.2.1.6.6|65|0
1.3.6.1.2.1.25.3.2.1.6.7|65|0
1.3.6.1.2.1.25.3.2.1.6.8|65|0
1.3.6.1.2.1.25.3.2.1.6.9|65|0
1.3.6.1.2.1.25.3.2.1.6.10|65|0
1.3.6.1.2.1.25.3.2.1.6.11|65|0
1.3.6.1.2.1.25.3.2.1.6.12|65|0
1.3.6.1.2.1.25.3.2.1.6.13|65|0
1.3.6.1.2.1.25.3.3.1.1.5|6|0.0
1.3.6.1.2.1.25.3.3.1.2.5|2|0
1.3.6.1.2.1.25.3.4.1.1.6|2|1
1.3.6.1.2.1.25.3.4.1.1.7|2|65539
1.3.6.1.2.1.25.3.4.1.1.8|2|65540
1.3.6.1.2.1.25.3.5.1.1.1|2|1
1.3.6.1.2.1.25.3.5.1.1.2|2|1
1.3.6.1.2.1.25.3.5.1.1.3|2|1
1.3.6.1.2.1.25.3.5.1.1.4|2|1
1.3.6.1.2.1.25.3.5.1.2.1|4x|00
1.3.6.1.2.1.25.3.5.1.2.2|4x|00
1.3.6.1.2.1.25.3.5.1.2.3|4x|00
1.3.6.1.2.1.25.3.5.1.2.4|4x|00
1.3.6.1.2.1.25.3.6.1.1.9|2|2
1.3.6.1.2.1.25.3.6.1.1.10|2|1
1.3.6.1.2.1.25.3.6.1.2.9|2|5
1.3.6.1.2.1.25.3.6.1.2.10|2|3
1.3.6.1.2.1.25.3.6.1.3.9|2|1
1.3.6.1.2.1.25.3.6.1.3.10|2|0
1.3.6.1.2.1.25.3.6.1.4.9|2|0
1.3.6.1.2.1.25.3.6.1.4.10|2|3972064
1.3.6.1.2.1.25.3.7.1.1.10.1|2|1
1.3.6.1.2.1.25.3.7.1.1.10.2|2|2
1.3.6.1.2.1.25.3.7.1.1.10.3|2|3
1.3.6.1.2.1.25.3.7.1.2.10.1|4|
1.3.6.1.2.1.25.3.7.1.2.10.2|4|
1.3.6.1.2.1.25.3.7.1.2.10.3|4|
1.3.6.1.2.1.25.3.7.1.3.10.1|4x|01000000
1.3.6.1.2.1.25.3.7.1.3.10.2|4x|02000000
1.3.6.1.2.1.25.3.7.1.3.10.3|4x|03000000
1.3.6.1.2.1.25.3.7.1.4.10.1|2|1894298
1.3.6.1.2.1.25.3.7.1.4.10.2|2|1330712
1.3.6.1.2.1.25.3.7.1.4.10.3|2|747022
1.3.6.1.2.1.25.3.7.1.5.10.1|2|1
1.3.6.1.2.1.25.3.7.1.5.10.2|2|3
1.3.6.1.2.1.25.3.7.1.5.10.3|2|3
1.3.6.1.2.1.25.3.8.1.1.1|2|1
1.3.6.1.2.1.25.3.8.1.1.2|2|2
1.3.6.1.2.1.25.3.8.1.1.3|2|3
1.3.6.1.2.1.25.3.8.1.2.1|4|
1.3.6.1.2.1.25.3.8.1.2.2|4|
1.3.6.1.2.1.25.3.8.1.2.3|4|
1.3.6.1.2.1.25.3.8.1.3.1|4|
1.3.6.1.2.1.25.3.8.1.3.2|4|
1.3.6.1.2.1.25.3.8.1.3.3|4|
1.3.6.1.2.1.25.3.8.1.4.1|6|1.3.6.1.2.1.25.3.9.5
1.3.6.1.2.1.25.3.8.1.4.2|6|1.3.6.1.2.1.25.3.9.5
1.3.6.1.2.1.25.3.8.1.4.3|6|1.3.6.1.2.1.25.3.9.2
1.3.6.1.2.1.25.3.8.1.5.1|2|1
1.3.6.1.2.1.25.3.8.1.5.2|2|2
1.3.6.1.2.1.25.3.8.1.5.3|2|1
1.3.6.1.2.1.25.3.8.1.6.1|2|0
1.3.6.1.2.1.25.3.8.1.6.2|2|0
1.3.6.1.2.1.25.3.8.1.6.3|2|0
1.3.6.1.2.1.25.3.8.1.7.1|2|1
1.3.6.1.2.1.25.3.8.1.7.2|2|2
1.3.6.1.2.1.25.3.8.1.7.3|2|3
1.3.6.1.2.1.25.3.8.1.8.1|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.8.2|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.8.3|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.1|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.2|4x|0000010100000000
1.3.6.1.2.1.25.3.8.1.9.3|4x|0000010100000000
1.3.6.1.2.1.25.4.1.0|2|4
1.3.6.1.2.1.25.4.2.1.1.1|2|1
1.3.6.1.2.1.25.4.2.1.1.4|2|4
1.3.6.1.2.1.25.4.2.1.1.384|2|384
1.3.6.1.2.1.25.4.2.1.1.436|2|436
1.3.6.1.2.1.25.4.2.1.1.468|2|468
1.3.6.1.2.1.25.4.2.1.1.596|2|596
1.3.6.1.2.1.25.4.2.1.1.620|2|620
1.3.6.1.2.1.25.4.2.1.1.664|2|664
1.3.6.1.2.1.25.4.2.1.1.676|2|676
1.3.6.1.2.1.25.4.2.1.1.820|2|820
1.3.6.1.2.1.25.4.2.1.1.880|2|880
1.3.6.1.2.1.25.4.2.1.1.936|2|936
1.3.6.1.2.1.25.4.2.1.1.996|2|996
1.3.6.1.2.1.25.4.2.1.1.1104|2|1104
1.3.6.1.2.1.25.4.2.1.1.1132|2|1132
1.3.6.1.2.1.25.4.2.1.1.1144|2|1144
1.3.6.1.2.1.25.4.2.1.1.1188|2|1188
1.3.6.1.2.1.25.4.2.1.1.1304|2|1304
1.3.6.1.2.1.25.4.2.1.1.1320|2|1320
1.3.6.1.2.1.25.4.2.1.1.1328|2|1328
1.3.6.1.2.1.25.4.2.1.1.1396|2|1396
1.3.6.1.2.1.25.4.2.1.1.1492|2|1492
1.3.6.1.2.1.25.4.2.1.1.1680|2|1680
1.3.6.1.2.1.25.4.2.1.1.1692|2|1692
1.3.6.1.2.1.25.4.2.1.1.1728|2|1728
1.3.6.1.2.1.25.4.2.1.1.1816|2|1816
1.3.6.1.2.1.25.4.2.1.1.1856|2|1856
1.3.6.1.2.1.25.4.2.1.1.1860|2|1860
1.3.6.1.2.1.25.4.2.1.1.1988|2|1988
1.3.6.1.2.1.25.4.2.1.1.2196|2|2196
1.3.6.1.2.1.25.4.2.1.1.2880|2|2880
1.3.6.1.2.1.25.4.2.1.1.2980|2|2980
1.3.6.1.2.1.25.4.2.1.1.3268|2|3268
1.3.6.1.2.1.25.4.2.1.2.1|4|System Idle Process
1.3.6.1.2.1.25.4.2.1.2.4|4|System
1.3.6.1.2.1.25.4.2.1.2.384|4|SynTPLpr.exe
1.3.6.1.2.1.25.4.2.1.2.436|4|explorer.exe
1.3.6.1.2.1.25.4.2.1.2.468|4|smss.exe
1.3.6.1.2.1.25.4.2.1.2.596|4|csrss.exe
1.3.6.1.2.1.25.4.2.1.2.620|4|winlogon.exe
1.3.6.1.2.1.25.4.2.1.2.664|4|services.exe
1.3.6.1.2.1.25.4.2.1.2.676|4|lsass.exe
1.3.6.1.2.1.25.4.2.1.2.820|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.880|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.936|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.996|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1104|4|alg.exe
1.3.6.1.2.1.25.4.2.1.2.1132|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1144|4|SOUNDMAN.EXE
1.3.6.1.2.1.25.4.2.1.2.1188|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1304|4|igfxtray.exe
1.3.6.1.2.1.25.4.2.1.2.1320|4|hkcmd.exe
1.3.6.1.2.1.25.4.2.1.2.1328|4|ctfmon.exe
1.3.6.1.2.1.25.4.2.1.2.1396|4|spoolsv.exe
1.3.6.1.2.1.25.4.2.1.2.1492|4|privoxy.exe
1.3.6.1.2.1.25.4.2.1.2.1680|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1692|4|SynTPEnh.exe
1.3.6.1.2.1.25.4.2.1.2.1728|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1816|4|MDM.EXE
1.3.6.1.2.1.25.4.2.1.2.1856|4|wscntfy.exe
1.3.6.1.2.1.25.4.2.1.2.1860|4|svchost.exe
1.3.6.1.2.1.25.4.2.1.2.1988|4|snmp.exe
1.3.6.1.2.1.25.4.2.1.2.2196|4|thunderbird.exe
1.3.6.1.2.1.25.4.2.1.2.2880|4|snmptrap.exe
1.3.6.1.2.1.25.4.2.1.2.2980|4|firefox.exe
1.3.6.1.2.1.25.4.2.1.2.3268|4|Far.exe
1.3.6.1.2.1.25.4.2.1.3.1|6|0.0
1.3.6.1.2.1.25.4.2.1.3.4|6|0.0
1.3.6.1.2.1.25.4.2.1.3.384|6|0.0
1.3.6.1.2.1.25.4.2.1.3.436|6|0.0
1.3.6.1.2.1.25.4.2.1.3.468|6|0.0
1.3.6.1.2.1.25.4.2.1.3.596|6|0.0
1.3.6.1.2.1.25.4.2.1.3.620|6|0.0
1.3.6.1.2.1.25.4.2.1.3.664|6|0.0
1.3.6.1.2.1.25.4.2.1.3.676|6|0.0
1.3.6.1.2.1.25.4.2.1.3.820|6|0.0
1.3.6.1.2.1.25.4.2.1.3.880|6|0.0
1.3.6.1.2.1.25.4.2.1.3.936|6|0.0
1.3.6.1.2.1.25.4.2.1.3.996|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1104|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1132|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1144|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1188|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1304|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1320|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1328|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1396|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1492|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1680|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1692|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1728|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1816|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1856|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1860|6|0.0
1.3.6.1.2.1.25.4.2.1.3.1988|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2196|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2880|6|0.0
1.3.6.1.2.1.25.4.2.1.3.2980|6|0.0
1.3.6.1.2.1.25.4.2.1.3.3268|6|0.0
1.3.6.1.2.1.25.4.2.1.4.1|4|
1.3.6.1.2.1.25.4.2.1.4.4|4|
1.3.6.1.2.1.25.4.2.1.4.384|4|C:\Program Files\Synaptics\SynTP\
1.3.6.1.2.1.25.4.2.1.4.436|4|C:\WINDOWS\
1.3.6.1.2.1.25.4.2.1.4.468|4|\SystemRoot\System32\
1.3.6.1.2.1.25.4.2.1.4.596|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.620|4|
1.3.6.1.2.1.25.4.2.1.4.664|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.676|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.820|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.880|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.936|4|C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.996|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1104|4|C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.1132|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1144|4|C:\WINDOWS\
1.3.6.1.2.1.25.4.2.1.4.1188|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1304|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1320|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1328|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1396|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1492|4|C:\Program Files\Privoxy\
1.3.6.1.2.1.25.4.2.1.4.1680|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1692|4|C:\Program Files\Synaptics\SynTP\
1.3.6.1.2.1.25.4.2.1.4.1728|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1816|4|C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\
1.3.6.1.2.1.25.4.2.1.4.1856|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1860|4|C:\WINDOWS\system32\
1.3.6.1.2.1.25.4.2.1.4.1988|4|C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.2196|4|C:\Program Files\Mozilla Thunderbird\
1.3.6.1.2.1.25.4.2.1.4.2880|4|C:\WINDOWS\System32\
1.3.6.1.2.1.25.4.2.1.4.2980|4|C:\Program Files\Mozilla Firefox\
1.3.6.1.2.1.25.4.2.1.4.3268|4|C:\Program Files\Far2\
1.3.6.1.2.1.25.4.2.1.5.1|4|
1.3.6.1.2.1.25.4.2.1.5.4|4|
1.3.6.1.2.1.25.4.2.1.5.384|4x|20
1.3.6.1.2.1.25.4.2.1.5.436|4|
1.3.6.1.2.1.25.4.2.1.5.468|4|
1.3.6.1.2.1.25.4.2.1.5.596|4|ObjectDirectory=\Windows SharedSection=1024,3072,512 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserS
1.3.6.1.2.1.25.4.2.1.5.620|4|
1.3.6.1.2.1.25.4.2.1.5.664|4|
1.3.6.1.2.1.25.4.2.1.5.676|4|
1.3.6.1.2.1.25.4.2.1.5.820|4|-k DcomLaunch
1.3.6.1.2.1.25.4.2.1.5.880|4|-k rpcss
1.3.6.1.2.1.25.4.2.1.5.936|4|-k netsvcs
1.3.6.1.2.1.25.4.2.1.5.996|4|-k WudfServiceGroup
1.3.6.1.2.1.25.4.2.1.5.1104|4|
1.3.6.1.2.1.25.4.2.1.5.1132|4|-k NetworkService
1.3.6.1.2.1.25.4.2.1.5.1144|4x|20
1.3.6.1.2.1.25.4.2.1.5.1188|4|-k LocalService
1.3.6.1.2.1.25.4.2.1.5.1304|4x|20
1.3.6.1.2.1.25.4.2.1.5.1320|4x|20
1.3.6.1.2.1.25.4.2.1.5.1328|4x|20
1.3.6.1.2.1.25.4.2.1.5.1396|4|
1.3.6.1.2.1.25.4.2.1.5.1492|4x|20
1.3.6.1.2.1.25.4.2.1.5.1680|4|-k LocalService
1.3.6.1.2.1.25.4.2.1.5.1692|4x|20
1.3.6.1.2.1.25.4.2.1.5.1728|4|-k bthsvcs
1.3.6.1.2.1.25.4.2.1.5.1816|4|
1.3.6.1.2.1.25.4.2.1.5.1856|4|
1.3.6.1.2.1.25.4.2.1.5.1860|4|-k imgsvc
1.3.6.1.2.1.25.4.2.1.5.1988|4|
1.3.6.1.2.1.25.4.2.1.5.2196|4|
1.3.6.1.2.1.25.4.2.1.5.2880|4|
1.3.6.1.2.1.25.4.2.1.5.2980|4|
1.3.6.1.2.1.25.4.2.1.5.3268|4x|20
1.3.6.1.2.1.25.4.2.1.6.1|2|2
1.3.6.1.2.1.25.4.2.1.6.4|2|2
1.3.6.1.2.1.25.4.2.1.6.384|2|4
1.3.6.1.2.1.25.4.2.1.6.436|2|4
1.3.6.1.2.1.25.4.2.1.6.468|2|4
1.3.6.1.2.1.25.4.2.1.6.596|2|4
1.3.6.1.2.1.25.4.2.1.6.620|2|4
1.3.6.1.2.1.25.4.2.1.6.664|2|4
1.3.6.1.2.1.25.4.2.1.6.676|2|4
1.3.6.1.2.1.25.4.2.1.6.820|2|4
1.3.6.1.2.1.25.4.2.1.6.880|2|4
1.3.6.1.2.1.25.4.2.1.6.936|2|4
1.3.6.1.2.1.25.4.2.1.6.996|2|4
1.3.6.1.2.1.25.4.2.1.6.1104|2|4
1.3.6.1.2.1.25.4.2.1.6.1132|2|4
1.3.6.1.2.1.25.4.2.1.6.1144|2|4
1.3.6.1.2.1.25.4.2.1.6.1188|2|4
1.3.6.1.2.1.25.4.2.1.6.1304|2|4
1.3.6.1.2.1.25.4.2.1.6.1320|2|4
1.3.6.1.2.1.25.4.2.1.6.1328|2|4
1.3.6.1.2.1.25.4.2.1.6.1396|2|4
1.3.6.1.2.1.25.4.2.1.6.1492|2|4
1.3.6.1.2.1.25.4.2.1.6.1680|2|4
1.3.6.1.2.1.25.4.2.1.6.1692|2|4
1.3.6.1.2.1.25.4.2.1.6.1728|2|4
1.3.6.1.2.1.25.4.2.1.6.1816|2|4
1.3.6.1.2.1.25.4.2.1.6.1856|2|4
1.3.6.1.2.1.25.4.2.1.6.1860|2|4
1.3.6.1.2.1.25.4.2.1.6.1988|2|4
1.3.6.1.2.1.25.4.2.1.6.2196|2|4
1.3.6.1.2.1.25.4.2.1.6.2880|2|4
1.3.6.1.2.1.25.4.2.1.6.2980|2|4
1.3.6.1.2.1.25.4.2.1.6.3268|2|4
1.3.6.1.2.1.25.4.2.1.7.1|2|1
1.3.6.1.2.1.25.4.2.1.7.4|2|1
1.3.6.1.2.1.25.4.2.1.7.384|2|1
1.3.6.1.2.1.25.4.2.1.7.436|2|1
1.3.6.1.2.1.25.4.2.1.7.468|2|1
1.3.6.1.2.1.25.4.2.1.7.596|2|1
1.3.6.1.2.1.25.4.2.1.7.620|2|1
1.3.6.1.2.1.25.4.2.1.7.664|2|1
1.3.6.1.2.1.25.4.2.1.7.676|2|1
1.3.6.1.2.1.25.4.2.1.7.820|2|1
1.3.6.1.2.1.25.4.2.1.7.880|2|1
1.3.6.1.2.1.25.4.2.1.7.936|2|1
1.3.6.1.2.1.25.4.2.1.7.996|2|1
1.3.6.1.2.1.25.4.2.1.7.1104|2|1
1.3.6.1.2.1.25.4.2.1.7.1132|2|1
1.3.6.1.2.1.25.4.2.1.7.1144|2|1
1.3.6.1.2.1.25.4.2.1.7.1188|2|1
1.3.6.1.2.1.25.4.2.1.7.1304|2|1
1.3.6.1.2.1.25.4.2.1.7.1320|2|1
1.3.6.1.2.1.25.4.2.1.7.1328|2|1
1.3.6.1.2.1.25.4.2.1.7.1396|2|1
1.3.6.1.2.1.25.4.2.1.7.1492|2|1
1.3.6.1.2.1.25.4.2.1.7.1680|2|1
1.3.6.1.2.1.25.4.2.1.7.1692|2|1
1.3.6.1.2.1.25.4.2.1.7.1728|2|1
1.3.6.1.2.1.25.4.2.1.7.1816|2|1
1.3.6.1.2.1.25.4.2.1.7.1856|2|1
1.3.6.1.2.1.25.4.2.1.7.1860|2|1
1.3.6.1.2.1.25.4.2.1.7.1988|2|1
1.3.6.1.2.1.25.4.2.1.7.2196|2|1
1.3.6.1.2.1.25.4.2.1.7.2880|2|1
1.3.6.1.2.1.25.4.2.1.7.2980|2|1
1.3.6.1.2.1.25.4.2.1.7.3268|2|1
1.3.6.1.2.1.25.5.1.1.1.1|2|2159737
1.3.6.1.2.1.25.5.1.1.1.4|2|7234
1.3.6.1.2.1.25.5.1.1.1.384|2|6
1.3.6.1.2.1.25.5.1.1.1.436|2|1385
1.3.6.1.2.1.25.5.1.1.1.468|2|7
1.3.6.1.2.1.25.5.1.1.1.596|2|5473
1.3.6.1.2.1.25.5.1.1.1.620|2|360
1.3.6.1.2.1.25.5.1.1.1.664|2|623
1.3.6.1.2.1.25.5.1.1.1.676|2|271
1.3.6.1.2.1.25.5.1.1.1.820|2|25
1.3.6.1.2.1.25.5.1.1.1.880|2|73
1.3.6.1.2.1.25.5.1.1.1.936|2|1323
1.3.6.1.2.1.25.5.1.1.1.996|2|3
1.3.6.1.2.1.25.5.1.1.1.1104|2|4
1.3.6.1.2.1.25.5.1.1.1.1132|2|34
1.3.6.1.2.1.25.5.1.1.1.1144|2|15
1.3.6.1.2.1.25.5.1.1.1.1188|2|10
1.3.6.1.2.1.25.5.1.1.1.1304|2|7
1.3.6.1.2.1.25.5.1.1.1.1320|2|17
1.3.6.1.2.1.25.5.1.1.1.1328|2|21
1.3.6.1.2.1.25.5.1.1.1.1396|2|17
1.3.6.1.2.1.25.5.1.1.1.1492|2|4
1.3.6.1.2.1.25.5.1.1.1.1680|2|6
1.3.6.1.2.1.25.5.1.1.1.1692|2|1089
1.3.6.1.2.1.25.5.1.1.1.1728|2|3
1.3.6.1.2.1.25.5.1.1.1.1816|2|15
1.3.6.1.2.1.25.5.1.1.1.1856|2|1
1.3.6.1.2.1.25.5.1.1.1.1860|2|39
1.3.6.1.2.1.25.5.1.1.1.1988|2|56
1.3.6.1.2.1.25.5.1.1.1.2196|2|78509
1.3.6.1.2.1.25.5.1.1.1.2880|2|4
1.3.6.1.2.1.25.5.1.1.1.2980|2|20435
1.3.6.1.2.1.25.5.1.1.1.3268|2|460
1.3.6.1.2.1.25.5.1.1.2.1|2|16
1.3.6.1.2.1.25.5.1.1.2.4|2|220
1.3.6.1.2.1.25.5.1.1.2.384|2|2428
1.3.6.1.2.1.25.5.1.1.2.436|2|27068
1.3.6.1.2.1.25.5.1.1.2.468|2|412
1.3.6.1.2.1.25.5.1.1.2.596|2|4196
1.3.6.1.2.1.25.5.1.1.2.620|2|1324
1.3.6.1.2.1.25.5.1.1.2.664|2|4932
1.3.6.1.2.1.25.5.1.1.2.676|2|752
1.3.6.1.2.1.25.5.1.1.2.820|2|5116
1.3.6.1.2.1.25.5.1.1.2.880|2|4420
1.3.6.1.2.1.25.5.1.1.2.936|2|35860
1.3.6.1.2.1.25.5.1.1.2.996|2|3340
1.3.6.1.2.1.25.5.1.1.2.1104|2|3656
1.3.6.1.2.1.25.5.1.1.2.1132|2|3988
1.3.6.1.2.1.25.5.1.1.2.1144|2|2700
1.3.6.1.2.1.25.5.1.1.2.1188|2|3888
1.3.6.1.2.1.25.5.1.1.2.1304|2|3688
1.3.6.1.2.1.25.5.1.1.2.1320|2|3884
1.3.6.1.2.1.25.5.1.1.2.1328|2|3232
1.3.6.1.2.1.25.5.1.1.2.1396|2|6776
1.3.6.1.2.1.25.5.1.1.2.1492|2|3612
1.3.6.1.2.1.25.5.1.1.2.1680|2|3760
1.3.6.1.2.1.25.5.1.1.2.1692|2|4348
1.3.6.1.2.1.25.5.1.1.2.1728|2|3296
1.3.6.1.2.1.25.5.1.1.2.1816|2|3320
1.3.6.1.2.1.25.5.1.1.2.1856|2|2164
1.3.6.1.2.1.25.5.1.1.2.1860|2|5732
1.3.6.1.2.1.25.5.1.1.2.1988|2|4128
1.3.6.1.2.1.25.5.1.1.2.2196|2|152812
1.3.6.1.2.1.25.5.1.1.2.2880|2|2240
1.3.6.1.2.1.25.5.1.1.2.2980|2|138900
1.3.6.1.2.1.25.5.1.1.2.3268|2|9236
1.3.6.1.2.1.25.6.1.0|67|83121
1.3.6.1.2.1.25.6.2.0|67|83123
1.3.6.1.2.1.25.6.3.1.1.1|2|1
1.3.6.1.2.1.25.6.3.1.1.2|2|2
1.3.6.1.2.1.25.6.3.1.1.3|2|3
1.3.6.1.2.1.25.6.3.1.1.4|2|4
1.3.6.1.2.1.25.6.3.1.1.5|2|5
1.3.6.1.2.1.25.6.3.1.1.6|2|6
1.3.6.1.2.1.25.6.3.1.1.7|2|7
1.3.6.1.2.1.25.6.3.1.1.8|2|8
1.3.6.1.2.1.25.6.3.1.1.9|2|9
1.3.6.1.2.1.25.6.3.1.1.10|2|10
1.3.6.1.2.1.25.6.3.1.1.11|2|11
1.3.6.1.2.1.25.6.3.1.1.12|2|12
1.3.6.1.2.1.25.6.3.1.1.13|2|13
1.3.6.1.2.1.25.6.3.1.1.14|2|14
1.3.6.1.2.1.25.6.3.1.1.15|2|15
1.3.6.1.2.1.25.6.3.1.1.16|2|16
1.3.6.1.2.1.25.6.3.1.1.17|2|17
1.3.6.1.2.1.25.6.3.1.1.18|2|18
1.3.6.1.2.1.25.6.3.1.1.19|2|19
1.3.6.1.2.1.25.6.3.1.1.20|2|20
1.3.6.1.2.1.25.6.3.1.1.21|2|21
1.3.6.1.2.1.25.6.3.1.1.22|2|22
1.3.6.1.2.1.25.6.3.1.1.23|2|23
1.3.6.1.2.1.25.6.3.1.1.24|2|24
1.3.6.1.2.1.25.6.3.1.1.25|2|25
1.3.6.1.2.1.25.6.3.1.1.26|2|26
1.3.6.1.2.1.25.6.3.1.1.27|2|27
1.3.6.1.2.1.25.6.3.1.1.28|2|28
1.3.6.1.2.1.25.6.3.1.1.29|2|29
1.3.6.1.2.1.25.6.3.1.1.30|2|30
1.3.6.1.2.1.25.6.3.1.1.31|2|31
1.3.6.1.2.1.25.6.3.1.1.32|2|32
1.3.6.1.2.1.25.6.3.1.1.33|2|33
1.3.6.1.2.1.25.6.3.1.1.34|2|34
1.3.6.1.2.1.25.6.3.1.1.35|2|35
1.3.6.1.2.1.25.6.3.1.1.36|2|36
1.3.6.1.2.1.25.6.3.1.1.37|2|37
1.3.6.1.2.1.25.6.3.1.1.38|2|38
1.3.6.1.2.1.25.6.3.1.1.39|2|39
1.3.6.1.2.1.25.6.3.1.1.40|2|40
1.3.6.1.2.1.25.6.3.1.1.41|2|41
1.3.6.1.2.1.25.6.3.1.1.42|2|42
1.3.6.1.2.1.25.6.3.1.1.43|2|43
1.3.6.1.2.1.25.6.3.1.1.44|2|44
1.3.6.1.2.1.25.6.3.1.1.45|2|45
1.3.6.1.2.1.25.6.3.1.1.46|2|46
1.3.6.1.2.1.25.6.3.1.1.47|2|47
1.3.6.1.2.1.25.6.3.1.1.48|2|48
1.3.6.1.2.1.25.6.3.1.1.49|2|49
1.3.6.1.2.1.25.6.3.1.1.50|2|50
1.3.6.1.2.1.25.6.3.1.1.51|2|51
1.3.6.1.2.1.25.6.3.1.1.52|2|52
1.3.6.1.2.1.25.6.3.1.1.53|2|53
1.3.6.1.2.1.25.6.3.1.1.54|2|54
1.3.6.1.2.1.25.6.3.1.1.55|2|55
1.3.6.1.2.1.25.6.3.1.1.56|2|56
1.3.6.1.2.1.25.6.3.1.1.57|2|57
1.3.6.1.2.1.25.6.3.1.1.58|2|58
1.3.6.1.2.1.25.6.3.1.1.59|2|59
1.3.6.1.2.1.25.6.3.1.1.60|2|60
1.3.6.1.2.1.25.6.3.1.1.61|2|61
1.3.6.1.2.1.25.6.3.1.1.62|2|62
1.3.6.1.2.1.25.6.3.1.1.63|2|63
1.3.6.1.2.1.25.6.3.1.1.64|2|64
1.3.6.1.2.1.25.6.3.1.1.65|2|65
1.3.6.1.2.1.25.6.3.1.1.66|2|66
1.3.6.1.2.1.25.6.3.1.1.67|2|67
1.3.6.1.2.1.25.6.3.1.1.68|2|68
1.3.6.1.2.1.25.6.3.1.1.69|2|69
1.3.6.1.2.1.25.6.3.1.1.70|2|70
1.3.6.1.2.1.25.6.3.1.1.71|2|71
1.3.6.1.2.1.25.6.3.1.1.72|2|72
1.3.6.1.2.1.25.6.3.1.1.73|2|73
1.3.6.1.2.1.25.6.3.1.1.74|2|74
1.3.6.1.2.1.25.6.3.1.1.75|2|75
1.3.6.1.2.1.25.6.3.1.1.76|2|76
1.3.6.1.2.1.25.6.3.1.1.77|2|77
1.3.6.1.2.1.25.6.3.1.1.78|2|78
1.3.6.1.2.1.25.6.3.1.1.79|2|79
1.3.6.1.2.1.25.6.3.1.1.80|2|80
1.3.6.1.2.1.25.6.3.1.1.81|2|81
1.3.6.1.2.1.25.6.3.1.1.82|2|82
1.3.6.1.2.1.25.6.3.1.1.83|2|83
1.3.6.1.2.1.25.6.3.1.1.84|2|84
1.3.6.1.2.1.25.6.3.1.1.85|2|85
1.3.6.1.2.1.25.6.3.1.1.86|2|86
1.3.6.1.2.1.25.6.3.1.1.87|2|87
1.3.6.1.2.1.25.6.3.1.1.88|2|88
1.3.6.1.2.1.25.6.3.1.1.89|2|89
1.3.6.1.2.1.25.6.3.1.1.90|2|90
1.3.6.1.2.1.25.6.3.1.1.91|2|91
1.3.6.1.2.1.25.6.3.1.1.92|2|92
1.3.6.1.2.1.25.6.3.1.1.93|2|93
1.3.6.1.2.1.25.6.3.1.1.94|2|94
1.3.6.1.2.1.25.6.3.1.1.95|2|95
1.3.6.1.2.1.25.6.3.1.1.96|2|96
1.3.6.1.2.1.25.6.3.1.1.97|2|97
1.3.6.1.2.1.25.6.3.1.1.98|2|98
1.3.6.1.2.1.25.6.3.1.1.99|2|99
1.3.6.1.2.1.25.6.3.1.1.100|2|100
1.3.6.1.2.1.25.6.3.1.1.101|2|101
1.3.6.1.2.1.25.6.3.1.1.102|2|102
1.3.6.1.2.1.25.6.3.1.1.103|2|103
1.3.6.1.2.1.25.6.3.1.1.104|2|104
1.3.6.1.2.1.25.6.3.1.1.105|2|105
1.3.6.1.2.1.25.6.3.1.1.106|2|106
1.3.6.1.2.1.25.6.3.1.1.107|2|107
1.3.6.1.2.1.25.6.3.1.1.108|2|108
1.3.6.1.2.1.25.6.3.1.1.109|2|109
1.3.6.1.2.1.25.6.3.1.1.110|2|110
1.3.6.1.2.1.25.6.3.1.1.111|2|111
1.3.6.1.2.1.25.6.3.1.1.112|2|112
1.3.6.1.2.1.25.6.3.1.1.113|2|113
1.3.6.1.2.1.25.6.3.1.1.114|2|114
1.3.6.1.2.1.25.6.3.1.1.115|2|115
1.3.6.1.2.1.25.6.3.1.1.116|2|116
1.3.6.1.2.1.25.6.3.1.1.117|2|117
1.3.6.1.2.1.25.6.3.1.1.118|2|118
1.3.6.1.2.1.25.6.3.1.1.119|2|119
1.3.6.1.2.1.25.6.3.1.1.120|2|120
1.3.6.1.2.1.25.6.3.1.1.121|2|121
1.3.6.1.2.1.25.6.3.1.1.122|2|122
1.3.6.1.2.1.25.6.3.1.1.123|2|123
1.3.6.1.2.1.25.6.3.1.1.124|2|124
1.3.6.1.2.1.25.6.3.1.1.125|2|125
1.3.6.1.2.1.25.6.3.1.1.126|2|126
1.3.6.1.2.1.25.6.3.1.1.127|2|127
1.3.6.1.2.1.25.6.3.1.1.128|2|128
1.3.6.1.2.1.25.6.3.1.1.129|2|129
1.3.6.1.2.1.25.6.3.1.1.130|2|130
1.3.6.1.2.1.25.6.3.1.1.131|2|131
1.3.6.1.2.1.25.6.3.1.1.132|2|132
1.3.6.1.2.1.25.6.3.1.1.133|2|133
1.3.6.1.2.1.25.6.3.1.1.134|2|134
1.3.6.1.2.1.25.6.3.1.1.135|2|135
1.3.6.1.2.1.25.6.3.1.1.136|2|136
1.3.6.1.2.1.25.6.3.1.1.137|2|137
1.3.6.1.2.1.25.6.3.1.1.138|2|138
1.3.6.1.2.1.25.6.3.1.1.139|2|139
1.3.6.1.2.1.25.6.3.1.1.140|2|140
1.3.6.1.2.1.25.6.3.1.1.141|2|141
1.3.6.1.2.1.25.6.3.1.1.142|2|142
1.3.6.1.2.1.25.6.3.1.1.143|2|143
1.3.6.1.2.1.25.6.3.1.1.144|2|144
1.3.6.1.2.1.25.6.3.1.1.145|2|145
1.3.6.1.2.1.25.6.3.1.1.146|2|146
1.3.6.1.2.1.25.6.3.1.1.147|2|147
1.3.6.1.2.1.25.6.3.1.1.148|2|148
1.3.6.1.2.1.25.6.3.1.1.149|2|149
1.3.6.1.2.1.25.6.3.1.1.150|2|150
1.3.6.1.2.1.25.6.3.1.1.151|2|151
1.3.6.1.2.1.25.6.3.1.1.152|2|152
1.3.6.1.2.1.25.6.3.1.1.153|2|153
1.3.6.1.2.1.25.6.3.1.1.154|2|154
1.3.6.1.2.1.25.6.3.1.1.155|2|155
1.3.6.1.2.1.25.6.3.1.1.156|2|156
1.3.6.1.2.1.25.6.3.1.1.157|2|157
1.3.6.1.2.1.25.6.3.1.1.158|2|158
1.3.6.1.2.1.25.6.3.1.1.159|2|159
1.3.6.1.2.1.25.6.3.1.1.160|2|160
1.3.6.1.2.1.25.6.3.1.2.1|4x|57696e646f777320447269766572205061636b616765202d204e6f6b696120706363736d63666420934c65676163794472697665729420202830352f33312f32
1.3.6.1.2.1.25.6.3.1.2.2|4|7-Zip 9.20
1.3.6.1.2.1.25.6.3.1.2.3|4|Adobe AIR
1.3.6.1.2.1.25.6.3.1.2.4|4|Adobe Flash Player 11 Plugin
1.3.6.1.2.1.25.6.3.1.2.5|4|CCleaner
1.3.6.1.2.1.25.6.3.1.2.6|4|SoftV92 Data Fax Modem with SmartCP
1.3.6.1.2.1.25.6.3.1.2.7|4|Acrobat.com
1.3.6.1.2.1.25.6.3.1.2.8|4|Ext2Fsd 0.46
1.3.6.1.2.1.25.6.3.1.2.9|4|Windows Internet Explorer 8
1.3.6.1.2.1.25.6.3.1.2.10|4|Update for Windows XP (KB2492386)
1.3.6.1.2.1.25.6.3.1.2.11|4|Security Update for Windows Internet Explorer 8 (KB2497640)
1.3.6.1.2.1.25.6.3.1.2.12|4|Security Update for Windows Internet Explorer 8 (KB2510531)
1.3.6.1.2.1.25.6.3.1.2.13|4|Security Update for Windows Internet Explorer 8 (KB2544521)
1.3.6.1.2.1.25.6.3.1.2.14|4|Security Update for Windows Internet Explorer 8 (KB2586448)
1.3.6.1.2.1.25.6.3.1.2.15|4|Update for Windows Internet Explorer 8 (KB2598845)
1.3.6.1.2.1.25.6.3.1.2.16|4|Security Update for Windows Internet Explorer 8 (KB2618444)
1.3.6.1.2.1.25.6.3.1.2.17|4|Security Update for Windows XP (KB2621440)
1.3.6.1.2.1.25.6.3.1.2.18|4|Update for Windows Internet Explorer 8 (KB2632503)
1.3.6.1.2.1.25.6.3.1.2.19|4|Security Update for Windows XP (KB2641653)
1.3.6.1.2.1.25.6.3.1.2.20|4|Security Update for Windows Internet Explorer 8 (KB2647516)
1.3.6.1.2.1.25.6.3.1.2.21|4|Security Update for Windows XP (KB2647518)
1.3.6.1.2.1.25.6.3.1.2.22|4|Security Update for Windows XP (KB2653956)
1.3.6.1.2.1.25.6.3.1.2.23|4|Security Update for Windows XP (KB2655992)
1.3.6.1.2.1.25.6.3.1.2.24|4|Security Update for Windows XP (KB2659262)
1.3.6.1.2.1.25.6.3.1.2.25|4|Security Update for Windows XP (KB2660465)
1.3.6.1.2.1.25.6.3.1.2.26|4|Update for Windows XP (KB2661254-v2)
1.3.6.1.2.1.25.6.3.1.2.27|4|Security Update for Windows XP (KB2661637)
1.3.6.1.2.1.25.6.3.1.2.28|4|Security Update for Windows Internet Explorer 8 (KB2675157)
1.3.6.1.2.1.25.6.3.1.2.29|4|Security Update for Windows XP (KB2676562)
1.3.6.1.2.1.25.6.3.1.2.30|4|Security Update for Windows XP (KB2686509)
1.3.6.1.2.1.25.6.3.1.2.31|4|Security Update for Windows XP (KB2691442)
1.3.6.1.2.1.25.6.3.1.2.32|4|Security Update for Windows XP (KB2695962)
1.3.6.1.2.1.25.6.3.1.2.33|4|Security Update for Windows XP (KB2698365)
1.3.6.1.2.1.25.6.3.1.2.34|4|Security Update for Windows XP (KB2705219)
1.3.6.1.2.1.25.6.3.1.2.35|4|Security Update for Windows XP (KB2707511)
1.3.6.1.2.1.25.6.3.1.2.36|4|Security Update for Windows XP (KB2712808)
1.3.6.1.2.1.25.6.3.1.2.37|4|Update for Windows XP (KB2718704)
1.3.6.1.2.1.25.6.3.1.2.38|4|Security Update for Windows XP (KB2719985)
1.3.6.1.2.1.25.6.3.1.2.39|4|Security Update for Windows Internet Explorer 8 (KB2722913)
1.3.6.1.2.1.25.6.3.1.2.40|4|Security Update for Windows XP (KB2723135)
1.3.6.1.2.1.25.6.3.1.2.41|4|Security Update for Windows XP (KB2724197)
1.3.6.1.2.1.25.6.3.1.2.42|4|Security Update for Windows XP (KB2727528)
1.3.6.1.2.1.25.6.3.1.2.43|4|Security Update for Windows XP (KB2731847)
1.3.6.1.2.1.25.6.3.1.2.44|4|Update for Windows XP (KB2736233)
1.3.6.1.2.1.25.6.3.1.2.45|4|Security Update for Windows Internet Explorer 8 (KB2744842)
1.3.6.1.2.1.25.6.3.1.2.46|4|Update for Windows XP (KB2749655)
1.3.6.1.2.1.25.6.3.1.2.47|4|Security Update for Windows XP (KB2753842)
1.3.6.1.2.1.25.6.3.1.2.48|4|Security Update for Windows XP (KB2753842-v2)
1.3.6.1.2.1.25.6.3.1.2.49|4|Hotfix for Windows XP (KB2756822)
1.3.6.1.2.1.25.6.3.1.2.50|4|Security Update for Windows XP (KB2757638)
1.3.6.1.2.1.25.6.3.1.2.51|4|Security Update for Windows XP (KB2758857)
1.3.6.1.2.1.25.6.3.1.2.52|4|Security Update for Windows XP (KB2761226)
1.3.6.1.2.1.25.6.3.1.2.53|4|Security Update for Windows Internet Explorer 8 (KB2761465)
1.3.6.1.2.1.25.6.3.1.2.54|4|Security Update for Windows XP (KB2770660)
1.3.6.1.2.1.25.6.3.1.2.55|4|Security Update for Windows XP (KB2778344)
1.3.6.1.2.1.25.6.3.1.2.56|4|Security Update for Windows XP (KB2779030)
1.3.6.1.2.1.25.6.3.1.2.57|4|Hotfix for Windows XP (KB2779562)
1.3.6.1.2.1.25.6.3.1.2.58|4|Security Update for Windows XP (KB2780091)
1.3.6.1.2.1.25.6.3.1.2.59|4|Security Update for Windows Internet Explorer 8 (KB2792100)
1.3.6.1.2.1.25.6.3.1.2.60|4|Security Update for Windows Internet Explorer 8 (KB2797052)
1.3.6.1.2.1.25.6.3.1.2.61|4|Security Update for Windows Internet Explorer 8 (KB2799329)
1.3.6.1.2.1.25.6.3.1.2.62|4|Security Update for Windows XP (KB2799494)
1.3.6.1.2.1.25.6.3.1.2.63|4|Security Update for Windows XP (KB2802968)
1.3.6.1.2.1.25.6.3.1.2.64|4|Windows Genuine Advantage Validation Tool (KB892130)
1.3.6.1.2.1.25.6.3.1.2.65|4|Microsoft Base Smart Card Cryptographic Service Provider Package
1.3.6.1.2.1.25.6.3.1.2.66|4|Security Update for Windows XP (KB923789)
1.3.6.1.2.1.25.6.3.1.2.67|4|Hotfix for Windows Media Format 11 SDK (KB929399)
1.3.6.1.2.1.25.6.3.1.2.68|4|Security Update for Windows XP (KB941569)
1.3.6.1.2.1.25.6.3.1.2.69|4|Hotfix for Windows XP (KB954550-v5)
1.3.6.1.2.1.25.6.3.1.2.70|4|Security Update for Windows Internet Explorer 8 (KB978207)
1.3.6.1.2.1.25.6.3.1.2.71|4|Update for Windows Internet Explorer 8 (KB980302)
1.3.6.1.2.1.25.6.3.1.2.72|4|Microsoft .NET Framework 1.1 Security Update (KB2698023)
1.3.6.1.2.1.25.6.3.1.2.73|4|Microsoft .NET Framework 1.1 Security Update (KB2742597)
1.3.6.1.2.1.25.6.3.1.2.74|4|Microsoft .NET Framework 1.1
1.3.6.1.2.1.25.6.3.1.2.75|4|Microsoft .NET Framework 3.5 SP1
1.3.6.1.2.1.25.6.3.1.2.76|4|Microsoft .NET Framework 4 Client Profile
1.3.6.1.2.1.25.6.3.1.2.77|4|Mozilla Firefox 19.0.2 (x86 ru)
1.3.6.1.2.1.25.6.3.1.2.78|4|Mozilla Thunderbird 10.0.2 (x86 ru)
1.3.6.1.2.1.25.6.3.1.2.79|4|Mozilla Maintenance Service
1.3.6.1.2.1.25.6.3.1.2.80|4|Naviextras Toolbox
1.3.6.1.2.1.25.6.3.1.2.81|4|Net-SNMP 5.7.0
1.3.6.1.2.1.25.6.3.1.2.82|4|Nokia Suite
1.3.6.1.2.1.25.6.3.1.2.83|4|OpenSSL 1.0.1e (32-bit)
1.3.6.1.2.1.25.6.3.1.2.84|4|Privoxy (remove only)
1.3.6.1.2.1.25.6.3.1.2.85|4|PuTTY version 0.60
1.3.6.1.2.1.25.6.3.1.2.86|4|Python 2.7 py2exe-0.6.9
1.3.6.1.2.1.25.6.3.1.2.87|4|Python 2.7 pycrypto-2.6
1.3.6.1.2.1.25.6.3.1.2.88|4|Python 2.7 setuptools-0.6c11
1.3.6.1.2.1.25.6.3.1.2.89|4|SMPlayer 0.6.10
1.3.6.1.2.1.25.6.3.1.2.90|4|Synaptics Pointing Device Driver
1.3.6.1.2.1.25.6.3.1.2.91|4x|b5546f7272656e74
1.3.6.1.2.1.25.6.3.1.2.92|4|Microsoft Kernel-Mode Driver Framework Feature Pack 1.9
1.3.6.1.2.1.25.6.3.1.2.93|4|Windows Genuine Advantage Validation Tool (KB892130)
1.3.6.1.2.1.25.6.3.1.2.94|4|Windows Genuine Advantage Notifications (KB905474)
1.3.6.1.2.1.25.6.3.1.2.95|4|Windows Media Format 11 runtime
1.3.6.1.2.1.25.6.3.1.2.96|4|Windows XP Service Pack 3
1.3.6.1.2.1.25.6.3.1.2.97|4|GIMP 2.6.11
1.3.6.1.2.1.25.6.3.1.2.98|4|WinRAR archiver
1.3.6.1.2.1.25.6.3.1.2.99|4|Windows Media Format 11 runtime
1.3.6.1.2.1.25.6.3.1.2.100|4|Microsoft User-Mode Driver Framework Feature Pack 1.0
1.3.6.1.2.1.25.6.3.1.2.101|4|Adobe AIR
1.3.6.1.2.1.25.6.3.1.2.102|4|HP Officejet 6500 E710a-f Help
1.3.6.1.2.1.25.6.3.1.2.103|4|WebFldrs XP
1.3.6.1.2.1.25.6.3.1.2.104|4|Microsoft .NET Framework 4 Client Profile
1.3.6.1.2.1.25.6.3.1.2.105|4|Update for Microsoft .NET Framework 4 Client Profile (KB2468871)
1.3.6.1.2.1.25.6.3.1.2.106|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.107|4|Update for Microsoft .NET Framework 4 Client Profile (KB2533523)
1.3.6.1.2.1.25.6.3.1.2.108|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.109|4|Update for Microsoft .NET Framework 4 Client Profile (KB2600217)
1.3.6.1.2.1.25.6.3.1.2.110|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.111|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.112|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.113|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.114|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.115|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.116|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.117|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.118|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.119|4|Security Update for Microsoft .NET Framework 4 Client Profile (K
1.3.6.1.2.1.25.6.3.1.2.120|4|Python 2.7 pycrypto-2.3
1.3.6.1.2.1.25.6.3.1.2.121|4|Naviextras Toolbox Prerequesities
1.3.6.1.2.1.25.6.3.1.2.122|4|HP Officejet 6500 E710a-f Basic Device Software
1.3.6.1.2.1.25.6.3.1.2.123|4|PC Connectivity Solution
1.3.6.1.2.1.25.6.3.1.2.124|4|MSVC80_x86_v2
1.3.6.1.2.1.25.6.3.1.2.125|4|Nokia Connectivity Cable Driver
1.3.6.1.2.1.25.6.3.1.2.126|4|Acrobat.com
1.3.6.1.2.1.25.6.3.1.2.127|4|Python 2.4
1.3.6.1.2.1.25.6.3.1.2.128|4|Falk Navi-Manager
1.3.6.1.2.1.25.6.3.1.2.129|4|MSXML 4.0 SP2 (KB954430)
1.3.6.1.2.1.25.6.3.1.2.130|4|Intel(R) Extreme Graphics 2 Driver
1.3.6.1.2.1.25.6.3.1.2.131|4|TomTom HOME Visual Studio Merge Modules
1.3.6.1.2.1.25.6.3.1.2.132|4x|4d6963726f736f6674204f6666696365202d20eff0eef4e5f1f1e8eeede0ebfcedfbe920e2fbeff3f1ea20e2e5f0f1e8e82032303033
1.3.6.1.2.1.25.6.3.1.2.133|4|Microsoft Office Access database engine 2007 (English)
1.3.6.1.2.1.25.6.3.1.2.134|4|TomTom HOME
1.3.6.1.2.1.25.6.3.1.2.135|4|Falk Navi-Manager
1.3.6.1.2.1.25.6.3.1.2.136|4|REALTEK Gigabit and Fast Ethernet NIC Driver
1.3.6.1.2.1.25.6.3.1.2.137|4|Python 2.6.1
1.3.6.1.2.1.25.6.3.1.2.138|4|RealSpeak Solo for UK English Emily
1.3.6.1.2.1.25.6.3.1.2.139|4|Microsoft .NET Framework 3.0 Service Pack 2
1.3.6.1.2.1.25.6.3.1.2.140|4|Adobe Reader 9
1.3.6.1.2.1.25.6.3.1.2.141|4|MSVC90_x86
1.3.6.1.2.1.25.6.3.1.2.142|4|Far Manager 2
1.3.6.1.2.1.25.6.3.1.2.143|4|Microsoft .NET Framework 2.0 Service Pack 2
1.3.6.1.2.1.25.6.3.1.2.144|4|Python 2.7.3
1.3.6.1.2.1.25.6.3.1.2.145|4|Microsoft AutoRoute 2007
1.3.6.1.2.1.25.6.3.1.2.146|4|Microsoft MapPoint Europe 2009
1.3.6.1.2.1.25.6.3.1.2.147|4|Microsoft .NET Framework 1.1
1.3.6.1.2.1.25.6.3.1.2.148|4|Microsoft .NET Framework 3.5 SP1
1.3.6.1.2.1.25.6.3.1.2.149|4|Security Update for Microsoft .NET Framework 3.5 SP1 (KB2604111)
1.3.6.1.2.1.25.6.3.1.2.150|4|Security Update for Microsoft .NET Framework 3.5 SP1 (KB2657424)
1.3.6.1.2.1.25.6.3.1.2.151|4|Security Update for Microsoft .NET Framework 3.5 SP1 (KB2736416)
1.3.6.1.2.1.25.6.3.1.2.152|4|Hotfix for Microsoft .NET Framework 3.5 SP1 (KB953595)
1.3.6.1.2.1.25.6.3.1.2.153|4|Hotfix for Microsoft .NET Framework 3.5 SP1 (KB958484)
1.3.6.1.2.1.25.6.3.1.2.154|4|Update for Microsoft .NET Framework 3.5 SP1 (KB963707)
1.3.6.1.2.1.25.6.3.1.2.155|4|Nokia Suite
1.3.6.1.2.1.25.6.3.1.2.156|4|Microsoft_VC100_CRT_SP1_x86
1.3.6.1.2.1.25.6.3.1.2.157|4|PL-2303 USB-to-Serial
1.3.6.1.2.1.25.6.3.1.2.158|4|MSXML 4.0 SP2 (KB973688)
1.3.6.1.2.1.25.6.3.1.2.159|4|Realtek AC'97 Audio
1.3.6.1.2.1.25.6.3.1.2.160|4|Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022
1.3.6.1.2.1.25.6.3.1.3.1|6|0.0
1.3.6.1.2.1.25.6.3.1.3.2|6|0.0
1.3.6.1.2.1.25.6.3.1.3.3|6|0.0
1.3.6.1.2.1.25.6.3.1.3.4|6|0.0
1.3.6.1.2.1.25.6.3.1.3.5|6|0.0
1.3.6.1.2.1.25.6.3.1.3.6|6|0.0
1.3.6.1.2.1.25.6.3.1.3.7|6|0.0
1.3.6.1.2.1.25.6.3.1.3.8|6|0.0
1.3.6.1.2.1.25.6.3.1.3.9|6|0.0
1.3.6.1.2.1.25.6.3.1.3.10|6|0.0
1.3.6.1.2.1.25.6.3.1.3.11|6|0.0
1.3.6.1.2.1.25.6.3.1.3.12|6|0.0
1.3.6.1.2.1.25.6.3.1.3.13|6|0.0
1.3.6.1.2.1.25.6.3.1.3.14|6|0.0
1.3.6.1.2.1.25.6.3.1.3.15|6|0.0
1.3.6.1.2.1.25.6.3.1.3.16|6|0.0
1.3.6.1.2.1.25.6.3.1.3.17|6|0.0
1.3.6.1.2.1.25.6.3.1.3.18|6|0.0
1.3.6.1.2.1.25.6.3.1.3.19|6|0.0
1.3.6.1.2.1.25.6.3.1.3.20|6|0.0
1.3.6.1.2.1.25.6.3.1.3.21|6|0.0
1.3.6.1.2.1.25.6.3.1.3.22|6|0.0
1.3.6.1.2.1.25.6.3.1.3.23|6|0.0
1.3.6.1.2.1.25.6.3.1.3.24|6|0.0
1.3.6.1.2.1.25.6.3.1.3.25|6|0.0
1.3.6.1.2.1.25.6.3.1.3.26|6|0.0
1.3.6.1.2.1.25.6.3.1.3.27|6|0.0
1.3.6.1.2.1.25.6.3.1.3.28|6|0.0
1.3.6.1.2.1.25.6.3.1.3.29|6|0.0
1.3.6.1.2.1.25.6.3.1.3.30|6|0.0
1.3.6.1.2.1.25.6.3.1.3.31|6|0.0
1.3.6.1.2.1.25.6.3.1.3.32|6|0.0
1.3.6.1.2.1.25.6.3.1.3.33|6|0.0
1.3.6.1.2.1.25.6.3.1.3.34|6|0.0
1.3.6.1.2.1.25.6.3.1.3.35|6|0.0
1.3.6.1.2.1.25.6.3.1.3.36|6|0.0
1.3.6.1.2.1.25.6.3.1.3.37|6|0.0
1.3.6.1.2.1.25.6.3.1.3.38|6|0.0
1.3.6.1.2.1.25.6.3.1.3.39|6|0.0
1.3.6.1.2.1.25.6.3.1.3.40|6|0.0
1.3.6.1.2.1.25.6.3.1.3.41|6|0.0
1.3.6.1.2.1.25.6.3.1.3.42|6|0.0
1.3.6.1.2.1.25.6.3.1.3.43|6|0.0
1.3.6.1.2.1.25.6.3.1.3.44|6|0.0
1.3.6.1.2.1.25.6.3.1.3.45|6|0.0
1.3.6.1.2.1.25.6.3.1.3.46|6|0.0
1.3.6.1.2.1.25.6.3.1.3.47|6|0.0
1.3.6.1.2.1.25.6.3.1.3.48|6|0.0
1.3.6.1.2.1.25.6.3.1.3.49|6|0.0
1.3.6.1.2.1.25.6.3.1.3.50|6|0.0
1.3.6.1.2.1.25.6.3.1.3.51|6|0.0
1.3.6.1.2.1.25.6.3.1.3.52|6|0.0
1.3.6.1.2.1.25.6.3.1.3.53|6|0.0
1.3.6.1.2.1.25.6.3.1.3.54|6|0.0
1.3.6.1.2.1.25.6.3.1.3.55|6|0.0
1.3.6.1.2.1.25.6.3.1.3.56|6|0.0
1.3.6.1.2.1.25.6.3.1.3.57|6|0.0
1.3.6.1.2.1.25.6.3.1.3.58|6|0.0
1.3.6.1.2.1.25.6.3.1.3.59|6|0.0
1.3.6.1.2.1.25.6.3.1.3.60|6|0.0
1.3.6.1.2.1.25.6.3.1.3.61|6|0.0
1.3.6.1.2.1.25.6.3.1.3.62|6|0.0
1.3.6.1.2.1.25.6.3.1.3.63|6|0.0
1.3.6.1.2.1.25.6.3.1.3.64|6|0.0
1.3.6.1.2.1.25.6.3.1.3.65|6|0.0
1.3.6.1.2.1.25.6.3.1.3.66|6|0.0
1.3.6.1.2.1.25.6.3.1.3.67|6|0.0
1.3.6.1.2.1.25.6.3.1.3.68|6|0.0
1.3.6.1.2.1.25.6.3.1.3.69|6|0.0
1.3.6.1.2.1.25.6.3.1.3.70|6|0.0
1.3.6.1.2.1.25.6.3.1.3.71|6|0.0
1.3.6.1.2.1.25.6.3.1.3.72|6|0.0
1.3.6.1.2.1.25.6.3.1.3.73|6|0.0
1.3.6.1.2.1.25.6.3.1.3.74|6|0.0
1.3.6.1.2.1.25.6.3.1.3.75|6|0.0
1.3.6.1.2.1.25.6.3.1.3.76|6|0.0
1.3.6.1.2.1.25.6.3.1.3.77|6|0.0
1.3.6.1.2.1.25.6.3.1.3.78|6|0.0
1.3.6.1.2.1.25.6.3.1.3.79|6|0.0
1.3.6.1.2.1.25.6.3.1.3.80|6|0.0
1.3.6.1.2.1.25.6.3.1.3.81|6|0.0
1.3.6.1.2.1.25.6.3.1.3.82|6|0.0
1.3.6.1.2.1.25.6.3.1.3.83|6|0.0
1.3.6.1.2.1.25.6.3.1.3.84|6|0.0
1.3.6.1.2.1.25.6.3.1.3.85|6|0.0
1.3.6.1.2.1.25.6.3.1.3.86|6|0.0
1.3.6.1.2.1.25.6.3.1.3.87|6|0.0
1.3.6.1.2.1.25.6.3.1.3.88|6|0.0
1.3.6.1.2.1.25.6.3.1.3.89|6|0.0
1.3.6.1.2.1.25.6.3.1.3.90|6|0.0
1.3.6.1.2.1.25.6.3.1.3.91|6|0.0
1.3.6.1.2.1.25.6.3.1.3.92|6|0.0
1.3.6.1.2.1.25.6.3.1.3.93|6|0.0
1.3.6.1.2.1.25.6.3.1.3.94|6|0.0
1.3.6.1.2.1.25.6.3.1.3.95|6|0.0
1.3.6.1.2.1.25.6.3.1.3.96|6|0.0
1.3.6.1.2.1.25.6.3.1.3.97|6|0.0
1.3.6.1.2.1.25.6.3.1.3.98|6|0.0
1.3.6.1.2.1.25.6.3.1.3.99|6|0.0
1.3.6.1.2.1.25.6.3.1.3.100|6|0.0
1.3.6.1.2.1.25.6.3.1.3.101|6|0.0
1.3.6.1.2.1.25.6.3.1.3.102|6|0.0
1.3.6.1.2.1.25.6.3.1.3.103|6|0.0
1.3.6.1.2.1.25.6.3.1.3.104|6|0.0
1.3.6.1.2.1.25.6.3.1.3.105|6|0.0
1.3.6.1.2.1.25.6.3.1.3.106|6|0.0
1.3.6.1.2.1.25.6.3.1.3.107|6|0.0
1.3.6.1.2.1.25.6.3.1.3.108|6|0.0
1.3.6.1.2.1.25.6.3.1.3.109|6|0.0
1.3.6.1.2.1.25.6.3.1.3.110|6|0.0
1.3.6.1.2.1.25.6.3.1.3.111|6|0.0
1.3.6.1.2.1.25.6.3.1.3.112|6|0.0
1.3.6.1.2.1.25.6.3.1.3.113|6|0.0
1.3.6.1.2.1.25.6.3.1.3.114|6|0.0
1.3.6.1.2.1.25.6.3.1.3.115|6|0.0
1.3.6.1.2.1.25.6.3.1.3.116|6|0.0
1.3.6.1.2.1.25.6.3.1.3.117|6|0.0
1.3.6.1.2.1.25.6.3.1.3.118|6|0.0
1.3.6.1.2.1.25.6.3.1.3.119|6|0.0
1.3.6.1.2.1.25.6.3.1.3.120|6|0.0
1.3.6.1.2.1.25.6.3.1.3.121|6|0.0
1.3.6.1.2.1.25.6.3.1.3.122|6|0.0
1.3.6.1.2.1.25.6.3.1.3.123|6|0.0
1.3.6.1.2.1.25.6.3.1.3.124|6|0.0
1.3.6.1.2.1.25.6.3.1.3.125|6|0.0
1.3.6.1.2.1.25.6.3.1.3.126|6|0.0
1.3.6.1.2.1.25.6.3.1.3.127|6|0.0
1.3.6.1.2.1.25.6.3.1.3.128|6|0.0
1.3.6.1.2.1.25.6.3.1.3.129|6|0.0
1.3.6.1.2.1.25.6.3.1.3.130|6|0.0
1.3.6.1.2.1.25.6.3.1.3.131|6|0.0
1.3.6.1.2.1.25.6.3.1.3.132|6|0.0
1.3.6.1.2.1.25.6.3.1.3.133|6|0.0
1.3.6.1.2.1.25.6.3.1.3.134|6|0.0
1.3.6.1.2.1.25.6.3.1.3.135|6|0.0
1.3.6.1.2.1.25.6.3.1.3.136|6|0.0
1.3.6.1.2.1.25.6.3.1.3.137|6|0.0
1.3.6.1.2.1.25.6.3.1.3.138|6|0.0
1.3.6.1.2.1.25.6.3.1.3.139|6|0.0
1.3.6.1.2.1.25.6.3.1.3.140|6|0.0
1.3.6.1.2.1.25.6.3.1.3.141|6|0.0
1.3.6.1.2.1.25.6.3.1.3.142|6|0.0
1.3.6.1.2.1.25.6.3.1.3.143|6|0.0
1.3.6.1.2.1.25.6.3.1.3.144|6|0.0
1.3.6.1.2.1.25.6.3.1.3.145|6|0.0
1.3.6.1.2.1.25.6.3.1.3.146|6|0.0
1.3.6.1.2.1.25.6.3.1.3.147|6|0.0
1.3.6.1.2.1.25.6.3.1.3.148|6|0.0
1.3.6.1.2.1.25.6.3.1.3.149|6|0.0
1.3.6.1.2.1.25.6.3.1.3.150|6|0.0
1.3.6.1.2.1.25.6.3.1.3.151|6|0.0
1.3.6.1.2.1.25.6.3.1.3.152|6|0.0
1.3.6.1.2.1.25.6.3.1.3.153|6|0.0
1.3.6.1.2.1.25.6.3.1.3.154|6|0.0
1.3.6.1.2.1.25.6.3.1.3.155|6|0.0
1.3.6.1.2.1.25.6.3.1.3.156|6|0.0
1.3.6.1.2.1.25.6.3.1.3.157|6|0.0
1.3.6.1.2.1.25.6.3.1.3.158|6|0.0
1.3.6.1.2.1.25.6.3.1.3.159|6|0.0
1.3.6.1.2.1.25.6.3.1.3.160|6|0.0
1.3.6.1.2.1.25.6.3.1.4.1|2|4
1.3.6.1.2.1.25.6.3.1.4.2|2|4
1.3.6.1.2.1.25.6.3.1.4.3|2|4
1.3.6.1.2.1.25.6.3.1.4.4|2|4
1.3.6.1.2.1.25.6.3.1.4.5|2|4
1.3.6.1.2.1.25.6.3.1.4.6|2|4
1.3.6.1.2.1.25.6.3.1.4.7|2|4
1.3.6.1.2.1.25.6.3.1.4.8|2|4
1.3.6.1.2.1.25.6.3.1.4.9|2|4
1.3.6.1.2.1.25.6.3.1.4.10|2|4
1.3.6.1.2.1.25.6.3.1.4.11|2|4
1.3.6.1.2.1.25.6.3.1.4.12|2|4
1.3.6.1.2.1.25.6.3.1.4.13|2|4
1.3.6.1.2.1.25.6.3.1.4.14|2|4
1.3.6.1.2.1.25.6.3.1.4.15|2|4
1.3.6.1.2.1.25.6.3.1.4.16|2|4
1.3.6.1.2.1.25.6.3.1.4.17|2|4
1.3.6.1.2.1.25.6.3.1.4.18|2|4
1.3.6.1.2.1.25.6.3.1.4.19|2|4
1.3.6.1.2.1.25.6.3.1.4.20|2|4
1.3.6.1.2.1.25.6.3.1.4.21|2|4
1.3.6.1.2.1.25.6.3.1.4.22|2|4
1.3.6.1.2.1.25.6.3.1.4.23|2|4
1.3.6.1.2.1.25.6.3.1.4.24|2|4
1.3.6.1.2.1.25.6.3.1.4.25|2|4
1.3.6.1.2.1.25.6.3.1.4.26|2|4
1.3.6.1.2.1.25.6.3.1.4.27|2|4
1.3.6.1.2.1.25.6.3.1.4.28|2|4
1.3.6.1.2.1.25.6.3.1.4.29|2|4
1.3.6.1.2.1.25.6.3.1.4.30|2|4
1.3.6.1.2.1.25.6.3.1.4.31|2|4
1.3.6.1.2.1.25.6.3.1.4.32|2|4
1.3.6.1.2.1.25.6.3.1.4.33|2|4
1.3.6.1.2.1.25.6.3.1.4.34|2|4
1.3.6.1.2.1.25.6.3.1.4.35|2|4
1.3.6.1.2.1.25.6.3.1.4.36|2|4
1.3.6.1.2.1.25.6.3.1.4.37|2|4
1.3.6.1.2.1.25.6.3.1.4.38|2|4
1.3.6.1.2.1.25.6.3.1.4.39|2|4
1.3.6.1.2.1.25.6.3.1.4.40|2|4
1.3.6.1.2.1.25.6.3.1.4.41|2|4
1.3.6.1.2.1.25.6.3.1.4.42|2|4
1.3.6.1.2.1.25.6.3.1.4.43|2|4
1.3.6.1.2.1.25.6.3.1.4.44|2|4
1.3.6.1.2.1.25.6.3.1.4.45|2|4
1.3.6.1.2.1.25.6.3.1.4.46|2|4
1.3.6.1.2.1.25.6.3.1.4.47|2|4
1.3.6.1.2.1.25.6.3.1.4.48|2|4
1.3.6.1.2.1.25.6.3.1.4.49|2|4
1.3.6.1.2.1.25.6.3.1.4.50|2|4
1.3.6.1.2.1.25.6.3.1.4.51|2|4
1.3.6.1.2.1.25.6.3.1.4.52|2|4
1.3.6.1.2.1.25.6.3.1.4.53|2|4
1.3.6.1.2.1.25.6.3.1.4.54|2|4
1.3.6.1.2.1.25.6.3.1.4.55|2|4
1.3.6.1.2.1.25.6.3.1.4.56|2|4
1.3.6.1.2.1.25.6.3.1.4.57|2|4
1.3.6.1.2.1.25.6.3.1.4.58|2|4
1.3.6.1.2.1.25.6.3.1.4.59|2|4
1.3.6.1.2.1.25.6.3.1.4.60|2|4
1.3.6.1.2.1.25.6.3.1.4.61|2|4
1.3.6.1.2.1.25.6.3.1.4.62|2|4
1.3.6.1.2.1.25.6.3.1.4.63|2|4
1.3.6.1.2.1.25.6.3.1.4.64|2|4
1.3.6.1.2.1.25.6.3.1.4.65|2|4
1.3.6.1.2.1.25.6.3.1.4.66|2|4
1.3.6.1.2.1.25.6.3.1.4.67|2|4
1.3.6.1.2.1.25.6.3.1.4.68|2|4
1.3.6.1.2.1.25.6.3.1.4.69|2|4
1.3.6.1.2.1.25.6.3.1.4.70|2|4
1.3.6.1.2.1.25.6.3.1.4.71|2|4
1.3.6.1.2.1.25.6.3.1.4.72|2|4
1.3.6.1.2.1.25.6.3.1.4.73|2|4
1.3.6.1.2.1.25.6.3.1.4.74|2|4
1.3.6.1.2.1.25.6.3.1.4.75|2|4
1.3.6.1.2.1.25.6.3.1.4.76|2|4
1.3.6.1.2.1.25.6.3.1.4.77|2|4
1.3.6.1.2.1.25.6.3.1.4.78|2|4
1.3.6.1.2.1.25.6.3.1.4.79|2|4
1.3.6.1.2.1.25.6.3.1.4.80|2|4
1.3.6.1.2.1.25.6.3.1.4.81|2|4
1.3.6.1.2.1.25.6.3.1.4.82|2|4
1.3.6.1.2.1.25.6.3.1.4.83|2|4
1.3.6.1.2.1.25.6.3.1.4.84|2|4
1.3.6.1.2.1.25.6.3.1.4.85|2|4
1.3.6.1.2.1.25.6.3.1.4.86|2|4
1.3.6.1.2.1.25.6.3.1.4.87|2|4
1.3.6.1.2.1.25.6.3.1.4.88|2|4
1.3.6.1.2.1.25.6.3.1.4.89|2|4
1.3.6.1.2.1.25.6.3.1.4.90|2|4
1.3.6.1.2.1.25.6.3.1.4.91|2|4
1.3.6.1.2.1.25.6.3.1.4.92|2|4
1.3.6.1.2.1.25.6.3.1.4.93|2|4
1.3.6.1.2.1.25.6.3.1.4.94|2|4
1.3.6.1.2.1.25.6.3.1.4.95|2|4
1.3.6.1.2.1.25.6.3.1.4.96|2|4
1.3.6.1.2.1.25.6.3.1.4.97|2|4
1.3.6.1.2.1.25.6.3.1.4.98|2|4
1.3.6.1.2.1.25.6.3.1.4.99|2|4
1.3.6.1.2.1.25.6.3.1.4.100|2|4
1.3.6.1.2.1.25.6.3.1.4.101|2|4
1.3.6.1.2.1.25.6.3.1.4.102|2|4
1.3.6.1.2.1.25.6.3.1.4.103|2|4
1.3.6.1.2.1.25.6.3.1.4.104|2|4
1.3.6.1.2.1.25.6.3.1.4.105|2|4
1.3.6.1.2.1.25.6.3.1.4.106|2|4
1.3.6.1.2.1.25.6.3.1.4.107|2|4
1.3.6.1.2.1.25.6.3.1.4.108|2|4
1.3.6.1.2.1.25.6.3.1.4.109|2|4
1.3.6.1.2.1.25.6.3.1.4.110|2|4
1.3.6.1.2.1.25.6.3.1.4.111|2|4
1.3.6.1.2.1.25.6.3.1.4.112|2|4
1.3.6.1.2.1.25.6.3.1.4.113|2|4
1.3.6.1.2.1.25.6.3.1.4.114|2|4
1.3.6.1.2.1.25.6.3.1.4.115|2|4
1.3.6.1.2.1.25.6.3.1.4.116|2|4
1.3.6.1.2.1.25.6.3.1.4.117|2|4
1.3.6.1.2.1.25.6.3.1.4.118|2|4
1.3.6.1.2.1.25.6.3.1.4.119|2|4
1.3.6.1.2.1.25.6.3.1.4.120|2|4
1.3.6.1.2.1.25.6.3.1.4.121|2|4
1.3.6.1.2.1.25.6.3.1.4.122|2|4
1.3.6.1.2.1.25.6.3.1.4.123|2|4
1.3.6.1.2.1.25.6.3.1.4.124|2|4
1.3.6.1.2.1.25.6.3.1.4.125|2|4
1.3.6.1.2.1.25.6.3.1.4.126|2|4
1.3.6.1.2.1.25.6.3.1.4.127|2|4
1.3.6.1.2.1.25.6.3.1.4.128|2|4
1.3.6.1.2.1.25.6.3.1.4.129|2|4
1.3.6.1.2.1.25.6.3.1.4.130|2|4
1.3.6.1.2.1.25.6.3.1.4.131|2|4
1.3.6.1.2.1.25.6.3.1.4.132|2|4
1.3.6.1.2.1.25.6.3.1.4.133|2|4
1.3.6.1.2.1.25.6.3.1.4.134|2|4
1.3.6.1.2.1.25.6.3.1.4.135|2|4
1.3.6.1.2.1.25.6.3.1.4.136|2|4
1.3.6.1.2.1.25.6.3.1.4.137|2|4
1.3.6.1.2.1.25.6.3.1.4.138|2|4
1.3.6.1.2.1.25.6.3.1.4.139|2|4
1.3.6.1.2.1.25.6.3.1.4.140|2|4
1.3.6.1.2.1.25.6.3.1.4.141|2|4
1.3.6.1.2.1.25.6.3.1.4.142|2|4
1.3.6.1.2.1.25.6.3.1.4.143|2|4
1.3.6.1.2.1.25.6.3.1.4.144|2|4
1.3.6.1.2.1.25.6.3.1.4.145|2|4
1.3.6.1.2.1.25.6.3.1.4.146|2|4
1.3.6.1.2.1.25.6.3.1.4.147|2|4
1.3.6.1.2.1.25.6.3.1.4.148|2|4
1.3.6.1.2.1.25.6.3.1.4.149|2|4
1.3.6.1.2.1.25.6.3.1.4.150|2|4
1.3.6.1.2.1.25.6.3.1.4.151|2|4
1.3.6.1.2.1.25.6.3.1.4.152|2|4
1.3.6.1.2.1.25.6.3.1.4.153|2|4
1.3.6.1.2.1.25.6.3.1.4.154|2|4
1.3.6.1.2.1.25.6.3.1.4.155|2|4
1.3.6.1.2.1.25.6.3.1.4.156|2|4
1.3.6.1.2.1.25.6.3.1.4.157|2|4
1.3.6.1.2.1.25.6.3.1.4.158|2|4
1.3.6.1.2.1.25.6.3.1.4.159|2|4
1.3.6.1.2.1.25.6.3.1.4.160|2|4
1.3.6.1.2.1.25.6.3.1.5.1|4x|07dd011a01091c00
1.3.6.1.2.1.25.6.3.1.5.2|4x|07dc011900081200
1.3.6.1.2.1.25.6.3.1.5.3|4x|07d9020117373a00
1.3.6.1.2.1.25.6.3.1.5.4|4x|07dd03060f023600
1.3.6.1.2.1.25.6.3.1.5.5|4x|07dc0118161f2200
1.3.6.1.2.1.25.6.3.1.5.6|4x|07d80c0b0f0d2800
1.3.6.1.2.1.25.6.3.1.5.7|4x|07d9020117380e00
1.3.6.1.2.1.25.6.3.1.5.8|4x|07d90201160c1600
1.3.6.1.2.1.25.6.3.1.5.9|4x|07da031b0a133600
1.3.6.1.2.1.25.6.3.1.5.10|4x|07dc020517311600
1.3.6.1.2.1.25.6.3.1.5.11|4x|07db060702110c00
1.3.6.1.2.1.25.6.3.1.5.12|4x|07db060702133200
1.3.6.1.2.1.25.6.3.1.5.13|4x|07db0a1b002f1400
1.3.6.1.2.1.25.6.3.1.5.14|4x|07db0a1b00300800
1.3.6.1.2.1.25.6.3.1.5.15|4x|07dc020517311c00
1.3.6.1.2.1.25.6.3.1.5.16|4x|07dc0118161d2000
1.3.6.1.2.1.25.6.3.1.5.17|4x|07dc0312143a3600
1.3.6.1.2.1.25.6.3.1.5.18|4x|07dc020517312400
1.3.6.1.2.1.25.6.3.1.5.19|4x|07dc031215011200
1.3.6.1.2.1.25.6.3.1.5.20|4x|07dc021316002600
1.3.6.1.2.1.25.6.3.1.5.21|4x|07dc0312143a3000
1.3.6.1.2.1.25.6.3.1.5.22|4x|07dc050d0f392400
1.3.6.1.2.1.25.6.3.1.5.23|4x|07dc081211083000
1.3.6.1.2.1.25.6.3.1.5.24|4x|07dc051017182e00
1.3.6.1.2.1.25.6.3.1.5.25|4x|07dc021316002c00
1.3.6.1.2.1.25.6.3.1.5.26|4x|07dc0a0f01000400
1.3.6.1.2.1.25.6.3.1.5.27|4x|07dc021316001200
1.3.6.1.2.1.25.6.3.1.5.28|4x|07dc050d10000400
1.3.6.1.2.1.25.6.3.1.5.29|4x|07dc08120a073000
1.3.6.1.2.1.25.6.3.1.5.30|4x|07dc0510170e2600
1.3.6.1.2.1.25.6.3.1.5.31|4x|07dc0812110d1a00
1.3.6.1.2.1.25.6.3.1.5.32|4x|07dc0510170e1c00
1.3.6.1.2.1.25.6.3.1.5.33|4x|07dc081211041400
1.3.6.1.2.1.25.6.3.1.5.34|4x|07dc081211050a00
1.3.6.1.2.1.25.6.3.1.5.35|4x|07dc0812110f2e00
1.3.6.1.2.1.25.6.3.1.5.36|4x|07dc0812110f3400
1.3.6.1.2.1.25.6.3.1.5.37|4x|07dc081211043800
1.3.6.1.2.1.25.6.3.1.5.38|4x|07dc081211050200
1.3.6.1.2.1.25.6.3.1.5.39|4x|07dc081211032200
1.3.6.1.2.1.25.6.3.1.5.40|4x|07dc081211042400
1.3.6.1.2.1.25.6.3.1.5.41|4x|07dc0a0f003b3a00
1.3.6.1.2.1.25.6.3.1.5.42|4x|07dc0b180d363200
1.3.6.1.2.1.25.6.3.1.5.43|4x|07dc0812110f2200
1.3.6.1.2.1.25.6.3.1.5.44|4x|07dc0a0f003b1400
1.3.6.1.2.1.25.6.3.1.5.45|4x|07dc0a0f003b2c00
1.3.6.1.2.1.25.6.3.1.5.46|4x|07dc0a0f003b3200
1.3.6.1.2.1.25.6.3.1.5.47|4x|07dc0c1013320a00
1.3.6.1.2.1.25.6.3.1.5.48|4x|07dd0104101f3600
1.3.6.1.2.1.25.6.3.1.5.49|4x|07dc0a0f01000800
1.3.6.1.2.1.25.6.3.1.5.50|4x|07dd011816033800
1.3.6.1.2.1.25.6.3.1.5.51|4x|07dc0c1013321200
1.3.6.1.2.1.25.6.3.1.5.52|4x|07dc0b180d362000
1.3.6.1.2.1.25.6.3.1.5.53|4x|07dc0c1013323600
1.3.6.1.2.1.25.6.3.1.5.54|4x|07dc0c1013321c00
1.3.6.1.2.1.25.6.3.1.5.55|4x|07dd0219102b1800
1.3.6.1.2.1.25.6.3.1.5.56|4x|07dc0c1013321800
1.3.6.1.2.1.25.6.3.1.5.57|4x|07dc0c1013323a00
1.3.6.1.2.1.25.6.3.1.5.58|4x|07dd0219102b0200
1.3.6.1.2.1.25.6.3.1.5.59|4x|07dd0219102a3600
1.3.6.1.2.1.25.6.3.1.5.60|4x|07dd0219102b1e00
1.3.6.1.2.1.25.6.3.1.5.61|4x|07dd0118160b0e00
1.3.6.1.2.1.25.6.3.1.5.62|4x|07dd0219102b1200
1.3.6.1.2.1.25.6.3.1.5.63|4x|07dd0219102b0600
1.3.6.1.2.1.25.6.3.1.5.64|4x|07d80c0b0f113000
1.3.6.1.2.1.25.6.3.1.5.65|4x|07d9040900040e00
1.3.6.1.2.1.25.6.3.1.5.66|4x|07d80c0b10131a00
1.3.6.1.2.1.25.6.3.1.5.67|4x|07dd021613320000
1.3.6.1.2.1.25.6.3.1.5.68|4x|07dd021613333400
1.3.6.1.2.1.25.6.3.1.5.69|4x|07d9040817383400
1.3.6.1.2.1.25.6.3.1.5.70|4x|07da031b0a141200
1.3.6.1.2.1.25.6.3.1.5.71|4x|07da031b0a141a00
1.3.6.1.2.1.25.6.3.1.5.72|4x|07dc0b180d3a1800
1.3.6.1.2.1.25.6.3.1.5.73|4x|07dd011816030000
1.3.6.1.2.1.25.6.3.1.5.74|4x|07d80c0b102f1c00
1.3.6.1.2.1.25.6.3.1.5.75|4x|07d90408173a1400
1.3.6.1.2.1.25.6.3.1.5.76|4x|07dc021416131c00
1.3.6.1.2.1.25.6.3.1.5.77|4x|07dd030a0e0d2400
1.3.6.1.2.1.25.6.3.1.5.78|4x|07dd030a10192000
1.3.6.1.2.1.25.6.3.1.5.79|4x|07dd030a0e0d2600
1.3.6.1.2.1.25.6.3.1.5.80|4x|07dc041800102200
1.3.6.1.2.1.25.6.3.1.5.81|4x|07dd030a10082600
1.3.6.1.2.1.25.6.3.1.5.82|4x|07dd011a010b1400
1.3.6.1.2.1.25.6.3.1.5.83|4x|07dd030a0f342000
1.3.6.1.2.1.25.6.3.1.5.84|4x|07d80c0b12061e00
1.3.6.1.2.1.25.6.3.1.5.85|4x|07d80c0b12051800
1.3.6.1.2.1.25.6.3.1.5.86|4x|07dc0a0e16353000
1.3.6.1.2.1.25.6.3.1.5.87|4x|07dd030a12322c00
1.3.6.1.2.1.25.6.3.1.5.88|4x|07dc0a0e16360000
1.3.6.1.2.1.25.6.3.1.5.89|4x|07dc0118161e1c00
1.3.6.1.2.1.25.6.3.1.5.90|4x|07d80c0b0f053a00
1.3.6.1.2.1.25.6.3.1.5.91|4x|07dc020414292a00
1.3.6.1.2.1.25.6.3.1.5.92|4x|07dd011a010c3200
1.3.6.1.2.1.25.6.3.1.5.93|4x|07d80c0b0f113000
1.3.6.1.2.1.25.6.3.1.5.94|4x|07d904100b120600
1.3.6.1.2.1.25.6.3.1.5.95|4x|07dd011a01071600
1.3.6.1.2.1.25.6.3.1.5.96|4x|07da031b0a133600
1.3.6.1.2.1.25.6.3.1.5.97|4x|07db0b1e00070000
1.3.6.1.2.1.25.6.3.1.5.98|4x|07d80c0e15113000
1.3.6.1.2.1.25.6.3.1.5.99|4x|07dd011a01071600
1.3.6.1.2.1.25.6.3.1.5.100|4x|07dd011a01062400
1.3.6.1.2.1.25.6.3.1.5.101|4x|07d9020117373a00
1.3.6.1.2.1.25.6.3.1.5.102|4x|07db0b1d17290a00
1.3.6.1.2.1.25.6.3.1.5.103|4x|07d80c0b0f342600
1.3.6.1.2.1.25.6.3.1.5.104|4x|07dd021910283800
1.3.6.1.2.1.25.6.3.1.5.105|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.106|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.107|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.108|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.109|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.110|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.111|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.112|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.113|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.114|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.115|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.116|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.117|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.118|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.119|4x|07dd021910281600
1.3.6.1.2.1.25.6.3.1.5.120|4x|07dc0a0e16361800
1.3.6.1.2.1.25.6.3.1.5.121|4x|07dc041800102800
1.3.6.1.2.1.25.6.3.1.5.122|4x|07db0b1d17290400
1.3.6.1.2.1.25.6.3.1.5.123|4x|07dd011a01091a00
1.3.6.1.2.1.25.6.3.1.5.124|4x|07dd011a01073400
1.3.6.1.2.1.25.6.3.1.5.125|4x|07dd011a01090e00
1.3.6.1.2.1.25.6.3.1.5.126|4x|07d9020117380e00
1.3.6.1.2.1.25.6.3.1.5.127|4x|07dc0a0f00241c00
1.3.6.1.2.1.25.6.3.1.5.128|4x|07d905090e2a3400
1.3.6.1.2.1.25.6.3.1.5.129|4x|07d9050a0a191600
1.3.6.1.2.1.25.6.3.1.5.130|4x|07d80c0b0f080200
1.3.6.1.2.1.25.6.3.1.5.131|4x|07dc08120b092000
1.3.6.1.2.1.25.6.3.1.5.132|4x|07d90105172d0e00
1.3.6.1.2.1.25.6.3.1.5.133|4x|07d9041100032200
1.3.6.1.2.1.25.6.3.1.5.134|4x|07dc08120b093800
1.3.6.1.2.1.25.6.3.1.5.135|4x|07d905090e2a3800
1.3.6.1.2.1.25.6.3.1.5.136|4x|07d80c0b0f071a00
1.3.6.1.2.1.25.6.3.1.5.137|4x|07d80c0e16231800
1.3.6.1.2.1.25.6.3.1.5.138|4x|07d80c0e15180e00
1.3.6.1.2.1.25.6.3.1.5.139|4x|07dd0118160a0600
1.3.6.1.2.1.25.6.3.1.5.140|4x|07d9020117372600
1.3.6.1.2.1.25.6.3.1.5.141|4x|07dd011a01073a00
1.3.6.1.2.1.25.6.3.1.5.142|4x|07dc0a0e162e2200
1.3.6.1.2.1.25.6.3.1.5.143|4x|07dd021910262e00
1.3.6.1.2.1.25.6.3.1.5.144|4x|07dc0a0e16323400
1.3.6.1.2.1.25.6.3.1.5.145|4x|07d80c0e15163600
1.3.6.1.2.1.25.6.3.1.5.146|4x|07d9041100060400
1.3.6.1.2.1.25.6.3.1.5.147|4x|07dd011816030000
1.3.6.1.2.1.25.6.3.1.5.148|4x|07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.149|4x|07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.150|4x|07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.151|4x|07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.152|4x|07d90408173a1200
1.3.6.1.2.1.25.6.3.1.5.153|4x|07dd011816041a00
1.3.6.1.2.1.25.6.3.1.5.154|4x|07da031b0a260400
1.3.6.1.2.1.25.6.3.1.5.155|4x|07dd011a010b2000
1.3.6.1.2.1.25.6.3.1.5.156|4x|07dd011a01080000
1.3.6.1.2.1.25.6.3.1.5.157|4x|07d80c0b112a2800
1.3.6.1.2.1.25.6.3.1.5.158|4x|07da031b09320a00
1.3.6.1.2.1.25.6.3.1.5.159|4x|07d80c0b0f010c00
1.3.6.1.2.1.25.6.3.1.5.160|4x|07dd030a0f332400
1.3.6.1.4.1.77.1.1.1.0|4|5
1.3.6.1.4.1.77.1.1.2.0|4|1
1.3.6.1.4.1.77.1.1.3.0|4x|03000000
1.3.6.1.4.1.77.1.1.4.0|2|1362908398
1.3.6.1.4.1.77.1.1.5.0|65|10
1.3.6.1.4.1.77.1.1.6.0|65|0
1.3.6.1.4.1.77.1.1.7.0|65|0
1.3.6.1.4.1.77.1.2.1.0|4|
1.3.6.1.4.1.77.1.2.2.0|2|50
1.3.6.1.4.1.77.1.2.3.1.1.6.83.101.114.118.101.114|4|Server
1.3.6.1.4.1.77.1.2.3.1.1.6.84.104.101.109.101.115|4|Themes
1.3.6.1.4.1.77.1.2.3.1.1.9.69.118.101.110.116.32.76.111.103|4|Event Log
1.3.6.1.4.1.77.1.2.3.1.1.9.84.101.108.101.112.104.111.110.121|4|Telephony
1.3.6.1.4.1.77.1.2.3.1.1.9.87.101.98.67.108.105.101.110.116|4|WebClient
1.3.6.1.4.1.77.1.2.3.1.1.10.68.78.83.32.67.108.105.101.110.116|4|DNS Client
1.3.6.1.4.1.77.1.2.3.1.1.11.68.72.67.80.32.67.108.105.101.110.116|4|DHCP Client
1.3.6.1.4.1.77.1.2.3.1.1.11.87.111.114.107.115.116.97.116.105.111.110|4|Workstation
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|4|SNMP Service
1.3.6.1.4.1.77.1.2.3.1.1.12.87.105.110.100.111.119.115.32.84.105.109.101|4|Windows Time
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|4|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|4|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|4|Windows Audio
1.3.6.1.4.1.77.1.2.3.1.1.14.73.80.83.69.67.32.83.101.114.118.105.99.101.115|4|IPSEC Services
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|4|Task Scheduler
1.3.6.1.4.1.77.1.2.3.1.1.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121|4|Remote Registry
1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110|4|Secondary Logon
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|4|Security Center
1.3.6.1.4.1.77.1.2.3.1.1.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116|4|Help and Support
1.3.6.1.4.1.77.1.2.3.1.1.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114|4|Infrared Monitor
1.3.6.1.4.1.77.1.2.3.1.1.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115|4|Automatic Updates
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|4|COM+ Event System
1.3.6.1.4.1.77.1.2.3.1.1.17.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101|4|Protected Storage
1.3.6.1.4.1.77.1.2.3.1.1.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101|4|SNMP Trap Service
1.3.6.1.4.1.77.1.2.3.1.1.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115|4|Terminal Services
1.3.6.1.4.1.77.1.2.3.1.1.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115|4|Network Connections
1.3.6.1.4.1.77.1.2.3.1.1.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114|4|Logical Disk Manager
1.3.6.1.4.1.77.1.2.3.1.1.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114|4|Machine Debug Manager
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|4|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|4|Cryptographic Services
1.3.6.1.4.1.77.1.2.3.1.1.22.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101|4|SSDP Discovery Service
1.3.6.1.4.1.77.1.2.3.1.1.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101|4|System Restore Service
1.3.6.1.4.1.77.1.2.3.1.1.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101|4|Error Reporting 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|4|Shell Hardware Detection
1.3.6.1.4.1.77.1.2.3.1.1.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101|4|Bluetooth Support Service
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|4|Security Accounts Manager
1.3.6.1.4.1.77.1.2.3.1.1.25.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|4|System Event Notification
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|4|Remote Procedure Call (RPC)
1.3.6.1.4.1.77.1.2.3.1.1.27.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110|4|Wireless Zero Configuration
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|4|DCOM Server Process Launcher
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|4|Windows Image Acquisition (WIA)
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|4|Distributed Link Tracking Client
1.3.6.1.4.1.77.1.2.3.1.1.32.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.32.40.78.76.65.41|4|Network Location Awareness (NLA)
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|4|Remote Access Connection Manager
1.3.6.1.4.1.77.1.2.3.1.1.33.65.112.112.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101|4|Application Layer Gateway Service
1.3.6.1.4.1.77.1.2.3.1.1.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121|4|Fast User Switching Compatibility
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|4|Windows Management Instrumentation
1.3.6.1.4.1.77.1.2.3.1.1.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101|4|Background Intelligent Transfer Service
1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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|4|Windows Firewall/Internet Connection Sharing (ICS)
1.3.6.1.4.1.77.1.2.3.1.1.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107|4|Windows Driver Foundation - User-mode Driver Framework
1.3.6.1.4.1.77.1.2.3.1.2.6.83.101.114.118.101.114|2|4
1.3.6.1.4.1.77.1.2.3.1.2.6.84.104.101.109.101.115|2|4
1.3.6.1.4.1.77.1.2.3.1.2.9.69.118.101.110.116.32.76.111.103|2|4
1.3.6.1.4.1.77.1.2.3.1.2.9.84.101.108.101.112.104.111.110.121|2|4
1.3.6.1.4.1.77.1.2.3.1.2.9.87.101.98.67.108.105.101.110.116|2|4
1.3.6.1.4.1.77.1.2.3.1.2.10.68.78.83.32.67.108.105.101.110.116|2|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|2|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|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.12.87.105.110.100.111.119.115.32.84.105.109.101|2|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|2|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|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.14.73.80.83.69.67.32.83.101.114.118.105.99.101.115|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121|2|4
1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116|2|4
1.3.6.1.4.1.77.1.2.3.1.2.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114|2|4
1.3.6.1.4.1.77.1.2.3.1.2.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.17.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101|2|4
1.3.6.1.4.1.77.1.2.3.1.2.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101|2|4
1.3.6.1.4.1.77.1.2.3.1.2.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115|2|4
1.3.6.1.4.1.77.1.2.3.1.2.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115|2|4
1.3.6.1.4.1.77.1.2.3.1.2.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114|2|4
1.3.6.1.4.1.77.1.2.3.1.2.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114|2|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|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.22.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101|2|4
1.3.6.1.4.1.77.1.2.3.1.2.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101|2|4
1.3.6.1.4.1.77.1.2.3.1.2.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.25.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|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.27.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110|2|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|2|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|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.32.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.32.40.78.76.65.41|2|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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.33.65.112.112.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101|2|4
1.3.6.1.4.1.77.1.2.3.1.2.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121|2|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|2|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.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101|2|4
1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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|2|4
1.3.6.1.4.1.77.1.2.3.1.2.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107|2|4
1.3.6.1.4.1.77.1.2.3.1.3.6.83.101.114.118.101.114|2|1
1.3.6.1.4.1.77.1.2.3.1.3.6.84.104.101.109.101.115|2|1
1.3.6.1.4.1.77.1.2.3.1.3.9.69.118.101.110.116.32.76.111.103|2|1
1.3.6.1.4.1.77.1.2.3.1.3.9.84.101.108.101.112.104.111.110.121|2|1
1.3.6.1.4.1.77.1.2.3.1.3.9.87.101.98.67.108.105.101.110.116|2|1
1.3.6.1.4.1.77.1.2.3.1.3.10.68.78.83.32.67.108.105.101.110.116|2|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|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.12.87.105.110.100.111.119.115.32.84.105.109.101|2|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|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.14.73.80.83.69.67.32.83.101.114.118.105.99.101.115|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121|2|1
1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116|2|1
1.3.6.1.4.1.77.1.2.3.1.3.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114|2|1
1.3.6.1.4.1.77.1.2.3.1.3.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.17.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101|2|1
1.3.6.1.4.1.77.1.2.3.1.3.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.3.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115|2|1
1.3.6.1.4.1.77.1.2.3.1.3.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115|2|1
1.3.6.1.4.1.77.1.2.3.1.3.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114|2|1
1.3.6.1.4.1.77.1.2.3.1.3.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.22.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.3.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.3.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.25.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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.27.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110|2|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|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.32.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.32.40.78.76.65.41|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.33.65.112.112.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.3.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121|2|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|2|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.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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|2|1
1.3.6.1.4.1.77.1.2.3.1.3.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107|2|1
1.3.6.1.4.1.77.1.2.3.1.4.6.83.101.114.118.101.114|2|2
1.3.6.1.4.1.77.1.2.3.1.4.6.84.104.101.109.101.115|2|2
1.3.6.1.4.1.77.1.2.3.1.4.9.69.118.101.110.116.32.76.111.103|2|1
1.3.6.1.4.1.77.1.2.3.1.4.9.84.101.108.101.112.104.111.110.121|2|2
1.3.6.1.4.1.77.1.2.3.1.4.9.87.101.98.67.108.105.101.110.116|2|2
1.3.6.1.4.1.77.1.2.3.1.4.10.68.78.83.32.67.108.105.101.110.116|2|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|2|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|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.12.87.105.110.100.111.119.115.32.84.105.109.101|2|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|2|1
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|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.14.73.80.83.69.67.32.83.101.114.118.105.99.101.115|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121|2|2
1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116|2|2
1.3.6.1.4.1.77.1.2.3.1.4.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114|2|2
1.3.6.1.4.1.77.1.2.3.1.4.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.17.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101|2|2
1.3.6.1.4.1.77.1.2.3.1.4.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101|2|2
1.3.6.1.4.1.77.1.2.3.1.4.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115|2|1
1.3.6.1.4.1.77.1.2.3.1.4.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115|2|2
1.3.6.1.4.1.77.1.2.3.1.4.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114|2|2
1.3.6.1.4.1.77.1.2.3.1.4.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114|2|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|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.22.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101|2|2
1.3.6.1.4.1.77.1.2.3.1.4.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101|2|2
1.3.6.1.4.1.77.1.2.3.1.4.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.4.25.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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.4.27.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110|2|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|2|1
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|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.32.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.32.40.78.76.65.41|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.33.65.112.112.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101|2|2
1.3.6.1.4.1.77.1.2.3.1.4.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121|2|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|2|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.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101|2|2
1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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|2|2
1.3.6.1.4.1.77.1.2.3.1.4.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107|2|1
1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114|2|2
1.3.6.1.4.1.77.1.2.3.1.5.6.84.104.101.109.101.115|2|1
1.3.6.1.4.1.77.1.2.3.1.5.9.69.118.101.110.116.32.76.111.103|2|1
1.3.6.1.4.1.77.1.2.3.1.5.9.84.101.108.101.112.104.111.110.121|2|2
1.3.6.1.4.1.77.1.2.3.1.5.9.87.101.98.67.108.105.101.110.116|2|1
1.3.6.1.4.1.77.1.2.3.1.5.10.68.78.83.32.67.108.105.101.110.116|2|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|2|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|2|2
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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.12.87.105.110.100.111.119.115.32.84.105.109.101|2|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|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.14.73.80.83.69.67.32.83.101.114.118.105.99.101.115|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.5.15.82.101.109.111.116.101.32.82.101.103.105.115.116.114.121|2|1
1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.111.110.100.97.114.121.32.76.111.103.111.110|2|2
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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.16.72.101.108.112.32.97.110.100.32.83.117.112.112.111.114.116|2|1
1.3.6.1.4.1.77.1.2.3.1.5.16.73.110.102.114.97.114.101.100.32.77.111.110.105.116.111.114|2|2
1.3.6.1.4.1.77.1.2.3.1.5.17.65.117.116.111.109.97.116.105.99.32.85.112.100.97.116.101.115|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.17.80.114.111.116.101.99.116.101.100.32.83.116.111.114.97.103.101|2|1
1.3.6.1.4.1.77.1.2.3.1.5.17.83.78.77.80.32.84.114.97.112.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.5.17.84.101.114.109.105.110.97.108.32.83.101.114.118.105.99.101.115|2|1
1.3.6.1.4.1.77.1.2.3.1.5.19.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.115|2|1
1.3.6.1.4.1.77.1.2.3.1.5.20.76.111.103.105.99.97.108.32.68.105.115.107.32.77.97.110.97.103.101.114|2|1
1.3.6.1.4.1.77.1.2.3.1.5.21.77.97.99.104.105.110.101.32.68.101.98.117.103.32.77.97.110.97.103.101.114|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.22.83.83.68.80.32.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.5.22.83.121.115.116.101.109.32.82.101.115.116.111.114.101.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.5.23.69.114.114.111.114.32.82.101.112.111.114.116.105.110.103.32.83.101.114.118.105.99.101|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.5.25.66.108.117.101.116.111.111.116.104.32.83.117.112.112.111.114.116.32.83.101.114.118.105.99.101|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.25.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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.27.87.105.114.101.108.101.115.115.32.90.101.114.111.32.67.111.110.102.105.103.117.114.97.116.105.111.110|2|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|2|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|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.32.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.32.40.78.76.65.41|2|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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.33.65.112.112.108.105.99.97.116.105.111.110.32.76.97.121.101.114.32.71.97.116.101.119.97.121.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.5.33.70.97.115.116.32.85.115.101.114.32.83.119.105.116.99.104.105.110.103.32.67.111.109.112.97.116.105.98.105.108.105.116.121|2|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|2|2
1.3.6.1.4.1.77.1.2.3.1.5.39.66.97.99.107.103.114.111.117.110.100.32.73.110.116.101.108.108.105.103.101.110.116.32.84.114.97.110.115.102.101.114.32.83.101.114.118.105.99.101|2|1
1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.70.105.114.101.119.97.108.108.47.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|2|1
1.3.6.1.4.1.77.1.2.3.1.5.54.87.105.110.100.111.119.115.32.68.114.105.118.101.114.32.70.111.117.110.100.97.116.105.111.110.32.45.32.85.115.101.114.45.109.111.100.101.32.68.114.105.118.101.114.32.70.114.97.109.101.119.111.114.107|2|1
1.3.6.1.4.1.77.1.2.4.0|65|0
1.3.6.1.4.1.77.1.2.5.0|65|0
1.3.6.1.4.1.77.1.2.6.0|65|0
1.3.6.1.4.1.77.1.2.7.0|65|1
1.3.6.1.4.1.77.1.2.8.0|65|0
1.3.6.1.4.1.77.1.2.9.0|65|0
1.3.6.1.4.1.77.1.2.10.0|65|0
1.3.6.1.4.1.77.1.2.11.0|65|0
1.3.6.1.4.1.77.1.2.12.0|65|0
1.3.6.1.4.1.77.1.2.13.0|65|0
1.3.6.1.4.1.77.1.2.14.0|2|0
1.3.6.1.4.1.77.1.2.15.0|2|2
1.3.6.1.4.1.77.1.2.16.0|2|10
1.3.6.1.4.1.77.1.2.17.0|65|0
1.3.6.1.4.1.77.1.2.18.0|65|0
1.3.6.1.4.1.77.1.2.19.0|2|0
1.3.6.1.4.1.77.1.2.21.0|2|0
1.3.6.1.4.1.77.1.2.22.0|2|15
1.3.6.1.4.1.77.1.2.24.0|2|6
1.3.6.1.4.1.77.1.2.25.1.1.4.105.108.121.97|4|ilya
1.3.6.1.4.1.77.1.2.25.1.1.5.71.117.101.115.116|4|Guest
1.3.6.1.4.1.77.1.2.25.1.1.6.65.83.80.78.69.84|4|ASPNET
1.3.6.1.4.1.77.1.2.25.1.1.13.65.100.109.105.110.105.115.116.114.97.116.111.114|4|Administrator
1.3.6.1.4.1.77.1.2.25.1.1.13.72.101.108.112.65.115.115.105.115.116.97.110.116|4|HelpAssistant
1.3.6.1.4.1.77.1.2.25.1.1.16.83.85.80.80.79.82.84.95.51.56.56.57.52.53.97.48|4|SUPPORT_388945a0
1.3.6.1.4.1.77.1.2.26.0|2|0
1.3.6.1.4.1.77.1.2.28.0|2|0
1.3.6.1.4.1.77.1.3.1.0|65|0
1.3.6.1.4.1.77.1.3.2.0|65|0
1.3.6.1.4.1.77.1.3.3.0|65|0
1.3.6.1.4.1.77.1.3.4.0|65|0
1.3.6.1.4.1.77.1.3.5.0|65|0
1.3.6.1.4.1.77.1.3.7.0|2|0
1.3.6.1.4.1.77.1.4.1.0|4|WORKGROUP
snmpsim-0.4.5/data/recorded/solaris-system.snmprec 0000664 0063214 0063214 00000000404 13051045252 022472 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4|Sun SNMP Agent, Sun-Blade-100
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.42.2.1.1
1.3.6.1.2.1.1.3.0|67|624162552
1.3.6.1.2.1.1.4.0|4|System administrator
1.3.6.1.2.1.1.5.0|4|oss
1.3.6.1.2.1.1.6.0|4|System administrators office
1.3.6.1.2.1.1.8.0|67|72
snmpsim-0.4.5/data/recorded/linksys-system.snmprec 0000664 0063214 0063214 00000000354 13051045252 022516 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4|BEFSX41
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.3955.1.1
1.3.6.1.2.1.1.3.0|67|638239
1.3.6.1.2.1.1.4.0|4|Linksys
1.3.6.1.2.1.1.5.0|4|isp-gw
1.3.6.1.2.1.1.6.0|4|4, Petersburger strasse, Berlin, Germany
1.3.6.1.2.1.1.8.0|67|4
snmpsim-0.4.5/data/recorded/udp-endpoint-table-walk.snmprec 0000664 0063214 0063214 00000002642 13051045252 024131 0 ustar ietingof ietingof 1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.37.1.4.0.0.0.0.0.13480|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.111.1.4.0.0.0.0.0.13348|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.123.1.4.0.0.0.0.0.13701|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.161.1.4.0.0.0.0.0.17521|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.512.1.4.0.0.0.0.0.13481|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.631.1.4.0.0.0.0.0.16954|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.665.1.4.0.0.0.0.0.13621|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.978.1.4.0.0.0.0.0.13380|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.2049.1.4.0.0.0.0.0.13649|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32768.1.4.0.0.0.0.0.13386|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32769.1.4.0.0.0.0.0.13645|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.32770.1.4.0.0.0.0.0.13671|66|0
1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.45639.1.4.0.0.0.0.0.26306447|66|0
1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.53.1.4.0.0.0.0.0.13528|66|0
1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.123.1.4.0.0.0.0.0.13706|66|0
1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.53.1.4.0.0.0.0.0.13530|66|0
1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.123.1.4.0.0.0.0.0.13707|66|0
1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13702|66|0
1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13704|66|0
1.3.6.1.2.1.7.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13705|66|0
1.3.6.1.2.1.11.1.0|65|55925
snmpsim-0.4.5/data/cisco_16_switch.snmprec 0000664 0063214 0063214 00013566043 13075631713 020731 0 ustar ietingof ietingof 1.3.6.1.2.1.1.1.0|4x|436973636f20494f5320536f6674776172652c20433337353020536f667477617265202843333735302d495053455256494345534b392d4d292c2056657273696f6e2031322e3228353529534531302c2052454c4541534520534f4654574152452028666332290d0a546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f72740d0a436f707972696768742028632920313938362d3230313520627920436973636f2053797374656d732c20496e632e0d0a436f6d70696c6564205765642031312d4665622d31352031313a34302062792070726f645f72656c5f7465616d
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.516
1.3.6.1.2.1.1.3.0|67|697202257
1.3.6.1.2.1.1.4.0|4|
1.3.6.1.2.1.1.5.0|4|Profiler3750
1.3.6.1.2.1.1.6.0|4|Bangalore
1.3.6.1.2.1.1.7.0|2|6
1.3.6.1.2.1.1.8.0|67|0
1.3.6.1.2.1.1.9.1.2.1|6|1.3.6.1.4.1.9.7.129
1.3.6.1.2.1.1.9.1.2.2|6|1.3.6.1.4.1.9.7.115
1.3.6.1.2.1.1.9.1.2.3|6|1.3.6.1.4.1.9.7.265
1.3.6.1.2.1.1.9.1.2.4|6|1.3.6.1.4.1.9.7.112
1.3.6.1.2.1.1.9.1.2.5|6|1.3.6.1.4.1.9.7.106
1.3.6.1.2.1.1.9.1.2.6|6|1.3.6.1.4.1.9.7.47
1.3.6.1.2.1.1.9.1.2.7|6|1.3.6.1.4.1.9.7.122
1.3.6.1.2.1.1.9.1.2.8|6|1.3.6.1.4.1.9.7.135
1.3.6.1.2.1.1.9.1.2.9|6|1.3.6.1.4.1.9.7.43
1.3.6.1.2.1.1.9.1.2.10|6|1.3.6.1.4.1.9.7.37
1.3.6.1.2.1.1.9.1.2.11|6|1.3.6.1.4.1.9.7.92
1.3.6.1.2.1.1.9.1.2.12|6|1.3.6.1.4.1.9.7.53
1.3.6.1.2.1.1.9.1.2.13|6|1.3.6.1.4.1.9.7.54
1.3.6.1.2.1.1.9.1.2.14|6|1.3.6.1.4.1.9.7.52
1.3.6.1.2.1.1.9.1.2.15|6|1.3.6.1.4.1.9.7.93
1.3.6.1.2.1.1.9.1.2.16|6|1.3.6.1.4.1.9.7.186
1.3.6.1.2.1.1.9.1.2.17|6|1.3.6.1.4.1.9.7.128
1.3.6.1.2.1.1.9.1.2.18|6|1.3.6.1.4.1.9.7.121
1.3.6.1.2.1.1.9.1.2.19|6|1.3.6.1.4.1.9.7.44
1.3.6.1.2.1.1.9.1.2.20|6|1.3.6.1.4.1.9.7.99999
1.3.6.1.2.1.1.9.1.2.21|6|1.3.6.1.4.1.9.7.350
1.3.6.1.2.1.1.9.1.2.22|6|1.3.6.1.4.1.9.7.33
1.3.6.1.2.1.1.9.1.2.23|6|1.3.6.1.4.1.9.7.130
1.3.6.1.2.1.1.9.1.2.24|6|1.3.6.1.4.1.9.7.116
1.3.6.1.2.1.1.9.1.2.25|6|1.3.6.1.4.1.9.7.91
1.3.6.1.2.1.1.9.1.2.26|6|1.3.6.1.4.1.9.7.999
1.3.6.1.2.1.1.9.1.2.27|6|1.3.6.1.4.1.9.7.9999
1.3.6.1.2.1.1.9.1.2.28|6|1.3.6.1.4.1.9.7.126
1.3.6.1.2.1.1.9.1.2.29|6|1.3.6.1.4.1.9.7.127
1.3.6.1.2.1.1.9.1.2.30|6|1.3.6.1.4.1.9.7.64
1.3.6.1.2.1.1.9.1.2.31|6|1.3.6.1.4.1.9.7.999
1.3.6.1.2.1.1.9.1.2.32|6|1.3.6.1.4.1.9.7.578
1.3.6.1.2.1.1.9.1.2.33|6|1.3.6.1.4.1.9.7.579
1.3.6.1.2.1.1.9.1.2.34|6|1.3.6.1.4.1.9.7.439
1.3.6.1.2.1.1.9.1.2.35|6|1.3.6.1.4.1.9.7.438
1.3.6.1.2.1.1.9.1.2.36|6|1.3.6.1.4.1.9.7.123
1.3.6.1.2.1.1.9.1.2.37|6|1.3.6.1.4.1.9.7.120
1.3.6.1.2.1.1.9.1.2.38|6|1.3.6.1.4.1.9.7.310
1.3.6.1.2.1.1.9.1.2.39|6|1.3.6.1.4.1.9.7.124
1.3.6.1.2.1.1.9.1.2.40|6|1.3.6.1.4.1.9.7.119
1.3.6.1.2.1.1.9.1.2.41|6|1.3.6.1.4.1.9.7.125
1.3.6.1.2.1.1.9.1.2.42|6|1.3.6.1.4.1.9.7.45
1.3.6.1.2.1.1.9.1.2.43|6|1.3.6.1.4.1.9.7.46
1.3.6.1.2.1.1.9.1.2.44|6|1.3.6.1.4.1.9.7.201
1.3.6.1.2.1.1.9.1.2.45|6|1.3.6.1.4.1.9.7.202
1.3.6.1.2.1.1.9.1.2.46|6|1.3.6.1.4.1.9.7.440
1.3.6.1.2.1.1.9.1.2.47|6|1.3.6.1.4.1.9.7.16
1.3.6.1.2.1.1.9.1.2.48|6|1.3.6.1.4.1.9.7.17
1.3.6.1.2.1.1.9.1.2.49|6|1.3.6.1.4.1.9.7.287
1.3.6.1.2.1.1.9.1.2.50|6|1.3.6.1.4.1.9.7.288
1.3.6.1.2.1.1.9.1.2.51|6|1.3.6.1.4.1.9.7.319
1.3.6.1.2.1.1.9.1.2.52|6|1.3.6.1.4.1.9.7.36
1.3.6.1.2.1.1.9.1.2.53|6|1.3.6.1.4.1.9.7.209
1.3.6.1.2.1.1.9.1.2.54|6|1.3.6.1.4.1.9.7.412
1.3.6.1.2.1.1.9.1.2.55|6|1.3.6.1.4.1.9.7.406
1.3.6.1.2.1.1.9.1.2.56|6|1.3.6.1.4.1.9.7.256
1.3.6.1.2.1.1.9.1.2.57|6|1.3.6.1.4.1.9.7.101
1.3.6.1.2.1.1.9.1.2.58|6|1.3.6.1.4.1.9.7.105
1.3.6.1.2.1.1.9.1.2.59|6|1.3.6.1.4.1.9.7.108
1.3.6.1.2.1.1.9.1.2.60|6|1.3.6.1.4.1.9.7.103
1.3.6.1.2.1.1.9.1.2.61|6|1.3.6.1.4.1.9.7.107
1.3.6.1.2.1.1.9.1.2.62|6|1.3.6.1.4.1.9.7.109
1.3.6.1.2.1.1.9.1.2.63|6|1.3.6.1.4.1.9.7.110
1.3.6.1.2.1.1.9.1.2.64|6|1.3.6.1.4.1.9.7.111
1.3.6.1.2.1.1.9.1.2.65|6|1.3.6.1.4.1.9.7.102
1.3.6.1.2.1.1.9.1.2.66|6|1.3.6.1.4.1.9.7.102
1.3.6.1.2.1.1.9.1.2.67|6|1.3.6.1.4.1.9.7.120
1.3.6.1.2.1.1.9.1.2.68|6|1.3.6.1.4.1.9.7.115
1.3.6.1.2.1.1.9.1.2.69|6|1.3.6.1.4.1.9.7.62
1.3.6.1.2.1.1.9.1.2.70|6|1.3.6.1.4.1.9.7.181
1.3.6.1.2.1.1.9.1.2.71|6|1.3.6.1.4.1.9.7.28
1.3.6.1.2.1.1.9.1.2.72|6|1.3.6.1.4.1.9.7.117
1.3.6.1.2.1.1.9.1.2.73|6|1.3.6.1.4.1.9.7.39
1.3.6.1.2.1.1.9.1.2.74|6|1.3.6.1.4.1.9.7.113
1.3.6.1.2.1.1.9.1.2.75|6|1.3.6.1.4.1.9.7.114
1.3.6.1.2.1.1.9.1.2.76|6|1.3.6.1.4.1.9.7.261
1.3.6.1.2.1.1.9.1.2.77|6|1.3.6.1.4.1.9.7.104
1.3.6.1.2.1.1.9.1.2.78|6|1.3.6.1.4.1.9.7.187
1.3.6.1.2.1.1.9.1.2.79|6|1.3.6.1.4.1.9.7.26
1.3.6.1.2.1.1.9.1.2.80|6|1.3.6.1.4.1.9.7.51
1.3.6.1.2.1.1.9.1.2.81|6|1.3.6.1.4.1.9.7.118
1.3.6.1.2.1.1.9.1.2.82|6|1.3.6.1.4.1.9.7.37
1.3.6.1.2.1.1.9.1.2.83|6|1.3.6.1.4.1.9.7.82
1.3.6.1.2.1.1.9.1.2.84|6|1.3.6.1.4.1.9.7.83
1.3.6.1.2.1.1.9.1.2.85|6|1.3.6.1.4.1.9.7.84
1.3.6.1.2.1.1.9.1.2.86|6|1.3.6.1.4.1.9.7.303
1.3.6.1.2.1.1.9.1.2.87|6|1.3.6.1.4.1.9.7.213
1.3.6.1.2.1.1.9.1.2.88|6|1.3.6.1.4.1.9.7.1
1.3.6.1.2.1.1.9.1.2.89|6|1.3.6.1.4.1.9.7.2
1.3.6.1.2.1.1.9.1.2.90|6|1.3.6.1.4.1.9.7.3
1.3.6.1.2.1.1.9.1.2.91|6|1.3.6.1.4.1.9.7.4
1.3.6.1.2.1.1.9.1.2.92|6|1.3.6.1.4.1.9.7.5
1.3.6.1.2.1.1.9.1.2.93|6|1.3.6.1.4.1.9.7.6
1.3.6.1.2.1.1.9.1.2.94|6|1.3.6.1.4.1.9.7.7
1.3.6.1.2.1.1.9.1.2.95|6|1.3.6.1.4.1.9.7.8
1.3.6.1.2.1.1.9.1.2.96|6|1.3.6.1.4.1.9.7.9
1.3.6.1.2.1.1.9.1.2.97|6|1.3.6.1.4.1.9.7.10
1.3.6.1.2.1.1.9.1.2.98|6|1.3.6.1.4.1.9.7.11
1.3.6.1.2.1.1.9.1.2.99|6|1.3.6.1.4.1.9.7.12
1.3.6.1.2.1.1.9.1.2.100|6|1.3.6.1.4.1.9.7.13
1.3.6.1.2.1.1.9.1.2.101|6|1.3.6.1.4.1.9.7.14
1.3.6.1.2.1.1.9.1.2.102|6|1.3.6.1.4.1.9.7.15
1.3.6.1.2.1.1.9.1.3.1|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d4141412d5345525645522d4d49420a20202020202020204c4153542d55504441544544203230303030313230303030305a200a2020202020202020636973636f4141415365727665724361706162696c697479563130523030204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d4141412d5345525645522d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.2|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d414c50532d4d49420a20202020202020204c4153542d5550444154454420393731303237303030305a200a2020202020202020636973636f416c70734361706162696c697479563031523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d414c50532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.3|4x|0a2020202020202020546865204167656e74204361706162696c697469657320666f72200a202020202020202020202020202020202020202020202020434953434f2d41544d2d505643545241502d4558544e2d4d49422e0a20202020202020204c4153542d55504441544544203230303231313036303030305a200a2020202020202020636973636f41544d505643545241504578746e4361706162696c69747956313252303053204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d41544d2d505643545241502d4558544e2d4d49420a202020202020202046696c65206e616d653a207379
1.3.6.1.2.1.1.9.1.3.4|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220424750342d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f426770344361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320424750342d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.5|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220746865204252494447452d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f4272696467654361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204252494447452d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.6|4x|0a20202020202020204167656e74206361706162696c697469657320666f722043414c4c2d484953544f52592d4d49420a20202020202020204c4153542d5550444154454420393631313139303030305a200a2020202020202020636973636f43616c6c486973746f72794361706162696c697479563131523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d43414c4c2d484953544f52592d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.7|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d4341532d49462d4d49420a20202020202020204c4153542d5550444154454420393730393135303030305a200a2020202020202020636973636f43617349664361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4341532d49462d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.8|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434153412d46412d4d49420a20202020202020204c4153542d55504441544544203230303031323031303030305a200a2020202020202020636973636f4361736146614361706162696c697479563132523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d434153412d46412d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.9|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d4344502d4d49420a20202020202020204c4153542d5550444154454420303530363031303030305a200a2020202020202020636973636f4364704361706162696c697479563131523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4344502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.10|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220746865204348414e4e454c2d4d49420a20202020202020204c4153542d5550444154454420393731323135303030305a200a2020202020202020636973636f4368616e6e656c4361706162696c697479563132523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4348414e4e454c2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.11|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d434950434d50432d4d49420a20202020202020204c4153542d5550444154454420393730323139303030305a200a2020202020202020636973636f436970436d70634361706162696c697479563131523033204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d434950434d50432d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.12|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d43495043534e412d4d49420a20202020202020204c4153542d5550444154454420393530343136303030305a200a2020202020202020636973636f43697043736e614361706162696c697479563131523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d43495043534e412d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.13|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d4349504c414e2d4d49420a20202020202020204c4153542d5550444154454420393530343136303030305a200a2020202020202020636973636f4369704c616e4361706162696c697479563131523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4349504c414e2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.14|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d43495054435049502d4d49420a20202020202020204c4153542d5550444154454420393530343238303030305a200a2020202020202020636973636f43697054637049704361706162696c697479563131523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d43495054435049502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.15|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d43495054472d4d49420a20202020202020204c4153542d5550444154454420393930313235303030305a200a2020202020202020636973636f43697054674361706162696c69747956313252303354204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d43495054472d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.16|4x|0a20202020202020204167656e74206361706162696c697469657320666f72200a2020202020202020202020202020202020202020202020202020202020202020202020202020202020434c4153532d42415345442d514f532d4d49422e0a20202020202020204c4153542d55504441544544203230303430393031303030305a200a2020202020202020636973636f4342516f734d69624361706162696c697479563132523033303654204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d434c4153532d42415345442d514f532d4d49420a202020202020202046696c65206e616d653a207379
1.3.6.1.2.1.1.9.1.3.17|4x|0a20202020202020205468697320697320746865204167656e74204361706162696c697469657320666f720a202020202020202020202020202020202020202020202020202020202020202020434953434f2d434f4e4649475f434f50592d4d49422e0a20202020202020204c4153542d55504441544544203230303430333137303030305a200a2020202020202020636973636f436f6e666967436f70794361706162696c69747956325230313735204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d434f4e4649472d434f50592d4d49420a202020202020202046696c65206e616d653a2073
1.3.6.1.2.1.1.9.1.3.18|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d4453502d4d474d542d4d49420a20202020202020204c4153542d5550444154454420393830333235303030305a200a2020202020202020636973636f4473704d676d744361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4453502d4d474d542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.19|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520445350552d4d49420a20202020202020204c4153542d5550444154454420393530313235303030305a200a2020202020202020636973636f447370754361706162696c697479563131523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d445350552d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.20|4x|0a20202020202020203230303730313131303030305a2020202020202020202020204445534352495054494f4e0a202020202020202020202020202020200a20202020202020204c4153542d55504441544544203230303730313131303030305a200a2020202020202020636973636f456d6265646465644576656e744d67724361706162696c697479563132523032535848204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d454d4245444445442d4556454e542d4d47522d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.21|4x|0a2020202020202020546865204167656e74206361706162696c697469657320666f7220434953434f2d454e544954592d53454e534f522d4d49422e0a20202020202020204c4153542d55504441544544203230303831303036303030305a200a202020202020202063456e7469747953656e736f724361706162696c697479563552303135204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d454e544954592d53454e534f522d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.22|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d454e564d4f4e2d4d49420a20202020202020204c4153542d5550444154454420393530313233303030305a200a2020202020202020636973636f456e764d6f6e4361706162696c697479563131523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d454e564d4f4e2d4d4942200a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.23|4x|0a20202020202020204167656e74206361706162696c697469657320666f722045544845524c494b452d4d494220285246432032363635292e0a20202020202020204c4153542d5550444154454420303030313231313430305a200a2020202020202020636973636f45746865726c696b654361706162696c697479563132523031204147454e542d4341504142494c49544945530a2020202020202020535550504f5254532045544845524c494b452d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.24|4x|0a20202020202020204167656e74206361706162696c697469657320666f722052464320313531322046444449204d49422e0a20202020202020204c4153542d5550444154454420393431313038303030305a200a2020202020202020666464694361706162696c697479563130523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320464444492d534d5437332d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.25|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220746865204652415320486f7374204d49420a20202020202020204c4153542d5550444154454420393730323132303030305a200a2020202020202020636973636f46726173486f73744361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d465241532d484f53542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.26|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d474154454b45455045522d4d49420a20202020202020204c4153542d55504441544544203230303030343137303030305a200a2020202020202020636973636f476174656b65657065724361706162696c697479563132523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d474154454b45455045522d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.27|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d475052532d4754502d4d49420a20202020202020204c4153542d55504441544544203230303130363035313630305a200a202020202020202063677072734774704361706162696c697479563132523031204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d475052532d4754502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.28|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d485352502d4d49420a20202020202020204c4153542d5550444154454420393830383235303030305a200a2020202020202020636973636f487372704361706162696c6974795631325230204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d485352502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.29|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d485352502d4558542d4d49420a20202020202020204c4153542d5550444154454420393830383235303030305a200a2020202020202020636973636f487372704578744361706162696c6974795631325230204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d485352502d4558542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.30|4x|0a2020202020202020496e7465677261746564204353552f445355204d4942206d6f64756c652e2020466f7220543120616e64205377697463686564203536206b6270730a2020202020202020202020202020202020202020202020202020202020202020696e74657266616365732e0a20202020202020204c4153542d5550444154454420393630313231303030305a200a2020202020202020636973636f494373754473754361706162696c697479563131523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d494353554453552d4d49420a202020202020202046696c65206e616d65
1.3.6.1.2.1.1.9.1.3.31|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d494545452d43464d2d4d494220202020202020200a202020202020202020202020202020203a3a3d207b20636973636f4167656e744361706162696c69747920393939207d0a20202020202020200a20202020202020200a2020202020202020636973636f4965656543666d4d69624361706162696c6974795631325232535242204147454e542d4341504142494c49544945530a20202020202020200a202020202020202050524f445543542d52454c45415345200a20202020202020204c4153542d55504441544544203230303730353130313230305a
1.3.6.1.2.1.1.9.1.3.32|4x|0a2020202020202020546865206361706162696c6974696573206465736372697074696f6e206f662049454545383032312d43464d2d4d49422e0a20202020202020204c4153542d55504441544544203230313030323233303030305a200a2020202020202020636973636f496565653830323143666d43617056313252303235345345204147454e542d4341504142494c49544945530a202020202020202020535550504f5254532049454545383032312d43464d2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.33|4x|0a2020202020202020546865206361706162696c6974696573206465736372697074696f6e206f662049454545383032312d43464d2d56322d4d49422e0a20202020202020204c4153542d55504441544544203230313030323135303030305a200a2020202020202020636973636f496565653830323143666d563243617056313252303235345345204147454e542d4341504142494c49544945530a202020202020202020535550504f5254532049454545383032312d43464d2d56322d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.34|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d494554462d444843502d5345525645522d4d49422e0a20202020202020204c4153542d55504441544544203230303730323134313230305a200a2020202020202020636973636f49657466446863705365727665724361706162696c697479563632523030204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d494554462d444843502d5345525645522d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.35|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d494554462d444843502d5345525645522d4558542d4d49422e0a20202020202020204c4153542d55504441544544203230303730323134313230305a200a2020202020202020636973636f49657466446863705365727665724578744361706162696c697479563632523030204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d494554462d444843502d5345525645522d4558542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.36|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204449414c2d434f4e54524f4c2d4d49420a20202020202020204c4153542d5550444154454420393730393137303030305a200a2020202020202020636973636f496574664469616c436f6e74726f6c4361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d494554462d4449414c2d434f4e54524f4c2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.37|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220444c53572d4d49420a20202020202020204c4153542d5550444154454420393730323238303030305a200a2020202020202020636973636f49657466446c73774361706162696c697479563131523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320444c53572d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.38|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d494554462d4652522d4d494220202020202020200a20202020202020202020202d2d205265766973696f6e20686973746f72792e0a20202020202020200a20202020202020202020205245564953494f4e0a2020202020202020202020202020202020200a20202020202020204c4153542d555044415445440a2020202020202020636973636f496574664672724361706162696c697479563132523030323653204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d494554462d4652522d4d49420a
1.3.6.1.2.1.1.9.1.3.39|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204953444e2d4d49422028494554462052464332313237290a20202020202020204c4153542d5550444154454420393830363231303030305a200a2020202020202020636973636f496574664973646e4361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d494554462d4953444e2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.40|4x|0a20202020202020204167656e74206361706162696c697469657320666f72205443502d4d49420a20202020202020204c4153542d5550444154454420393631313237303030305a200a2020202020202020636973636f496574665463704361706162696c697479563131523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453205443502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.41|4x|0a20202020202020204d6f64696669636174696f6e206f66206c696e6b446f776e2074726170206f626a656374730a20202020202020200909616e642069664c6173744368616e6765206f626a6563740a20202020202020204c4153542d55504441544544203230303330313231303030305a200a2020202020202020636973636f49664361706162696c6974794672736d31325633523030204147454e542d4341504142494c49544945530a2020202020202020535550504f5254532049462d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.42|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d494d4147452d4d49420a20202020202020204c4153542d5550444154454420393530313235303030305a200a2020202020202020636973636f496d6167654d49424361706162696c697479563130523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d494d4147452d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.43|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d4953444e2d4d49420a20202020202020204c4153542d5550444154454420393530333130303030305a200a2020202020202020636973636f4973646e4361706162696c697479563130523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4953444e2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.44|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d4d4d41494c2d4449414c2d434f4e54524f4c2d4d49420a20202020202020204c4153542d5550444154454420393830363031303030305a200a2020202020202020636973636f4d656469614d61696c436f6e74726f6c4361706162696c697479563132523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d4d4d41494c2d4449414c2d434f4e54524f4c2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.45|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204d5344502d4d49420a20202020202020204c4153542d55504441544544203230303030383232303030305a200a2020202020202020636973636f4d7364704361706162696c69747956313252303154204147454e542d4341504142494c49544945530a2020202020202020535550504f5254532044524146542d4d5344502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.46|4x|0a2020202020202020546865206361706162696c6974696573206465736372697074696f6e206f6620434953434f2d4e41432d4e41442d4d49422e0a20202020202020204c4153542d55504441544544203230303831313130303030305a200a2020202020202020636973636f4e61634e61644361704361744f535630385230373031204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d4e41432d4e41442d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.47|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204e4f56454c4c2d4950582d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f4e6f76656c6c4970784361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204e4f56454c4c2d4950582d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.48|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204e4f56454c4c2d5249505341502d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f4e6f76656c6c5269705361704361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204e4f56454c4c2d5249505341502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.49|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220746865204f535046204d49422e0a20202020202020204c4153542d55504441544544203230303730343236303030305a200a2020202020202020636973636f4f7370664361706162696c6974795631325230323553204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f5350462d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.50|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220746865204f5350462054524150204d49422e0a20202020202020204c4153542d55504441544544203230303231313234303030305a200a2020202020202020636973636f4f737066547261704361706162696c6974795631325230323653204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f5350462d545241502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.51|4x|0a2020202020202020546865206361706162696c6974696573206465736372697074696f6e206f6620434953434f2d5041452d4d49422e0a20202020202020204c4153542d55504441544544203230303730373039303030305a200a2020202020202020636973636f5061654361704361744f535630385230363032204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d5041452d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.52|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d50494e472d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f50696e674361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d50494e472d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.53|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d504f52542d514f532d4d49420a20202020202020204c4153542d55504441544544203230303830393235303030305a200a2020202020202020636973636f506f7274516f734361706162696c69747956313252303235305345204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d504f52542d514f532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.54|4x|0a2020202020202020546865206361706162696c6974696573206465736372697074696f6e206f660a20202020202020202020202020202020504f5745522d45544845524e45542d4d49422e0a20202020202020204c4153542d55504441544544203230303730323038303030305a200a202020202020202063506f77657245746865726e65744361704361744f535630385230343031204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320504f5745522d45544845524e45542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.55|4x|0a2020202020202020546865206361706162696c6974696573206465736372697074696f6e206f660a20202020202020202020202020202020434953434f2d504f5745522d45544845524e45542d4558542d4d49422e0a20202020202020204c4153542d55504441544544203230303730363237303030305a200a202020202020202063506f7765724574684578744361704361744f535630385230363031204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d504f5745522d45544845524e45542d4558542d4d49420a202020202020202046696c65206e616d653a2073797320202020202020
1.3.6.1.2.1.1.9.1.3.56|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d50524f434553532d4d49420a20202020202020204c4153542d55504441544544203230303431313035303030305a200a2020202020202020636973636f50726f636573734361706162696c69747956313252303354204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d50524f434553532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.57|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520524643313231332d4d494220284d49422d4949290a20202020202020204c4153542d55504441544544203230303130393038313630305a200a2020202020202020636973636f524643313231334361706162696c697479563132523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313231332d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.58|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313233312d4d49422028546f6b656e2052696e67204d4942290a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313233314361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313233312d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.59|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313234332d4d494220284170706c6574616c6b204d4942290a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313234334361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313234332d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.60|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313238352d4d4942202846444449204d4942290a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313238354361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313238352d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.61|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313331352d4d494220284672616d652052656c6179204d4942290a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313331354361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313331352d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.62|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313338312d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313338314361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313338312d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.63|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313338322d4d49422028582e3235204d4942290a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313338324361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313338322d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.64|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313339382d4d4942202845746865726e6574204d4942292e0a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313339384361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313339382d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.65|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313430362d4d49422028445331204d4942290a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f524643313430364361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313430362d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.66|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313430372d4d49422028445333204d4942290a20202020202020204c4153542d5550444154454420393630363139303030305a200a2020202020202020636973636f524643313430374361706162696c697479563131523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313430372d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.67|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220524643313539352d4d49422028534f4e4554204d4942290a20202020202020204c4153542d5550444154454420393630373239303030305a200a2020202020202020636973636f524643313539354361706162696c697479563131523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320524643313539352d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.68|4x|0a20202020202020204167656e74206361706162696c697469657320666f722052532d3233322d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f52533233324361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f5254532052532d3233322d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.69|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d5254544d4f4e2d4d49420a20202020202020204c4153542d55504441544544203230303630333032303030305a200a2020202020202020636973636f5274744d6f6e4361704352533156335233204147454e542d4341504142494c49544945530a202020202020202020535550504f52545320434953434f2d5254544d4f4e2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.70|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520534c422d4d49420a20202020202020204c4153542d55504441544544203230303031303132303030305a200a2020202020202020636973636f536c624361706162696c697479563132523031204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d534c422d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.71|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d534e412d4c4c432d4d49420a20202020202020204c4153542d5550444154454420393530353130303030305a200a2020202020202020636973636f536e614c6c634361706162696c697479563131523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d534e412d4c4c432d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.72|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520534e412d53444c432d4d49420a20202020202020204c4153542d5550444154454420393530313233303030305a200a2020202020202020636973636f536e6153646c634361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320534e412d53444c432d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.73|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d534e415053484f542d4d49420a20202020202020204c4153542d5550444154454420393530313233303030305a200a2020202020202020636973636f536e617073686f744361706162696c697479563130523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d534e415053484f542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.74|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220534e4d5076322d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f536e6d7056324361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320534e4d5076322d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.75|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220534e4d5076322d50415254592d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f536e6d70563250617274794361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320534e4d5076322d50415254592d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.76|4x|0a2020202020202020546865204167656e74204361706162696c697469657320666f7220434953434f2d534f4e45542d4d49422e0a20202020202020200a20202020202020202020202020202d20636973636f536f6e65744578744178736d4361706162696c697479563252303020697320666f72200a2020202020202020202020202020202041544d205377697463682053657276696365204d6f64756c65284158534d292e0a20202020202020200a20202020202020202020202020202d20636973636f536f6e65744578744178736d4361706162696c697479563252313120697320666f72200a2020202020202020202020202020202041544d2053
1.3.6.1.2.1.1.9.1.3.77|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220534f555243452d524f5554494e472d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f536f75726365526f7574696e674361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320534f555243452d524f5554494e472d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.78|4x|0a2020202020202020496e697469616c2076657273696f6e206f662074686973204d4942206d6f64756c652e0a20202020202020204c4153542d55504441544544203230303030353236303030305a200a2020202020202020636973636f5372704361706162696c697479563132523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d5352502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.79|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d5443502d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a2020202020202020636973636f5463704361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d5443502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.80|4x|0a20202020202020204167656e74206361706162696c697469657320666f722074686520434953434f2d5443504f46464c4f41442d4d49420a20202020202020204c4153542d5550444154454420393730363233303030305a200a2020202020202020636973636f5463704f66666c6f61644361706162696c697479563131523032204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d5443504f46464c4f41442d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.81|4x|0a20202020202020204167656e74206361706162696c697469657320666f72205544502d4d49420a20202020202020204c4153542d5550444154454420393631313237303030305a200a2020202020202020636973636f5564704361706162696c697479563131523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453205544502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.82|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d56494e45532d4d49420a20202020202020204c4153542d5550444154454420393530343037303030305a200a2020202020202020636973636f56696e65734361706162696c697479563130523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d56494e45532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.83|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d564f4943452d414e414c4f472d49462d4d49420a20202020202020204c4153542d5550444154454420393730363135303030305a200a2020202020202020636973636f566f696365416e616c6f6749664361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d564f4943452d414e414c4f472d49462d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.84|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d564f4943452d4449414c2d434f4e54524f4c2d4d49420a20202020202020204c4153542d5550444154454420393930373132303030305a200a2020202020202020636973636f566f6963654469616c436f6e74726f6c4361706162696c697479563132523030204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d564f4943452d4449414c2d434f4e54524f4c2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.85|4x|0a20202020202020204167656e74206361706162696c697469657320666f7220434953434f2d564f4943452d49462d4d49420a20202020202020204c4153542d5550444154454420393730363135303030305a200a2020202020202020636973636f566f69636549664361706162696c697479563131523033204147454e542d4341504142494c49544945530a2020202020202020535550504f52545320434953434f2d564f4943452d49462d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.86|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204d504c532d4c53522d4d49422020202020202020202020202020202020202020202020204c4153542d55504441544544202020200a20202020202020204c4153542d55504441544544203230303130393031313230305a200a20202020202020206d706c734c73724d69624361706162696c6974795631325230204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204d504c532d4c53522d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.87|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204d504c532d54452d4d494220202020202020200a20202020202020202020202d2d205265766973696f6e20686973746f72792e0a20202020202020200a20202020202020202020205245564953494f4e0a2020202020202020202020202020202020200a20202020202020204c4153542d555044415445440a20202020202020206d706c7354654361706162696c697479563130523030204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204d504c532d54452d4d49420a202020202020202046696c65206e616d653a2073797320
1.3.6.1.2.1.1.9.1.3.88|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d4150504c4554414c4b2d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f4170706c6574616c6b4361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d4150504c4554414c4b2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.89|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d434841535349532d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f436861737369734361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d434841535349532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.90|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d4350552d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f4370754361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d4350552d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.91|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d4445434e45542d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f4445436e65744361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d4445434e45542d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.92|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d454e562d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f456e764361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d454e562d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.93|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d464c4153482d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f466c6173684361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d464c4153482d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.94|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d494e54455246414345532d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f49664361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d494e54455246414345532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.95|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d49502d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f49704361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d49502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.96|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d4d454d4f52592d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f4d656d6f72794361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d4d454d4f52592d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.97|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d4e4f56454c4c2d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f4e6f76656c6c4361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d4e4f56454c4c2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.98|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d53595354454d2d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f53797374656d4361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d53595354454d2d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.99|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d5443502d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f5463704361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d5443502d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.100|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d54532d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f54734361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d54532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.101|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d56494e45532d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f56696e65734361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d56494e45532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.3.102|4x|0a20202020202020204167656e74206361706162696c697469657320666f72204f4c442d434953434f2d584e532d4d49420a20202020202020204c4153542d5550444154454420393430383138303030305a200a20202020202020206f6c64436973636f586e734361706162696c697479563130523032204147454e542d4341504142494c49544945530a2020202020202020535550504f525453204f4c442d434953434f2d584e532d4d49420a202020202020202046696c65206e616d653a207379732020202020202020
1.3.6.1.2.1.1.9.1.4.1|67|0
1.3.6.1.2.1.1.9.1.4.2|67|0
1.3.6.1.2.1.1.9.1.4.3|67|0
1.3.6.1.2.1.1.9.1.4.4|67|0
1.3.6.1.2.1.1.9.1.4.5|67|0
1.3.6.1.2.1.1.9.1.4.6|67|0
1.3.6.1.2.1.1.9.1.4.7|67|0
1.3.6.1.2.1.1.9.1.4.8|67|0
1.3.6.1.2.1.1.9.1.4.9|67|0
1.3.6.1.2.1.1.9.1.4.10|67|0
1.3.6.1.2.1.1.9.1.4.11|67|0
1.3.6.1.2.1.1.9.1.4.12|67|0
1.3.6.1.2.1.1.9.1.4.13|67|0
1.3.6.1.2.1.1.9.1.4.14|67|0
1.3.6.1.2.1.1.9.1.4.15|67|0
1.3.6.1.2.1.1.9.1.4.16|67|0
1.3.6.1.2.1.1.9.1.4.17|67|0
1.3.6.1.2.1.1.9.1.4.18|67|0
1.3.6.1.2.1.1.9.1.4.19|67|0
1.3.6.1.2.1.1.9.1.4.20|67|0
1.3.6.1.2.1.1.9.1.4.21|67|0
1.3.6.1.2.1.1.9.1.4.22|67|0
1.3.6.1.2.1.1.9.1.4.23|67|0
1.3.6.1.2.1.1.9.1.4.24|67|0
1.3.6.1.2.1.1.9.1.4.25|67|0
1.3.6.1.2.1.1.9.1.4.26|67|0
1.3.6.1.2.1.1.9.1.4.27|67|0
1.3.6.1.2.1.1.9.1.4.28|67|0
1.3.6.1.2.1.1.9.1.4.29|67|0
1.3.6.1.2.1.1.9.1.4.30|67|0
1.3.6.1.2.1.1.9.1.4.31|67|0
1.3.6.1.2.1.1.9.1.4.32|67|0
1.3.6.1.2.1.1.9.1.4.33|67|0
1.3.6.1.2.1.1.9.1.4.34|67|0
1.3.6.1.2.1.1.9.1.4.35|67|0
1.3.6.1.2.1.1.9.1.4.36|67|0
1.3.6.1.2.1.1.9.1.4.37|67|0
1.3.6.1.2.1.1.9.1.4.38|67|0
1.3.6.1.2.1.1.9.1.4.39|67|0
1.3.6.1.2.1.1.9.1.4.40|67|0
1.3.6.1.2.1.1.9.1.4.41|67|0
1.3.6.1.2.1.1.9.1.4.42|67|0
1.3.6.1.2.1.1.9.1.4.43|67|0
1.3.6.1.2.1.1.9.1.4.44|67|0
1.3.6.1.2.1.1.9.1.4.45|67|0
1.3.6.1.2.1.1.9.1.4.46|67|0
1.3.6.1.2.1.1.9.1.4.47|67|0
1.3.6.1.2.1.1.9.1.4.48|67|0
1.3.6.1.2.1.1.9.1.4.49|67|0
1.3.6.1.2.1.1.9.1.4.50|67|0
1.3.6.1.2.1.1.9.1.4.51|67|0
1.3.6.1.2.1.1.9.1.4.52|67|0
1.3.6.1.2.1.1.9.1.4.53|67|0
1.3.6.1.2.1.1.9.1.4.54|67|0
1.3.6.1.2.1.1.9.1.4.55|67|0
1.3.6.1.2.1.1.9.1.4.56|67|0
1.3.6.1.2.1.1.9.1.4.57|67|0
1.3.6.1.2.1.1.9.1.4.58|67|0
1.3.6.1.2.1.1.9.1.4.59|67|0
1.3.6.1.2.1.1.9.1.4.60|67|0
1.3.6.1.2.1.1.9.1.4.61|67|0
1.3.6.1.2.1.1.9.1.4.62|67|0
1.3.6.1.2.1.1.9.1.4.63|67|0
1.3.6.1.2.1.1.9.1.4.64|67|0
1.3.6.1.2.1.1.9.1.4.65|67|0
1.3.6.1.2.1.1.9.1.4.66|67|0
1.3.6.1.2.1.1.9.1.4.67|67|0
1.3.6.1.2.1.1.9.1.4.68|67|0
1.3.6.1.2.1.1.9.1.4.69|67|0
1.3.6.1.2.1.1.9.1.4.70|67|0
1.3.6.1.2.1.1.9.1.4.71|67|0
1.3.6.1.2.1.1.9.1.4.72|67|0
1.3.6.1.2.1.1.9.1.4.73|67|0
1.3.6.1.2.1.1.9.1.4.74|67|0
1.3.6.1.2.1.1.9.1.4.75|67|0
1.3.6.1.2.1.1.9.1.4.76|67|0
1.3.6.1.2.1.1.9.1.4.77|67|0
1.3.6.1.2.1.1.9.1.4.78|67|0
1.3.6.1.2.1.1.9.1.4.79|67|0
1.3.6.1.2.1.1.9.1.4.80|67|0
1.3.6.1.2.1.1.9.1.4.81|67|0
1.3.6.1.2.1.1.9.1.4.82|67|0
1.3.6.1.2.1.1.9.1.4.83|67|0
1.3.6.1.2.1.1.9.1.4.84|67|0
1.3.6.1.2.1.1.9.1.4.85|67|0
1.3.6.1.2.1.1.9.1.4.86|67|0
1.3.6.1.2.1.1.9.1.4.87|67|0
1.3.6.1.2.1.1.9.1.4.88|67|0
1.3.6.1.2.1.1.9.1.4.89|67|0
1.3.6.1.2.1.1.9.1.4.90|67|0
1.3.6.1.2.1.1.9.1.4.91|67|0
1.3.6.1.2.1.1.9.1.4.92|67|0
1.3.6.1.2.1.1.9.1.4.93|67|0
1.3.6.1.2.1.1.9.1.4.94|67|0
1.3.6.1.2.1.1.9.1.4.95|67|0
1.3.6.1.2.1.1.9.1.4.96|67|0
1.3.6.1.2.1.1.9.1.4.97|67|0
1.3.6.1.2.1.1.9.1.4.98|67|0
1.3.6.1.2.1.1.9.1.4.99|67|0
1.3.6.1.2.1.1.9.1.4.100|67|0
1.3.6.1.2.1.1.9.1.4.101|67|0
1.3.6.1.2.1.1.9.1.4.102|67|0
1.3.6.1.2.1.2.1.0|2|59
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.60|2|60
1.3.6.1.2.1.2.2.1.1.70|2|70
1.3.6.1.2.1.2.2.1.1.5185|2|5185
1.3.6.1.2.1.2.2.1.1.5186|2|5186
1.3.6.1.2.1.2.2.1.1.5187|2|5187
1.3.6.1.2.1.2.2.1.1.11001|2|11001
1.3.6.1.2.1.2.2.1.1.11002|2|11002
1.3.6.1.2.1.2.2.1.1.11003|2|11003
1.3.6.1.2.1.2.2.1.1.11004|2|11004
1.3.6.1.2.1.2.2.1.1.11005|2|11005
1.3.6.1.2.1.2.2.1.1.11006|2|11006
1.3.6.1.2.1.2.2.1.1.11007|2|11007
1.3.6.1.2.1.2.2.1.1.11008|2|11008
1.3.6.1.2.1.2.2.1.1.11009|2|11009
1.3.6.1.2.1.2.2.1.1.11010|2|11010
1.3.6.1.2.1.2.2.1.1.11011|2|11011
1.3.6.1.2.1.2.2.1.1.11012|2|11012
1.3.6.1.2.1.2.2.1.1.11013|2|11013
1.3.6.1.2.1.2.2.1.1.11014|2|11014
1.3.6.1.2.1.2.2.1.1.11015|2|11015
1.3.6.1.2.1.2.2.1.1.11016|2|11016
1.3.6.1.2.1.2.2.1.1.11017|2|11017
1.3.6.1.2.1.2.2.1.1.11018|2|11018
1.3.6.1.2.1.2.2.1.1.11019|2|11019
1.3.6.1.2.1.2.2.1.1.11020|2|11020
1.3.6.1.2.1.2.2.1.1.11021|2|11021
1.3.6.1.2.1.2.2.1.1.11022|2|11022
1.3.6.1.2.1.2.2.1.1.11023|2|11023
1.3.6.1.2.1.2.2.1.1.11024|2|11024
1.3.6.1.2.1.2.2.1.1.11025|2|11025
1.3.6.1.2.1.2.2.1.1.11026|2|11026
1.3.6.1.2.1.2.2.1.1.11027|2|11027
1.3.6.1.2.1.2.2.1.1.11028|2|11028
1.3.6.1.2.1.2.2.1.1.11029|2|11029
1.3.6.1.2.1.2.2.1.1.11030|2|11030
1.3.6.1.2.1.2.2.1.1.11031|2|11031
1.3.6.1.2.1.2.2.1.1.11032|2|11032
1.3.6.1.2.1.2.2.1.1.11033|2|11033
1.3.6.1.2.1.2.2.1.1.11034|2|11034
1.3.6.1.2.1.2.2.1.1.11035|2|11035
1.3.6.1.2.1.2.2.1.1.11036|2|11036
1.3.6.1.2.1.2.2.1.1.11037|2|11037
1.3.6.1.2.1.2.2.1.1.11038|2|11038
1.3.6.1.2.1.2.2.1.1.11039|2|11039
1.3.6.1.2.1.2.2.1.1.11040|2|11040
1.3.6.1.2.1.2.2.1.1.11041|2|11041
1.3.6.1.2.1.2.2.1.1.11042|2|11042
1.3.6.1.2.1.2.2.1.1.11043|2|11043
1.3.6.1.2.1.2.2.1.1.11044|2|11044
1.3.6.1.2.1.2.2.1.1.11045|2|11045
1.3.6.1.2.1.2.2.1.1.11046|2|11046
1.3.6.1.2.1.2.2.1.1.11047|2|11047
1.3.6.1.2.1.2.2.1.1.11048|2|11048
1.3.6.1.2.1.2.2.1.1.11101|2|11101
1.3.6.1.2.1.2.2.1.1.11102|2|11102
1.3.6.1.2.1.2.2.1.1.11103|2|11103
1.3.6.1.2.1.2.2.1.1.11104|2|11104
1.3.6.1.2.1.2.2.1.1.14501|2|14501
1.3.6.1.2.1.2.2.1.2.1|4|Vlan1
1.3.6.1.2.1.2.2.1.2.60|4|Vlan60
1.3.6.1.2.1.2.2.1.2.70|4|Vlan70
1.3.6.1.2.1.2.2.1.2.5185|4|StackPort3
1.3.6.1.2.1.2.2.1.2.5186|4x|537461636b5375622d5374332d31
1.3.6.1.2.1.2.2.1.2.5187|4x|537461636b5375622d5374332d32
1.3.6.1.2.1.2.2.1.2.11001|4x|4661737445746865726e6574332f302f31
1.3.6.1.2.1.2.2.1.2.11002|4x|4661737445746865726e6574332f302f32
1.3.6.1.2.1.2.2.1.2.11003|4x|4661737445746865726e6574332f302f33
1.3.6.1.2.1.2.2.1.2.11004|4x|4661737445746865726e6574332f302f34
1.3.6.1.2.1.2.2.1.2.11005|4x|4661737445746865726e6574332f302f35
1.3.6.1.2.1.2.2.1.2.11006|4x|4661737445746865726e6574332f302f36
1.3.6.1.2.1.2.2.1.2.11007|4x|4661737445746865726e6574332f302f37
1.3.6.1.2.1.2.2.1.2.11008|4x|4661737445746865726e6574332f302f38
1.3.6.1.2.1.2.2.1.2.11009|4x|4661737445746865726e6574332f302f39
1.3.6.1.2.1.2.2.1.2.11010|4x|4661737445746865726e6574332f302f3130
1.3.6.1.2.1.2.2.1.2.11011|4x|4661737445746865726e6574332f302f3131
1.3.6.1.2.1.2.2.1.2.11012|4x|4661737445746865726e6574332f302f3132
1.3.6.1.2.1.2.2.1.2.11013|4x|4661737445746865726e6574332f302f3133
1.3.6.1.2.1.2.2.1.2.11014|4x|4661737445746865726e6574332f302f3134
1.3.6.1.2.1.2.2.1.2.11015|4x|4661737445746865726e6574332f302f3135
1.3.6.1.2.1.2.2.1.2.11016|4x|4661737445746865726e6574332f302f3136
1.3.6.1.2.1.2.2.1.2.11017|4x|4661737445746865726e6574332f302f3137
1.3.6.1.2.1.2.2.1.2.11018|4x|4661737445746865726e6574332f302f3138
1.3.6.1.2.1.2.2.1.2.11019|4x|4661737445746865726e6574332f302f3139
1.3.6.1.2.1.2.2.1.2.11020|4x|4661737445746865726e6574332f302f3230
1.3.6.1.2.1.2.2.1.2.11021|4x|4661737445746865726e6574332f302f3231
1.3.6.1.2.1.2.2.1.2.11022|4x|4661737445746865726e6574332f302f3232
1.3.6.1.2.1.2.2.1.2.11023|4x|4661737445746865726e6574332f302f3233
1.3.6.1.2.1.2.2.1.2.11024|4x|4661737445746865726e6574332f302f3234
1.3.6.1.2.1.2.2.1.2.11025|4x|4661737445746865726e6574332f302f3235
1.3.6.1.2.1.2.2.1.2.11026|4x|4661737445746865726e6574332f302f3236
1.3.6.1.2.1.2.2.1.2.11027|4x|4661737445746865726e6574332f302f3237
1.3.6.1.2.1.2.2.1.2.11028|4x|4661737445746865726e6574332f302f3238
1.3.6.1.2.1.2.2.1.2.11029|4x|4661737445746865726e6574332f302f3239
1.3.6.1.2.1.2.2.1.2.11030|4x|4661737445746865726e6574332f302f3330
1.3.6.1.2.1.2.2.1.2.11031|4x|4661737445746865726e6574332f302f3331
1.3.6.1.2.1.2.2.1.2.11032|4x|4661737445746865726e6574332f302f3332
1.3.6.1.2.1.2.2.1.2.11033|4x|4661737445746865726e6574332f302f3333
1.3.6.1.2.1.2.2.1.2.11034|4x|4661737445746865726e6574332f302f3334
1.3.6.1.2.1.2.2.1.2.11035|4x|4661737445746865726e6574332f302f3335
1.3.6.1.2.1.2.2.1.2.11036|4x|4661737445746865726e6574332f302f3336
1.3.6.1.2.1.2.2.1.2.11037|4x|4661737445746865726e6574332f302f3337
1.3.6.1.2.1.2.2.1.2.11038|4x|4661737445746865726e6574332f302f3338
1.3.6.1.2.1.2.2.1.2.11039|4x|4661737445746865726e6574332f302f3339
1.3.6.1.2.1.2.2.1.2.11040|4x|4661737445746865726e6574332f302f3430
1.3.6.1.2.1.2.2.1.2.11041|4x|4661737445746865726e6574332f302f3431
1.3.6.1.2.1.2.2.1.2.11042|4x|4661737445746865726e6574332f302f3432
1.3.6.1.2.1.2.2.1.2.11043|4x|4661737445746865726e6574332f302f3433
1.3.6.1.2.1.2.2.1.2.11044|4x|4661737445746865726e6574332f302f3434
1.3.6.1.2.1.2.2.1.2.11045|4x|4661737445746865726e6574332f302f3435
1.3.6.1.2.1.2.2.1.2.11046|4x|4661737445746865726e6574332f302f3436
1.3.6.1.2.1.2.2.1.2.11047|4x|4661737445746865726e6574332f302f3437
1.3.6.1.2.1.2.2.1.2.11048|4x|4661737445746865726e6574332f302f3438
1.3.6.1.2.1.2.2.1.2.11101|4x|4769676162697445746865726e6574332f302f31
1.3.6.1.2.1.2.2.1.2.11102|4x|4769676162697445746865726e6574332f302f32
1.3.6.1.2.1.2.2.1.2.11103|4x|4769676162697445746865726e6574332f302f33
1.3.6.1.2.1.2.2.1.2.11104|4x|4769676162697445746865726e6574332f302f34
1.3.6.1.2.1.2.2.1.2.14501|4|Null0
1.3.6.1.2.1.2.2.1.3.1|2|53
1.3.6.1.2.1.2.2.1.3.60|2|53
1.3.6.1.2.1.2.2.1.3.70|2|53
1.3.6.1.2.1.2.2.1.3.5185|2|53
1.3.6.1.2.1.2.2.1.3.5186|2|53
1.3.6.1.2.1.2.2.1.3.5187|2|53
1.3.6.1.2.1.2.2.1.3.11001|2|6
1.3.6.1.2.1.2.2.1.3.11002|2|6
1.3.6.1.2.1.2.2.1.3.11003|2|6
1.3.6.1.2.1.2.2.1.3.11004|2|6
1.3.6.1.2.1.2.2.1.3.11005|2|6
1.3.6.1.2.1.2.2.1.3.11006|2|6
1.3.6.1.2.1.2.2.1.3.11007|2|6
1.3.6.1.2.1.2.2.1.3.11008|2|6
1.3.6.1.2.1.2.2.1.3.11009|2|6
1.3.6.1.2.1.2.2.1.3.11010|2|6
1.3.6.1.2.1.2.2.1.3.11011|2|6
1.3.6.1.2.1.2.2.1.3.11012|2|6
1.3.6.1.2.1.2.2.1.3.11013|2|6
1.3.6.1.2.1.2.2.1.3.11014|2|6
1.3.6.1.2.1.2.2.1.3.11015|2|6
1.3.6.1.2.1.2.2.1.3.11016|2|6
1.3.6.1.2.1.2.2.1.3.11017|2|6
1.3.6.1.2.1.2.2.1.3.11018|2|6
1.3.6.1.2.1.2.2.1.3.11019|2|6
1.3.6.1.2.1.2.2.1.3.11020|2|6
1.3.6.1.2.1.2.2.1.3.11021|2|6
1.3.6.1.2.1.2.2.1.3.11022|2|6
1.3.6.1.2.1.2.2.1.3.11023|2|6
1.3.6.1.2.1.2.2.1.3.11024|2|6
1.3.6.1.2.1.2.2.1.3.11025|2|6
1.3.6.1.2.1.2.2.1.3.11026|2|6
1.3.6.1.2.1.2.2.1.3.11027|2|6
1.3.6.1.2.1.2.2.1.3.11028|2|6
1.3.6.1.2.1.2.2.1.3.11029|2|6
1.3.6.1.2.1.2.2.1.3.11030|2|6
1.3.6.1.2.1.2.2.1.3.11031|2|6
1.3.6.1.2.1.2.2.1.3.11032|2|6
1.3.6.1.2.1.2.2.1.3.11033|2|6
1.3.6.1.2.1.2.2.1.3.11034|2|6
1.3.6.1.2.1.2.2.1.3.11035|2|6
1.3.6.1.2.1.2.2.1.3.11036|2|6
1.3.6.1.2.1.2.2.1.3.11037|2|6
1.3.6.1.2.1.2.2.1.3.11038|2|6
1.3.6.1.2.1.2.2.1.3.11039|2|6
1.3.6.1.2.1.2.2.1.3.11040|2|6
1.3.6.1.2.1.2.2.1.3.11041|2|6
1.3.6.1.2.1.2.2.1.3.11042|2|6
1.3.6.1.2.1.2.2.1.3.11043|2|6
1.3.6.1.2.1.2.2.1.3.11044|2|6
1.3.6.1.2.1.2.2.1.3.11045|2|6
1.3.6.1.2.1.2.2.1.3.11046|2|6
1.3.6.1.2.1.2.2.1.3.11047|2|6
1.3.6.1.2.1.2.2.1.3.11048|2|6
1.3.6.1.2.1.2.2.1.3.11101|2|6
1.3.6.1.2.1.2.2.1.3.11102|2|6
1.3.6.1.2.1.2.2.1.3.11103|2|6
1.3.6.1.2.1.2.2.1.3.11104|2|6
1.3.6.1.2.1.2.2.1.3.14501|2|1
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.60|2|1500
1.3.6.1.2.1.2.2.1.4.70|2|1500
1.3.6.1.2.1.2.2.1.4.5185|2|0
1.3.6.1.2.1.2.2.1.4.11001|2|1500
1.3.6.1.2.1.2.2.1.4.11002|2|1500
1.3.6.1.2.1.2.2.1.4.11003|2|1500
1.3.6.1.2.1.2.2.1.4.11004|2|1500
1.3.6.1.2.1.2.2.1.4.11005|2|1500
1.3.6.1.2.1.2.2.1.4.11006|2|1500
1.3.6.1.2.1.2.2.1.4.11007|2|1500
1.3.6.1.2.1.2.2.1.4.11008|2|1500
1.3.6.1.2.1.2.2.1.4.11009|2|1500
1.3.6.1.2.1.2.2.1.4.11010|2|1500
1.3.6.1.2.1.2.2.1.4.11011|2|1500
1.3.6.1.2.1.2.2.1.4.11012|2|1500
1.3.6.1.2.1.2.2.1.4.11013|2|1500
1.3.6.1.2.1.2.2.1.4.11014|2|1500
1.3.6.1.2.1.2.2.1.4.11015|2|1500
1.3.6.1.2.1.2.2.1.4.11016|2|1500
1.3.6.1.2.1.2.2.1.4.11017|2|1500
1.3.6.1.2.1.2.2.1.4.11018|2|1500
1.3.6.1.2.1.2.2.1.4.11019|2|1500
1.3.6.1.2.1.2.2.1.4.11020|2|1500
1.3.6.1.2.1.2.2.1.4.11021|2|1500
1.3.6.1.2.1.2.2.1.4.11022|2|1500
1.3.6.1.2.1.2.2.1.4.11023|2|1500
1.3.6.1.2.1.2.2.1.4.11024|2|1500
1.3.6.1.2.1.2.2.1.4.11025|2|1500
1.3.6.1.2.1.2.2.1.4.11026|2|1500
1.3.6.1.2.1.2.2.1.4.11027|2|1500
1.3.6.1.2.1.2.2.1.4.11028|2|1500
1.3.6.1.2.1.2.2.1.4.11029|2|1500
1.3.6.1.2.1.2.2.1.4.11030|2|1500
1.3.6.1.2.1.2.2.1.4.11031|2|1500
1.3.6.1.2.1.2.2.1.4.11032|2|1500
1.3.6.1.2.1.2.2.1.4.11033|2|1500
1.3.6.1.2.1.2.2.1.4.11034|2|1500
1.3.6.1.2.1.2.2.1.4.11035|2|1500
1.3.6.1.2.1.2.2.1.4.11036|2|1500
1.3.6.1.2.1.2.2.1.4.11037|2|1500
1.3.6.1.2.1.2.2.1.4.11038|2|1500
1.3.6.1.2.1.2.2.1.4.11039|2|1500
1.3.6.1.2.1.2.2.1.4.11040|2|1500
1.3.6.1.2.1.2.2.1.4.11041|2|1500
1.3.6.1.2.1.2.2.1.4.11042|2|1500
1.3.6.1.2.1.2.2.1.4.11043|2|1500
1.3.6.1.2.1.2.2.1.4.11044|2|1500
1.3.6.1.2.1.2.2.1.4.11045|2|1500
1.3.6.1.2.1.2.2.1.4.11046|2|1500
1.3.6.1.2.1.2.2.1.4.11047|2|1500
1.3.6.1.2.1.2.2.1.4.11048|2|1500
1.3.6.1.2.1.2.2.1.4.11101|2|1500
1.3.6.1.2.1.2.2.1.4.11102|2|1500
1.3.6.1.2.1.2.2.1.4.11103|2|1500
1.3.6.1.2.1.2.2.1.4.11104|2|1500
1.3.6.1.2.1.2.2.1.4.14501|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|1000000000
1.3.6.1.2.1.2.2.1.5.60|66|1000000000
1.3.6.1.2.1.2.2.1.5.70|66|1000000000
1.3.6.1.2.1.2.2.1.5.5185|66|0
1.3.6.1.2.1.2.2.1.5.5186|66|0
1.3.6.1.2.1.2.2.1.5.5187|66|0
1.3.6.1.2.1.2.2.1.5.11001|66|10000000
1.3.6.1.2.1.2.2.1.5.11002|66|10000000
1.3.6.1.2.1.2.2.1.5.11003|66|100000000
1.3.6.1.2.1.2.2.1.5.11004|66|10000000
1.3.6.1.2.1.2.2.1.5.11005|66|10000000
1.3.6.1.2.1.2.2.1.5.11006|66|100000000
1.3.6.1.2.1.2.2.1.5.11007|66|100000000
1.3.6.1.2.1.2.2.1.5.11008|66|10000000
1.3.6.1.2.1.2.2.1.5.11009|66|100000000
1.3.6.1.2.1.2.2.1.5.11010|66|100000000
1.3.6.1.2.1.2.2.1.5.11011|66|100000000
1.3.6.1.2.1.2.2.1.5.11012|66|10000000
1.3.6.1.2.1.2.2.1.5.11013|66|10000000
1.3.6.1.2.1.2.2.1.5.11014|66|10000000
1.3.6.1.2.1.2.2.1.5.11015|66|10000000
1.3.6.1.2.1.2.2.1.5.11016|66|10000000
1.3.6.1.2.1.2.2.1.5.11017|66|10000000
1.3.6.1.2.1.2.2.1.5.11018|66|10000000
1.3.6.1.2.1.2.2.1.5.11019|66|10000000
1.3.6.1.2.1.2.2.1.5.11020|66|10000000
1.3.6.1.2.1.2.2.1.5.11021|66|10000000
1.3.6.1.2.1.2.2.1.5.11022|66|10000000
1.3.6.1.2.1.2.2.1.5.11023|66|10000000
1.3.6.1.2.1.2.2.1.5.11024|66|10000000
1.3.6.1.2.1.2.2.1.5.11025|66|10000000
1.3.6.1.2.1.2.2.1.5.11026|66|10000000
1.3.6.1.2.1.2.2.1.5.11027|66|10000000
1.3.6.1.2.1.2.2.1.5.11028|66|10000000
1.3.6.1.2.1.2.2.1.5.11029|66|10000000
1.3.6.1.2.1.2.2.1.5.11030|66|10000000
1.3.6.1.2.1.2.2.1.5.11031|66|10000000
1.3.6.1.2.1.2.2.1.5.11032|66|10000000
1.3.6.1.2.1.2.2.1.5.11033|66|10000000
1.3.6.1.2.1.2.2.1.5.11034|66|10000000
1.3.6.1.2.1.2.2.1.5.11035|66|10000000
1.3.6.1.2.1.2.2.1.5.11036|66|10000000
1.3.6.1.2.1.2.2.1.5.11037|66|10000000
1.3.6.1.2.1.2.2.1.5.11038|66|10000000
1.3.6.1.2.1.2.2.1.5.11039|66|100000000
1.3.6.1.2.1.2.2.1.5.11040|66|100000000
1.3.6.1.2.1.2.2.1.5.11041|66|100000000
1.3.6.1.2.1.2.2.1.5.11042|66|100000000
1.3.6.1.2.1.2.2.1.5.11043|66|100000000
1.3.6.1.2.1.2.2.1.5.11044|66|10000000
1.3.6.1.2.1.2.2.1.5.11045|66|100000000
1.3.6.1.2.1.2.2.1.5.11046|66|10000000
1.3.6.1.2.1.2.2.1.5.11047|66|10000000
1.3.6.1.2.1.2.2.1.5.11048|66|100000000
1.3.6.1.2.1.2.2.1.5.11101|66|10000000
1.3.6.1.2.1.2.2.1.5.11102|66|10000000
1.3.6.1.2.1.2.2.1.5.11103|66|10000000
1.3.6.1.2.1.2.2.1.5.11104|66|10000000
1.3.6.1.2.1.2.2.1.5.14501|66|4294967295
1.3.6.1.2.1.2.2.1.6.1|4x|0016c7026ec0
1.3.6.1.2.1.2.2.1.6.60|4x|0016c7026ec1
1.3.6.1.2.1.2.2.1.6.70|4x|0016c7026ec2
1.3.6.1.2.1.2.2.1.6.5185|4|
1.3.6.1.2.1.2.2.1.6.5186|4|
1.3.6.1.2.1.2.2.1.6.5187|4|
1.3.6.1.2.1.2.2.1.6.11001|4x|0016c7026e83
1.3.6.1.2.1.2.2.1.6.11002|4x|0016c7026e84
1.3.6.1.2.1.2.2.1.6.11003|4x|0016c7026e85
1.3.6.1.2.1.2.2.1.6.11004|4x|0016c7026e86
1.3.6.1.2.1.2.2.1.6.11005|4x|0016c7026e87
1.3.6.1.2.1.2.2.1.6.11006|4x|0016c7026e88
1.3.6.1.2.1.2.2.1.6.11007|4x|0016c7026e89
1.3.6.1.2.1.2.2.1.6.11008|4x|0016c7026e8a
1.3.6.1.2.1.2.2.1.6.11009|4x|0016c7026e8b
1.3.6.1.2.1.2.2.1.6.11010|4x|0016c7026e8c
1.3.6.1.2.1.2.2.1.6.11011|4x|0016c7026e8d
1.3.6.1.2.1.2.2.1.6.11012|4x|0016c7026e8e
1.3.6.1.2.1.2.2.1.6.11013|4x|0016c7026e8f
1.3.6.1.2.1.2.2.1.6.11014|4x|0016c7026e90
1.3.6.1.2.1.2.2.1.6.11015|4x|0016c7026e91
1.3.6.1.2.1.2.2.1.6.11016|4x|0016c7026e92
1.3.6.1.2.1.2.2.1.6.11017|4x|0016c7026e93
1.3.6.1.2.1.2.2.1.6.11018|4x|0016c7026e94
1.3.6.1.2.1.2.2.1.6.11019|4x|0016c7026e95
1.3.6.1.2.1.2.2.1.6.11020|4x|0016c7026e96
1.3.6.1.2.1.2.2.1.6.11021|4x|0016c7026e97
1.3.6.1.2.1.2.2.1.6.11022|4x|0016c7026e98
1.3.6.1.2.1.2.2.1.6.11023|4x|0016c7026e99
1.3.6.1.2.1.2.2.1.6.11024|4x|0016c7026e9a
1.3.6.1.2.1.2.2.1.6.11025|4x|0016c7026e9d
1.3.6.1.2.1.2.2.1.6.11026|4x|0016c7026e9e
1.3.6.1.2.1.2.2.1.6.11027|4x|0016c7026e9f
1.3.6.1.2.1.2.2.1.6.11028|4x|0016c7026ea0
1.3.6.1.2.1.2.2.1.6.11029|4x|0016c7026ea1
1.3.6.1.2.1.2.2.1.6.11030|4x|0016c7026ea2
1.3.6.1.2.1.2.2.1.6.11031|4x|0016c7026ea3
1.3.6.1.2.1.2.2.1.6.11032|4x|0016c7026ea4
1.3.6.1.2.1.2.2.1.6.11033|4x|0016c7026ea5
1.3.6.1.2.1.2.2.1.6.11034|4x|0016c7026ea6
1.3.6.1.2.1.2.2.1.6.11035|4x|0016c7026ea7
1.3.6.1.2.1.2.2.1.6.11036|4x|0016c7026ea8
1.3.6.1.2.1.2.2.1.6.11037|4x|0016c7026ea9
1.3.6.1.2.1.2.2.1.6.11038|4x|0016c7026eaa
1.3.6.1.2.1.2.2.1.6.11039|4x|0016c7026eab
1.3.6.1.2.1.2.2.1.6.11040|4x|0016c7026eac
1.3.6.1.2.1.2.2.1.6.11041|4x|0016c7026ead
1.3.6.1.2.1.2.2.1.6.11042|4x|0016c7026eae
1.3.6.1.2.1.2.2.1.6.11043|4x|0016c7026eaf
1.3.6.1.2.1.2.2.1.6.11044|4x|0016c7026eb0
1.3.6.1.2.1.2.2.1.6.11045|4x|0016c7026eb1
1.3.6.1.2.1.2.2.1.6.11046|4x|0016c7026eb2
1.3.6.1.2.1.2.2.1.6.11047|4x|0016c7026eb3
1.3.6.1.2.1.2.2.1.6.11048|4x|0016c7026eb4
1.3.6.1.2.1.2.2.1.6.11101|4x|0016c7026e81
1.3.6.1.2.1.2.2.1.6.11102|4x|0016c7026e82
1.3.6.1.2.1.2.2.1.6.11103|4x|0016c7026e9b
1.3.6.1.2.1.2.2.1.6.11104|4x|0016c7026e9c
1.3.6.1.2.1.2.2.1.6.14501|4|
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.60|2|1
1.3.6.1.2.1.2.2.1.7.70|2|1
1.3.6.1.2.1.2.2.1.7.5185|2|1
1.3.6.1.2.1.2.2.1.7.5186|2|2
1.3.6.1.2.1.2.2.1.7.5187|2|2
1.3.6.1.2.1.2.2.1.7.11001|2|1
1.3.6.1.2.1.2.2.1.7.11002|2|1
1.3.6.1.2.1.2.2.1.7.11003|2|1
1.3.6.1.2.1.2.2.1.7.11004|2|1
1.3.6.1.2.1.2.2.1.7.11005|2|1
1.3.6.1.2.1.2.2.1.7.11006|2|1
1.3.6.1.2.1.2.2.1.7.11007|2|1
1.3.6.1.2.1.2.2.1.7.11008|2|1
1.3.6.1.2.1.2.2.1.7.11009|2|1
1.3.6.1.2.1.2.2.1.7.11010|2|1
1.3.6.1.2.1.2.2.1.7.11011|2|1
1.3.6.1.2.1.2.2.1.7.11012|2|1
1.3.6.1.2.1.2.2.1.7.11013|2|1
1.3.6.1.2.1.2.2.1.7.11014|2|1
1.3.6.1.2.1.2.2.1.7.11015|2|1
1.3.6.1.2.1.2.2.1.7.11016|2|1
1.3.6.1.2.1.2.2.1.7.11017|2|1
1.3.6.1.2.1.2.2.1.7.11018|2|1
1.3.6.1.2.1.2.2.1.7.11019|2|1
1.3.6.1.2.1.2.2.1.7.11020|2|1
1.3.6.1.2.1.2.2.1.7.11021|2|1
1.3.6.1.2.1.2.2.1.7.11022|2|1
1.3.6.1.2.1.2.2.1.7.11023|2|1
1.3.6.1.2.1.2.2.1.7.11024|2|1
1.3.6.1.2.1.2.2.1.7.11025|2|1
1.3.6.1.2.1.2.2.1.7.11026|2|1
1.3.6.1.2.1.2.2.1.7.11027|2|1
1.3.6.1.2.1.2.2.1.7.11028|2|1
1.3.6.1.2.1.2.2.1.7.11029|2|1
1.3.6.1.2.1.2.2.1.7.11030|2|1
1.3.6.1.2.1.2.2.1.7.11031|2|1
1.3.6.1.2.1.2.2.1.7.11032|2|1
1.3.6.1.2.1.2.2.1.7.11033|2|1
1.3.6.1.2.1.2.2.1.7.11034|2|1
1.3.6.1.2.1.2.2.1.7.11035|2|1
1.3.6.1.2.1.2.2.1.7.11036|2|1
1.3.6.1.2.1.2.2.1.7.11037|2|1
1.3.6.1.2.1.2.2.1.7.11038|2|1
1.3.6.1.2.1.2.2.1.7.11039|2|1
1.3.6.1.2.1.2.2.1.7.11040|2|1
1.3.6.1.2.1.2.2.1.7.11041|2|1
1.3.6.1.2.1.2.2.1.7.11042|2|1
1.3.6.1.2.1.2.2.1.7.11043|2|1
1.3.6.1.2.1.2.2.1.7.11044|2|1
1.3.6.1.2.1.2.2.1.7.11045|2|1
1.3.6.1.2.1.2.2.1.7.11046|2|2
1.3.6.1.2.1.2.2.1.7.11047|2|2
1.3.6.1.2.1.2.2.1.7.11048|2|1
1.3.6.1.2.1.2.2.1.7.11101|2|1
1.3.6.1.2.1.2.2.1.7.11102|2|1
1.3.6.1.2.1.2.2.1.7.11103|2|1
1.3.6.1.2.1.2.2.1.7.11104|2|1
1.3.6.1.2.1.2.2.1.7.14501|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.60|2|1
1.3.6.1.2.1.2.2.1.8.70|2|2
1.3.6.1.2.1.2.2.1.8.5185|2|2
1.3.6.1.2.1.2.2.1.8.5186|2|2
1.3.6.1.2.1.2.2.1.8.5187|2|2
1.3.6.1.2.1.2.2.1.8.11001|2|2
1.3.6.1.2.1.2.2.1.8.11002|2|2
1.3.6.1.2.1.2.2.1.8.11003|2|1
1.3.6.1.2.1.2.2.1.8.11004|2|2
1.3.6.1.2.1.2.2.1.8.11005|2|2
1.3.6.1.2.1.2.2.1.8.11006|2|2
1.3.6.1.2.1.2.2.1.8.11007|2|1
1.3.6.1.2.1.2.2.1.8.11008|2|2
1.3.6.1.2.1.2.2.1.8.11009|2|1
1.3.6.1.2.1.2.2.1.8.11010|2|2
1.3.6.1.2.1.2.2.1.8.11011|2|1
1.3.6.1.2.1.2.2.1.8.11012|2|2
1.3.6.1.2.1.2.2.1.8.11013|2|2
1.3.6.1.2.1.2.2.1.8.11014|2|2
1.3.6.1.2.1.2.2.1.8.11015|2|2
1.3.6.1.2.1.2.2.1.8.11016|2|2
1.3.6.1.2.1.2.2.1.8.11017|2|2
1.3.6.1.2.1.2.2.1.8.11018|2|2
1.3.6.1.2.1.2.2.1.8.11019|2|2
1.3.6.1.2.1.2.2.1.8.11020|2|2
1.3.6.1.2.1.2.2.1.8.11021|2|2
1.3.6.1.2.1.2.2.1.8.11022|2|2
1.3.6.1.2.1.2.2.1.8.11023|2|2
1.3.6.1.2.1.2.2.1.8.11024|2|2
1.3.6.1.2.1.2.2.1.8.11025|2|2
1.3.6.1.2.1.2.2.1.8.11026|2|2
1.3.6.1.2.1.2.2.1.8.11027|2|2
1.3.6.1.2.1.2.2.1.8.11028|2|2
1.3.6.1.2.1.2.2.1.8.11029|2|2
1.3.6.1.2.1.2.2.1.8.11030|2|2
1.3.6.1.2.1.2.2.1.8.11031|2|2
1.3.6.1.2.1.2.2.1.8.11032|2|2
1.3.6.1.2.1.2.2.1.8.11033|2|2
1.3.6.1.2.1.2.2.1.8.11034|2|2
1.3.6.1.2.1.2.2.1.8.11035|2|2
1.3.6.1.2.1.2.2.1.8.11036|2|2
1.3.6.1.2.1.2.2.1.8.11037|2|2
1.3.6.1.2.1.2.2.1.8.11038|2|2
1.3.6.1.2.1.2.2.1.8.11039|2|2
1.3.6.1.2.1.2.2.1.8.11040|2|2
1.3.6.1.2.1.2.2.1.8.11041|2|2
1.3.6.1.2.1.2.2.1.8.11042|2|2
1.3.6.1.2.1.2.2.1.8.11043|2|1
1.3.6.1.2.1.2.2.1.8.11044|2|2
1.3.6.1.2.1.2.2.1.8.11045|2|2
1.3.6.1.2.1.2.2.1.8.11046|2|2
1.3.6.1.2.1.2.2.1.8.11047|2|2
1.3.6.1.2.1.2.2.1.8.11048|2|1
1.3.6.1.2.1.2.2.1.8.11101|2|2
1.3.6.1.2.1.2.2.1.8.11102|2|2
1.3.6.1.2.1.2.2.1.8.11103|2|2
1.3.6.1.2.1.2.2.1.8.11104|2|2
1.3.6.1.2.1.2.2.1.8.14501|2|1
1.3.6.1.2.1.2.2.1.9.1|67|171299051
1.3.6.1.2.1.2.2.1.9.60|67|13024
1.3.6.1.2.1.2.2.1.9.70|67|9881
1.3.6.1.2.1.2.2.1.9.5185|67|8320
1.3.6.1.2.1.2.2.1.9.5186|67|6586368
1.3.6.1.2.1.2.2.1.9.5187|67|6586368
1.3.6.1.2.1.2.2.1.9.11001|67|9775
1.3.6.1.2.1.2.2.1.9.11002|67|9776
1.3.6.1.2.1.2.2.1.9.11003|67|661665372
1.3.6.1.2.1.2.2.1.9.11004|67|9776
1.3.6.1.2.1.2.2.1.9.11005|67|9776
1.3.6.1.2.1.2.2.1.9.11006|67|30425125
1.3.6.1.2.1.2.2.1.9.11007|67|10083
1.3.6.1.2.1.2.2.1.9.11008|67|9776
1.3.6.1.2.1.2.2.1.9.11009|67|10083
1.3.6.1.2.1.2.2.1.9.11010|67|542082273
1.3.6.1.2.1.2.2.1.9.11011|67|489367008
1.3.6.1.2.1.2.2.1.9.11012|67|9776
1.3.6.1.2.1.2.2.1.9.11013|67|9776
1.3.6.1.2.1.2.2.1.9.11014|67|9776
1.3.6.1.2.1.2.2.1.9.11015|67|9776
1.3.6.1.2.1.2.2.1.9.11016|67|9776
1.3.6.1.2.1.2.2.1.9.11017|67|9776
1.3.6.1.2.1.2.2.1.9.11018|67|9776
1.3.6.1.2.1.2.2.1.9.11019|67|9776
1.3.6.1.2.1.2.2.1.9.11020|67|9776
1.3.6.1.2.1.2.2.1.9.11021|67|9776
1.3.6.1.2.1.2.2.1.9.11022|67|9776
1.3.6.1.2.1.2.2.1.9.11023|67|9776
1.3.6.1.2.1.2.2.1.9.11024|67|9776
1.3.6.1.2.1.2.2.1.9.11025|67|9776
1.3.6.1.2.1.2.2.1.9.11026|67|9776
1.3.6.1.2.1.2.2.1.9.11027|67|9776
1.3.6.1.2.1.2.2.1.9.11028|67|9776
1.3.6.1.2.1.2.2.1.9.11029|67|9776
1.3.6.1.2.1.2.2.1.9.11030|67|9776
1.3.6.1.2.1.2.2.1.9.11031|67|9776
1.3.6.1.2.1.2.2.1.9.11032|67|9776
1.3.6.1.2.1.2.2.1.9.11033|67|9777
1.3.6.1.2.1.2.2.1.9.11034|67|9777
1.3.6.1.2.1.2.2.1.9.11035|67|9777
1.3.6.1.2.1.2.2.1.9.11036|67|9777
1.3.6.1.2.1.2.2.1.9.11037|67|9777
1.3.6.1.2.1.2.2.1.9.11038|67|9777
1.3.6.1.2.1.2.2.1.9.11039|67|119273258
1.3.6.1.2.1.2.2.1.9.11040|67|58891456
1.3.6.1.2.1.2.2.1.9.11041|67|454893128
1.3.6.1.2.1.2.2.1.9.11042|67|697201785
1.3.6.1.2.1.2.2.1.9.11043|67|9363089
1.3.6.1.2.1.2.2.1.9.11044|67|9777
1.3.6.1.2.1.2.2.1.9.11045|67|231215256
1.3.6.1.2.1.2.2.1.9.11046|67|9465
1.3.6.1.2.1.2.2.1.9.11047|67|9465
1.3.6.1.2.1.2.2.1.9.11048|67|171296147
1.3.6.1.2.1.2.2.1.9.11101|67|9775
1.3.6.1.2.1.2.2.1.9.11102|67|9775
1.3.6.1.2.1.2.2.1.9.11103|67|9776
1.3.6.1.2.1.2.2.1.9.11104|67|9776
1.3.6.1.2.1.2.2.1.9.14501|67|0
1.3.6.1.2.1.2.2.1.10.1|65|39857997
1.3.6.1.2.1.2.2.1.10.60|65|3146057210
1.3.6.1.2.1.2.2.1.10.70|65|0
1.3.6.1.2.1.2.2.1.10.5185|65|0
1.3.6.1.2.1.2.2.1.10.11001|65|0
1.3.6.1.2.1.2.2.1.10.11002|65|0
1.3.6.1.2.1.2.2.1.10.11003|65|4003269187
1.3.6.1.2.1.2.2.1.10.11004|65|0
1.3.6.1.2.1.2.2.1.10.11005|65|0
1.3.6.1.2.1.2.2.1.10.11006|65|4106741
1.3.6.1.2.1.2.2.1.10.11007|65|1179544868
1.3.6.1.2.1.2.2.1.10.11008|65|0
1.3.6.1.2.1.2.2.1.10.11009|65|771533076
1.3.6.1.2.1.2.2.1.10.11010|65|129828299
1.3.6.1.2.1.2.2.1.10.11011|65|245940830
1.3.6.1.2.1.2.2.1.10.11012|65|0
1.3.6.1.2.1.2.2.1.10.11013|65|0
1.3.6.1.2.1.2.2.1.10.11014|65|0
1.3.6.1.2.1.2.2.1.10.11015|65|0
1.3.6.1.2.1.2.2.1.10.11016|65|0
1.3.6.1.2.1.2.2.1.10.11017|65|0
1.3.6.1.2.1.2.2.1.10.11018|65|0
1.3.6.1.2.1.2.2.1.10.11019|65|0
1.3.6.1.2.1.2.2.1.10.11020|65|0
1.3.6.1.2.1.2.2.1.10.11021|65|0
1.3.6.1.2.1.2.2.1.10.11022|65|0
1.3.6.1.2.1.2.2.1.10.11023|65|0
1.3.6.1.2.1.2.2.1.10.11024|65|0
1.3.6.1.2.1.2.2.1.10.11025|65|0
1.3.6.1.2.1.2.2.1.10.11026|65|0
1.3.6.1.2.1.2.2.1.10.11027|65|0
1.3.6.1.2.1.2.2.1.10.11028|65|0
1.3.6.1.2.1.2.2.1.10.11029|65|0
1.3.6.1.2.1.2.2.1.10.11030|65|0
1.3.6.1.2.1.2.2.1.10.11031|65|0
1.3.6.1.2.1.2.2.1.10.11032|65|0
1.3.6.1.2.1.2.2.1.10.11033|65|0
1.3.6.1.2.1.2.2.1.10.11034|65|0
1.3.6.1.2.1.2.2.1.10.11035|65|0
1.3.6.1.2.1.2.2.1.10.11036|65|0
1.3.6.1.2.1.2.2.1.10.11037|65|0
1.3.6.1.2.1.2.2.1.10.11038|65|0
1.3.6.1.2.1.2.2.1.10.11039|65|384704
1.3.6.1.2.1.2.2.1.10.11040|65|110733015
1.3.6.1.2.1.2.2.1.10.11041|65|117152
1.3.6.1.2.1.2.2.1.10.11042|65|714870979
1.3.6.1.2.1.2.2.1.10.11043|65|151083822
1.3.6.1.2.1.2.2.1.10.11044|65|0
1.3.6.1.2.1.2.2.1.10.11045|65|743743
1.3.6.1.2.1.2.2.1.10.11046|65|0
1.3.6.1.2.1.2.2.1.10.11047|65|0
1.3.6.1.2.1.2.2.1.10.11048|65|30785350
1.3.6.1.2.1.2.2.1.10.11101|65|0
1.3.6.1.2.1.2.2.1.10.11102|65|0
1.3.6.1.2.1.2.2.1.10.11103|65|0
1.3.6.1.2.1.2.2.1.10.11104|65|0
1.3.6.1.2.1.2.2.1.10.14501|65|0
1.3.6.1.2.1.2.2.1.11.1|65|225085
1.3.6.1.2.1.2.2.1.11.60|65|356458022
1.3.6.1.2.1.2.2.1.11.70|65|0
1.3.6.1.2.1.2.2.1.11.5185|65|0
1.3.6.1.2.1.2.2.1.11.11001|65|0
1.3.6.1.2.1.2.2.1.11.11002|65|0
1.3.6.1.2.1.2.2.1.11.11003|65|44862353
1.3.6.1.2.1.2.2.1.11.11004|65|0
1.3.6.1.2.1.2.2.1.11.11005|65|0
1.3.6.1.2.1.2.2.1.11.11006|65|12001
1.3.6.1.2.1.2.2.1.11.11007|65|3569848
1.3.6.1.2.1.2.2.1.11.11008|65|0
1.3.6.1.2.1.2.2.1.11.11009|65|371265
1.3.6.1.2.1.2.2.1.11.11010|65|2023957
1.3.6.1.2.1.2.2.1.11.11011|65|3616559
1.3.6.1.2.1.2.2.1.11.11012|65|0
1.3.6.1.2.1.2.2.1.11.11013|65|0
1.3.6.1.2.1.2.2.1.11.11014|65|0
1.3.6.1.2.1.2.2.1.11.11015|65|0
1.3.6.1.2.1.2.2.1.11.11016|65|0
1.3.6.1.2.1.2.2.1.11.11017|65|0
1.3.6.1.2.1.2.2.1.11.11018|65|0
1.3.6.1.2.1.2.2.1.11.11019|65|0
1.3.6.1.2.1.2.2.1.11.11020|65|0
1.3.6.1.2.1.2.2.1.11.11021|65|0
1.3.6.1.2.1.2.2.1.11.11022|65|0
1.3.6.1.2.1.2.2.1.11.11023|65|0
1.3.6.1.2.1.2.2.1.11.11024|65|0
1.3.6.1.2.1.2.2.1.11.11025|65|0
1.3.6.1.2.1.2.2.1.11.11026|65|0
1.3.6.1.2.1.2.2.1.11.11027|65|0
1.3.6.1.2.1.2.2.1.11.11028|65|0
1.3.6.1.2.1.2.2.1.11.11029|65|0
1.3.6.1.2.1.2.2.1.11.11030|65|0
1.3.6.1.2.1.2.2.1.11.11031|65|0
1.3.6.1.2.1.2.2.1.11.11032|65|0
1.3.6.1.2.1.2.2.1.11.11033|65|0
1.3.6.1.2.1.2.2.1.11.11034|65|0
1.3.6.1.2.1.2.2.1.11.11035|65|0
1.3.6.1.2.1.2.2.1.11.11036|65|0
1.3.6.1.2.1.2.2.1.11.11037|65|0
1.3.6.1.2.1.2.2.1.11.11038|65|0
1.3.6.1.2.1.2.2.1.11.11039|65|0
1.3.6.1.2.1.2.2.1.11.11040|65|207284
1.3.6.1.2.1.2.2.1.11.11041|65|759
1.3.6.1.2.1.2.2.1.11.11042|65|2529480
1.3.6.1.2.1.2.2.1.11.11043|65|685275
1.3.6.1.2.1.2.2.1.11.11044|65|0
1.3.6.1.2.1.2.2.1.11.11045|65|3666
1.3.6.1.2.1.2.2.1.11.11046|65|0
1.3.6.1.2.1.2.2.1.11.11047|65|0
1.3.6.1.2.1.2.2.1.11.11048|65|326169775
1.3.6.1.2.1.2.2.1.11.11101|65|0
1.3.6.1.2.1.2.2.1.11.11102|65|0
1.3.6.1.2.1.2.2.1.11.11103|65|0
1.3.6.1.2.1.2.2.1.11.11104|65|0
1.3.6.1.2.1.2.2.1.11.14501|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.60|65|168915
1.3.6.1.2.1.2.2.1.13.70|65|0
1.3.6.1.2.1.2.2.1.13.5185|65|0
1.3.6.1.2.1.2.2.1.13.11001|65|0
1.3.6.1.2.1.2.2.1.13.11002|65|0
1.3.6.1.2.1.2.2.1.13.11003|65|0
1.3.6.1.2.1.2.2.1.13.11004|65|0
1.3.6.1.2.1.2.2.1.13.11005|65|0
1.3.6.1.2.1.2.2.1.13.11006|65|0
1.3.6.1.2.1.2.2.1.13.11007|65|0
1.3.6.1.2.1.2.2.1.13.11008|65|0
1.3.6.1.2.1.2.2.1.13.11009|65|0
1.3.6.1.2.1.2.2.1.13.11010|65|0
1.3.6.1.2.1.2.2.1.13.11011|65|0
1.3.6.1.2.1.2.2.1.13.11012|65|0
1.3.6.1.2.1.2.2.1.13.11013|65|0
1.3.6.1.2.1.2.2.1.13.11014|65|0
1.3.6.1.2.1.2.2.1.13.11015|65|0
1.3.6.1.2.1.2.2.1.13.11016|65|0
1.3.6.1.2.1.2.2.1.13.11017|65|0
1.3.6.1.2.1.2.2.1.13.11018|65|0
1.3.6.1.2.1.2.2.1.13.11019|65|0
1.3.6.1.2.1.2.2.1.13.11020|65|0
1.3.6.1.2.1.2.2.1.13.11021|65|0
1.3.6.1.2.1.2.2.1.13.11022|65|0
1.3.6.1.2.1.2.2.1.13.11023|65|0
1.3.6.1.2.1.2.2.1.13.11024|65|0
1.3.6.1.2.1.2.2.1.13.11025|65|0
1.3.6.1.2.1.2.2.1.13.11026|65|0
1.3.6.1.2.1.2.2.1.13.11027|65|0
1.3.6.1.2.1.2.2.1.13.11028|65|0
1.3.6.1.2.1.2.2.1.13.11029|65|0
1.3.6.1.2.1.2.2.1.13.11030|65|0
1.3.6.1.2.1.2.2.1.13.11031|65|0
1.3.6.1.2.1.2.2.1.13.11032|65|0
1.3.6.1.2.1.2.2.1.13.11033|65|0
1.3.6.1.2.1.2.2.1.13.11034|65|0
1.3.6.1.2.1.2.2.1.13.11035|65|0
1.3.6.1.2.1.2.2.1.13.11036|65|0
1.3.6.1.2.1.2.2.1.13.11037|65|0
1.3.6.1.2.1.2.2.1.13.11038|65|0
1.3.6.1.2.1.2.2.1.13.11039|65|0
1.3.6.1.2.1.2.2.1.13.11040|65|0
1.3.6.1.2.1.2.2.1.13.11041|65|0
1.3.6.1.2.1.2.2.1.13.11042|65|0
1.3.6.1.2.1.2.2.1.13.11043|65|0
1.3.6.1.2.1.2.2.1.13.11044|65|0
1.3.6.1.2.1.2.2.1.13.11045|65|0
1.3.6.1.2.1.2.2.1.13.11046|65|0
1.3.6.1.2.1.2.2.1.13.11047|65|0
1.3.6.1.2.1.2.2.1.13.11048|65|0
1.3.6.1.2.1.2.2.1.13.11101|65|0
1.3.6.1.2.1.2.2.1.13.11102|65|0
1.3.6.1.2.1.2.2.1.13.11103|65|0
1.3.6.1.2.1.2.2.1.13.11104|65|0
1.3.6.1.2.1.2.2.1.13.14501|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.60|65|0
1.3.6.1.2.1.2.2.1.14.70|65|0
1.3.6.1.2.1.2.2.1.14.5185|65|0
1.3.6.1.2.1.2.2.1.14.11001|65|0
1.3.6.1.2.1.2.2.1.14.11002|65|0
1.3.6.1.2.1.2.2.1.14.11003|65|2
1.3.6.1.2.1.2.2.1.14.11004|65|0
1.3.6.1.2.1.2.2.1.14.11005|65|0
1.3.6.1.2.1.2.2.1.14.11006|65|0
1.3.6.1.2.1.2.2.1.14.11007|65|0
1.3.6.1.2.1.2.2.1.14.11008|65|0
1.3.6.1.2.1.2.2.1.14.11009|65|0
1.3.6.1.2.1.2.2.1.14.11010|65|0
1.3.6.1.2.1.2.2.1.14.11011|65|1
1.3.6.1.2.1.2.2.1.14.11012|65|0
1.3.6.1.2.1.2.2.1.14.11013|65|0
1.3.6.1.2.1.2.2.1.14.11014|65|0
1.3.6.1.2.1.2.2.1.14.11015|65|0
1.3.6.1.2.1.2.2.1.14.11016|65|0
1.3.6.1.2.1.2.2.1.14.11017|65|0
1.3.6.1.2.1.2.2.1.14.11018|65|0
1.3.6.1.2.1.2.2.1.14.11019|65|0
1.3.6.1.2.1.2.2.1.14.11020|65|0
1.3.6.1.2.1.2.2.1.14.11021|65|0
1.3.6.1.2.1.2.2.1.14.11022|65|0
1.3.6.1.2.1.2.2.1.14.11023|65|0
1.3.6.1.2.1.2.2.1.14.11024|65|0
1.3.6.1.2.1.2.2.1.14.11025|65|0
1.3.6.1.2.1.2.2.1.14.11026|65|0
1.3.6.1.2.1.2.2.1.14.11027|65|0
1.3.6.1.2.1.2.2.1.14.11028|65|0
1.3.6.1.2.1.2.2.1.14.11029|65|0
1.3.6.1.2.1.2.2.1.14.11030|65|0
1.3.6.1.2.1.2.2.1.14.11031|65|0
1.3.6.1.2.1.2.2.1.14.11032|65|0
1.3.6.1.2.1.2.2.1.14.11033|65|0
1.3.6.1.2.1.2.2.1.14.11034|65|0
1.3.6.1.2.1.2.2.1.14.11035|65|0
1.3.6.1.2.1.2.2.1.14.11036|65|0
1.3.6.1.2.1.2.2.1.14.11037|65|0
1.3.6.1.2.1.2.2.1.14.11038|65|0
1.3.6.1.2.1.2.2.1.14.11039|65|0
1.3.6.1.2.1.2.2.1.14.11040|65|0
1.3.6.1.2.1.2.2.1.14.11041|65|0
1.3.6.1.2.1.2.2.1.14.11042|65|16
1.3.6.1.2.1.2.2.1.14.11043|65|0
1.3.6.1.2.1.2.2.1.14.11044|65|0
1.3.6.1.2.1.2.2.1.14.11045|65|0
1.3.6.1.2.1.2.2.1.14.11046|65|0
1.3.6.1.2.1.2.2.1.14.11047|65|0
1.3.6.1.2.1.2.2.1.14.11048|65|1
1.3.6.1.2.1.2.2.1.14.11101|65|0
1.3.6.1.2.1.2.2.1.14.11102|65|0
1.3.6.1.2.1.2.2.1.14.11103|65|0
1.3.6.1.2.1.2.2.1.14.11104|65|0
1.3.6.1.2.1.2.2.1.14.14501|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.60|65|71543
1.3.6.1.2.1.2.2.1.15.70|65|0
1.3.6.1.2.1.2.2.1.15.5185|65|0
1.3.6.1.2.1.2.2.1.15.11001|65|0
1.3.6.1.2.1.2.2.1.15.11002|65|0
1.3.6.1.2.1.2.2.1.15.11003|65|0
1.3.6.1.2.1.2.2.1.15.11004|65|0
1.3.6.1.2.1.2.2.1.15.11005|65|0
1.3.6.1.2.1.2.2.1.15.11006|65|0
1.3.6.1.2.1.2.2.1.15.11007|65|0
1.3.6.1.2.1.2.2.1.15.11008|65|0
1.3.6.1.2.1.2.2.1.15.11009|65|0
1.3.6.1.2.1.2.2.1.15.11010|65|0
1.3.6.1.2.1.2.2.1.15.11011|65|0
1.3.6.1.2.1.2.2.1.15.11012|65|0
1.3.6.1.2.1.2.2.1.15.11013|65|0
1.3.6.1.2.1.2.2.1.15.11014|65|0
1.3.6.1.2.1.2.2.1.15.11015|65|0
1.3.6.1.2.1.2.2.1.15.11016|65|0
1.3.6.1.2.1.2.2.1.15.11017|65|0
1.3.6.1.2.1.2.2.1.15.11018|65|0
1.3.6.1.2.1.2.2.1.15.11019|65|0
1.3.6.1.2.1.2.2.1.15.11020|65|0
1.3.6.1.2.1.2.2.1.15.11021|65|0
1.3.6.1.2.1.2.2.1.15.11022|65|0
1.3.6.1.2.1.2.2.1.15.11023|65|0
1.3.6.1.2.1.2.2.1.15.11024|65|0
1.3.6.1.2.1.2.2.1.15.11025|65|0
1.3.6.1.2.1.2.2.1.15.11026|65|0
1.3.6.1.2.1.2.2.1.15.11027|65|0
1.3.6.1.2.1.2.2.1.15.11028|65|0
1.3.6.1.2.1.2.2.1.15.11029|65|0
1.3.6.1.2.1.2.2.1.15.11030|65|0
1.3.6.1.2.1.2.2.1.15.11031|65|0
1.3.6.1.2.1.2.2.1.15.11032|65|0
1.3.6.1.2.1.2.2.1.15.11033|65|0
1.3.6.1.2.1.2.2.1.15.11034|65|0
1.3.6.1.2.1.2.2.1.15.11035|65|0
1.3.6.1.2.1.2.2.1.15.11036|65|0
1.3.6.1.2.1.2.2.1.15.11037|65|0
1.3.6.1.2.1.2.2.1.15.11038|65|0
1.3.6.1.2.1.2.2.1.15.11039|65|0
1.3.6.1.2.1.2.2.1.15.11040|65|0
1.3.6.1.2.1.2.2.1.15.11041|65|0
1.3.6.1.2.1.2.2.1.15.11042|65|0
1.3.6.1.2.1.2.2.1.15.11043|65|0
1.3.6.1.2.1.2.2.1.15.11044|65|0
1.3.6.1.2.1.2.2.1.15.11045|65|0
1.3.6.1.2.1.2.2.1.15.11046|65|0
1.3.6.1.2.1.2.2.1.15.11047|65|0
1.3.6.1.2.1.2.2.1.15.11048|65|0
1.3.6.1.2.1.2.2.1.15.11101|65|0
1.3.6.1.2.1.2.2.1.15.11102|65|0
1.3.6.1.2.1.2.2.1.15.11103|65|0
1.3.6.1.2.1.2.2.1.15.11104|65|0
1.3.6.1.2.1.2.2.1.15.14501|65|0
1.3.6.1.2.1.2.2.1.16.1|65|0
1.3.6.1.2.1.2.2.1.16.60|65|1115946897
1.3.6.1.2.1.2.2.1.16.70|65|0
1.3.6.1.2.1.2.2.1.16.5185|65|0
1.3.6.1.2.1.2.2.1.16.11001|65|0
1.3.6.1.2.1.2.2.1.16.11002|65|0
1.3.6.1.2.1.2.2.1.16.11003|65|2031951093
1.3.6.1.2.1.2.2.1.16.11004|65|0
1.3.6.1.2.1.2.2.1.16.11005|65|0
1.3.6.1.2.1.2.2.1.16.11006|65|54002210
1.3.6.1.2.1.2.2.1.16.11007|65|4178805181
1.3.6.1.2.1.2.2.1.16.11008|65|0
1.3.6.1.2.1.2.2.1.16.11009|65|2865466552
1.3.6.1.2.1.2.2.1.16.11010|65|1563135607
1.3.6.1.2.1.2.2.1.16.11011|65|2159480956
1.3.6.1.2.1.2.2.1.16.11012|65|0
1.3.6.1.2.1.2.2.1.16.11013|65|0
1.3.6.1.2.1.2.2.1.16.11014|65|0
1.3.6.1.2.1.2.2.1.16.11015|65|0
1.3.6.1.2.1.2.2.1.16.11016|65|0
1.3.6.1.2.1.2.2.1.16.11017|65|0
1.3.6.1.2.1.2.2.1.16.11018|65|0
1.3.6.1.2.1.2.2.1.16.11019|65|0
1.3.6.1.2.1.2.2.1.16.11020|65|0
1.3.6.1.2.1.2.2.1.16.11021|65|0
1.3.6.1.2.1.2.2.1.16.11022|65|0
1.3.6.1.2.1.2.2.1.16.11023|65|0
1.3.6.1.2.1.2.2.1.16.11024|65|0
1.3.6.1.2.1.2.2.1.16.11025|65|0
1.3.6.1.2.1.2.2.1.16.11026|65|0
1.3.6.1.2.1.2.2.1.16.11027|65|0
1.3.6.1.2.1.2.2.1.16.11028|65|0
1.3.6.1.2.1.2.2.1.16.11029|65|0
1.3.6.1.2.1.2.2.1.16.11030|65|0
1.3.6.1.2.1.2.2.1.16.11031|65|0
1.3.6.1.2.1.2.2.1.16.11032|65|0
1.3.6.1.2.1.2.2.1.16.11033|65|0
1.3.6.1.2.1.2.2.1.16.11034|65|0
1.3.6.1.2.1.2.2.1.16.11035|65|0
1.3.6.1.2.1.2.2.1.16.11036|65|0
1.3.6.1.2.1.2.2.1.16.11037|65|0
1.3.6.1.2.1.2.2.1.16.11038|65|0
1.3.6.1.2.1.2.2.1.16.11039|65|466227
1.3.6.1.2.1.2.2.1.16.11040|65|168102415
1.3.6.1.2.1.2.2.1.16.11041|65|453462
1.3.6.1.2.1.2.2.1.16.11042|65|1573906484
1.3.6.1.2.1.2.2.1.16.11043|65|1929564654
1.3.6.1.2.1.2.2.1.16.11044|65|0
1.3.6.1.2.1.2.2.1.16.11045|65|1923497
1.3.6.1.2.1.2.2.1.16.11046|65|0
1.3.6.1.2.1.2.2.1.16.11047|65|0
1.3.6.1.2.1.2.2.1.16.11048|65|3600028831
1.3.6.1.2.1.2.2.1.16.11101|65|0
1.3.6.1.2.1.2.2.1.16.11102|65|0
1.3.6.1.2.1.2.2.1.16.11103|65|0
1.3.6.1.2.1.2.2.1.16.11104|65|0
1.3.6.1.2.1.2.2.1.16.14501|65|0
1.3.6.1.2.1.2.2.1.17.1|65|0
1.3.6.1.2.1.2.2.1.17.60|65|373746454
1.3.6.1.2.1.2.2.1.17.70|65|0
1.3.6.1.2.1.2.2.1.17.5185|65|0
1.3.6.1.2.1.2.2.1.17.11001|65|0
1.3.6.1.2.1.2.2.1.17.11002|65|0
1.3.6.1.2.1.2.2.1.17.11003|65|66547535
1.3.6.1.2.1.2.2.1.17.11004|65|0
1.3.6.1.2.1.2.2.1.17.11005|65|0
1.3.6.1.2.1.2.2.1.17.11006|65|78211
1.3.6.1.2.1.2.2.1.17.11007|65|42187908
1.3.6.1.2.1.2.2.1.17.11008|65|0
1.3.6.1.2.1.2.2.1.17.11009|65|38338643
1.3.6.1.2.1.2.2.1.17.11010|65|37965687
1.3.6.1.2.1.2.2.1.17.11011|65|40812048
1.3.6.1.2.1.2.2.1.17.11012|65|0
1.3.6.1.2.1.2.2.1.17.11013|65|0
1.3.6.1.2.1.2.2.1.17.11014|65|0
1.3.6.1.2.1.2.2.1.17.11015|65|0
1.3.6.1.2.1.2.2.1.17.11016|65|0
1.3.6.1.2.1.2.2.1.17.11017|65|0
1.3.6.1.2.1.2.2.1.17.11018|65|0
1.3.6.1.2.1.2.2.1.17.11019|65|0
1.3.6.1.2.1.2.2.1.17.11020|65|0
1.3.6.1.2.1.2.2.1.17.11021|65|0
1.3.6.1.2.1.2.2.1.17.11022|65|0
1.3.6.1.2.1.2.2.1.17.11023|65|0
1.3.6.1.2.1.2.2.1.17.11024|65|0
1.3.6.1.2.1.2.2.1.17.11025|65|0
1.3.6.1.2.1.2.2.1.17.11026|65|0
1.3.6.1.2.1.2.2.1.17.11027|65|0
1.3.6.1.2.1.2.2.1.17.11028|65|0
1.3.6.1.2.1.2.2.1.17.11029|65|0
1.3.6.1.2.1.2.2.1.17.11030|65|0
1.3.6.1.2.1.2.2.1.17.11031|65|0
1.3.6.1.2.1.2.2.1.17.11032|65|0
1.3.6.1.2.1.2.2.1.17.11033|65|0
1.3.6.1.2.1.2.2.1.17.11034|65|0
1.3.6.1.2.1.2.2.1.17.11035|65|0
1.3.6.1.2.1.2.2.1.17.11036|65|0
1.3.6.1.2.1.2.2.1.17.11037|65|0
1.3.6.1.2.1.2.2.1.17.11038|65|0
1.3.6.1.2.1.2.2.1.17.11039|65|742
1.3.6.1.2.1.2.2.1.17.11040|65|366845
1.3.6.1.2.1.2.2.1.17.11041|65|730
1.3.6.1.2.1.2.2.1.17.11042|65|1819659
1.3.6.1.2.1.2.2.1.17.11043|65|2844704
1.3.6.1.2.1.2.2.1.17.11044|65|0
1.3.6.1.2.1.2.2.1.17.11045|65|4913
1.3.6.1.2.1.2.2.1.17.11046|65|0
1.3.6.1.2.1.2.2.1.17.11047|65|0
1.3.6.1.2.1.2.2.1.17.11048|65|424469581
1.3.6.1.2.1.2.2.1.17.11101|65|0
1.3.6.1.2.1.2.2.1.17.11102|65|0
1.3.6.1.2.1.2.2.1.17.11103|65|0
1.3.6.1.2.1.2.2.1.17.11104|65|0
1.3.6.1.2.1.2.2.1.17.14501|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.60|65|0
1.3.6.1.2.1.2.2.1.19.70|65|0
1.3.6.1.2.1.2.2.1.19.5185|65|0
1.3.6.1.2.1.2.2.1.19.11001|65|0
1.3.6.1.2.1.2.2.1.19.11002|65|0
1.3.6.1.2.1.2.2.1.19.11003|65|0
1.3.6.1.2.1.2.2.1.19.11004|65|0
1.3.6.1.2.1.2.2.1.19.11005|65|0
1.3.6.1.2.1.2.2.1.19.11006|65|0
1.3.6.1.2.1.2.2.1.19.11007|65|0
1.3.6.1.2.1.2.2.1.19.11008|65|0
1.3.6.1.2.1.2.2.1.19.11009|65|0
1.3.6.1.2.1.2.2.1.19.11010|65|1429
1.3.6.1.2.1.2.2.1.19.11011|65|1076
1.3.6.1.2.1.2.2.1.19.11012|65|0
1.3.6.1.2.1.2.2.1.19.11013|65|0
1.3.6.1.2.1.2.2.1.19.11014|65|0
1.3.6.1.2.1.2.2.1.19.11015|65|0
1.3.6.1.2.1.2.2.1.19.11016|65|0
1.3.6.1.2.1.2.2.1.19.11017|65|0
1.3.6.1.2.1.2.2.1.19.11018|65|0
1.3.6.1.2.1.2.2.1.19.11019|65|0
1.3.6.1.2.1.2.2.1.19.11020|65|0
1.3.6.1.2.1.2.2.1.19.11021|65|0
1.3.6.1.2.1.2.2.1.19.11022|65|0
1.3.6.1.2.1.2.2.1.19.11023|65|0
1.3.6.1.2.1.2.2.1.19.11024|65|0
1.3.6.1.2.1.2.2.1.19.11025|65|0
1.3.6.1.2.1.2.2.1.19.11026|65|0
1.3.6.1.2.1.2.2.1.19.11027|65|0
1.3.6.1.2.1.2.2.1.19.11028|65|0
1.3.6.1.2.1.2.2.1.19.11029|65|0
1.3.6.1.2.1.2.2.1.19.11030|65|0
1.3.6.1.2.1.2.2.1.19.11031|65|0
1.3.6.1.2.1.2.2.1.19.11032|65|0
1.3.6.1.2.1.2.2.1.19.11033|65|0
1.3.6.1.2.1.2.2.1.19.11034|65|0
1.3.6.1.2.1.2.2.1.19.11035|65|0
1.3.6.1.2.1.2.2.1.19.11036|65|0
1.3.6.1.2.1.2.2.1.19.11037|65|0
1.3.6.1.2.1.2.2.1.19.11038|65|0
1.3.6.1.2.1.2.2.1.19.11039|65|0
1.3.6.1.2.1.2.2.1.19.11040|65|0
1.3.6.1.2.1.2.2.1.19.11041|65|0
1.3.6.1.2.1.2.2.1.19.11042|65|358
1.3.6.1.2.1.2.2.1.19.11043|65|0
1.3.6.1.2.1.2.2.1.19.11044|65|0
1.3.6.1.2.1.2.2.1.19.11045|65|0
1.3.6.1.2.1.2.2.1.19.11046|65|0
1.3.6.1.2.1.2.2.1.19.11047|65|0
1.3.6.1.2.1.2.2.1.19.11048|65|24692
1.3.6.1.2.1.2.2.1.19.11101|65|0
1.3.6.1.2.1.2.2.1.19.11102|65|0
1.3.6.1.2.1.2.2.1.19.11103|65|0
1.3.6.1.2.1.2.2.1.19.11104|65|0
1.3.6.1.2.1.2.2.1.19.14501|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.60|65|0
1.3.6.1.2.1.2.2.1.20.70|65|0
1.3.6.1.2.1.2.2.1.20.5185|65|0
1.3.6.1.2.1.2.2.1.20.11001|65|0
1.3.6.1.2.1.2.2.1.20.11002|65|0
1.3.6.1.2.1.2.2.1.20.11003|65|0
1.3.6.1.2.1.2.2.1.20.11004|65|0
1.3.6.1.2.1.2.2.1.20.11005|65|0
1.3.6.1.2.1.2.2.1.20.11006|65|0
1.3.6.1.2.1.2.2.1.20.11007|65|0
1.3.6.1.2.1.2.2.1.20.11008|65|0
1.3.6.1.2.1.2.2.1.20.11009|65|0
1.3.6.1.2.1.2.2.1.20.11010|65|0
1.3.6.1.2.1.2.2.1.20.11011|65|0
1.3.6.1.2.1.2.2.1.20.11012|65|0
1.3.6.1.2.1.2.2.1.20.11013|65|0
1.3.6.1.2.1.2.2.1.20.11014|65|0
1.3.6.1.2.1.2.2.1.20.11015|65|0
1.3.6.1.2.1.2.2.1.20.11016|65|0
1.3.6.1.2.1.2.2.1.20.11017|65|0
1.3.6.1.2.1.2.2.1.20.11018|65|0
1.3.6.1.2.1.2.2.1.20.11019|65|0
1.3.6.1.2.1.2.2.1.20.11020|65|0
1.3.6.1.2.1.2.2.1.20.11021|65|0
1.3.6.1.2.1.2.2.1.20.11022|65|0
1.3.6.1.2.1.2.2.1.20.11023|65|0
1.3.6.1.2.1.2.2.1.20.11024|65|0
1.3.6.1.2.1.2.2.1.20.11025|65|0
1.3.6.1.2.1.2.2.1.20.11026|65|0
1.3.6.1.2.1.2.2.1.20.11027|65|0
1.3.6.1.2.1.2.2.1.20.11028|65|0
1.3.6.1.2.1.2.2.1.20.11029|65|0
1.3.6.1.2.1.2.2.1.20.11030|65|0
1.3.6.1.2.1.2.2.1.20.11031|65|0
1.3.6.1.2.1.2.2.1.20.11032|65|0
1.3.6.1.2.1.2.2.1.20.11033|65|0
1.3.6.1.2.1.2.2.1.20.11034|65|0
1.3.6.1.2.1.2.2.1.20.11035|65|0
1.3.6.1.2.1.2.2.1.20.11036|65|0
1.3.6.1.2.1.2.2.1.20.11037|65|0
1.3.6.1.2.1.2.2.1.20.11038|65|0
1.3.6.1.2.1.2.2.1.20.11039|65|0
1.3.6.1.2.1.2.2.1.20.11040|65|0
1.3.6.1.2.1.2.2.1.20.11041|65|0
1.3.6.1.2.1.2.2.1.20.11042|65|0
1.3.6.1.2.1.2.2.1.20.11043|65|0
1.3.6.1.2.1.2.2.1.20.11044|65|0
1.3.6.1.2.1.2.2.1.20.11045|65|0
1.3.6.1.2.1.2.2.1.20.11046|65|0
1.3.6.1.2.1.2.2.1.20.11047|65|0
1.3.6.1.2.1.2.2.1.20.11048|65|0
1.3.6.1.2.1.2.2.1.20.11101|65|0
1.3.6.1.2.1.2.2.1.20.11102|65|0
1.3.6.1.2.1.2.2.1.20.11103|65|0
1.3.6.1.2.1.2.2.1.20.11104|65|0
1.3.6.1.2.1.2.2.1.20.14501|65|0
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.1|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.10|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.16|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.61|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.105|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.117|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.118|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.120|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.125|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.158|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.159|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.183|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.184|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.88.227|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.89.182|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.89.184|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.89.203|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.20|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.21|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.22|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.23|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.24|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.25|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.26|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.29|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.30|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.31|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.32|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.33|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.34|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.36|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.37|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.40|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.41|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.42|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.44|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.45|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.46|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.48|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.49|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.50|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.51|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.52|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.53|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.54|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.55|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.57|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.58|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.60|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.61|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.62|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.63|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.64|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.67|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.72|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.73|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.77|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.85|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.87|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.88|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.90|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.111|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.200|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.201|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.202|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.205|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.206|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.207|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.210|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.213|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.215|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.216|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.220|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.221|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.223|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.224|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.226|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.229|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.231|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.235|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.242|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.90.243|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.91.20|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.91.50|2|60
1.3.6.1.2.1.3.1.1.1.60.1.10.204.91.52|2|60
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.1|4x|001f12304700
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.10|4x|6899cda59fc1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.16|4x|0016c7026ec1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.61|4x|005056a40ea2
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.105|4x|005056bf6e15
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.117|4x|58493ba04010
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.118|4x|58493b9e8d10
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.120|4x|00187d18a2a9
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.125|4x|00187d224ac1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.158|4x|005056bf534b
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.159|4x|00155d3a0810
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.183|4x|0cc47a5600c1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.184|4x|0cc47a57c165
1.3.6.1.2.1.3.1.1.2.60.1.10.204.88.227|4x|00187d29c3b6
1.3.6.1.2.1.3.1.1.2.60.1.10.204.89.182|4x|00187d24d552
1.3.6.1.2.1.3.1.1.2.60.1.10.204.89.184|4x|00187d24d53a
1.3.6.1.2.1.3.1.1.2.60.1.10.204.89.203|4x|005056b23ac1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.20|4x|005056b70baf
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.21|4x|d49a200e0e04
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.22|4x|001a4a223915
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.23|4x|005056bf794c
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.24|4x|001a4a223913
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.25|4x|005056bf6323
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.26|4x|005056bf585f
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.29|4x|005056b70eb7
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.30|4x|c4b301c77f59
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.31|4x|000c295a23a1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.32|4x|005056a42b0b
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.33|4x|005056bf60b0
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.34|4x|005056866910
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.36|4x|28cfe95749db
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.37|4x|38ff3601ccb0
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.40|4x|005056a42b2d
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.41|4x|005056b2395f
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.42|4x|005056864be6
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.44|4x|005056b70a11
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.45|4x|005056bf3ead
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.46|4x|005056b7175f
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.48|4x|00082f25f602
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.49|4x|00505683571d
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.50|4x|005056a4761f
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.51|4x|005056993eae
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.52|4x|005056862777
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.53|4x|005056b73de1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.54|4x|001a4a1811c3
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.55|4x|005056a41b89
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.57|4x|002186f4a731
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.58|4x|005056bf21a1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.60|4x|002186f5d6ae
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.61|4x|005056b73de1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.62|4x|005056bf6d30
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.63|4x|005056b82e27
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.64|4x|005056bf3d82
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.67|4x|005056bf34b5
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.72|4x|005056bf74cb
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.73|4x|005056bf7261
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.77|4x|00505686083c
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.85|4x|005056a46531
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.87|4x|005056a46d8b
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.88|4x|001a4a223914
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.90|4x|005056866c78
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.111|4x|005056990c79
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.200|4x|001a4a181186
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.201|4x|005056bf559f
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.202|4x|7c7a91d21cb1
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.205|4x|005056bf0d32
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.206|4x|28d244aff72e
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.207|4x|005056bf2f3d
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.210|4x|005056a45c5d
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.213|4x|005056bf4559
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.215|4x|0050568630de
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.216|4x|00505686656f
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.220|4x|00505683a0bd
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.221|4x|00505686454b
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.223|4x|001a4a181196
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.224|4x|001a4a181169
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.226|4x|6c881435d6d8
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.229|4x|005056bf1588
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.231|4x|005056831b9d
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.235|4x|a8d0e53d1d80
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.242|4x|005056a45434
1.3.6.1.2.1.3.1.1.2.60.1.10.204.90.243|4x|68f728d98f9a
1.3.6.1.2.1.3.1.1.2.60.1.10.204.91.20|4x|00304891685c
1.3.6.1.2.1.3.1.1.2.60.1.10.204.91.50|4x|005056b2393a
1.3.6.1.2.1.3.1.1.2.60.1.10.204.91.52|4x|005056b2393c
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.1|64x|0acc5801
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.10|64x|0acc580a
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.16|64x|0acc5810
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.61|64x|0acc583d
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.105|64x|0acc5869
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.117|64x|0acc5875
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.118|64x|0acc5876
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.120|64x|0acc5878
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.125|64x|0acc587d
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.158|64x|0acc589e
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.159|64x|0acc589f
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.183|64x|0acc58b7
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.184|64x|0acc58b8
1.3.6.1.2.1.3.1.1.3.60.1.10.204.88.227|64x|0acc58e3
1.3.6.1.2.1.3.1.1.3.60.1.10.204.89.182|64x|0acc59b6
1.3.6.1.2.1.3.1.1.3.60.1.10.204.89.184|64x|0acc59b8
1.3.6.1.2.1.3.1.1.3.60.1.10.204.89.203|64x|0acc59cb
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.20|64x|0acc5a14
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.21|64x|0acc5a15
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.22|64x|0acc5a16
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.23|64x|0acc5a17
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.24|64x|0acc5a18
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.25|64x|0acc5a19
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.26|64x|0acc5a1a
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.29|64x|0acc5a1d
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.30|64x|0acc5a1e
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.31|64x|0acc5a1f
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.32|64x|0acc5a20
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.33|64x|0acc5a21
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.34|64x|0acc5a22
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.36|64x|0acc5a24
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.37|64x|0acc5a25
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.40|64x|0acc5a28
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.41|64x|0acc5a29
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.42|64x|0acc5a2a
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.44|64x|0acc5a2c
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.45|64x|0acc5a2d
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.46|64x|0acc5a2e
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.48|64x|0acc5a30
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.49|64x|0acc5a31
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.50|64x|0acc5a32
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.51|64x|0acc5a33
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.52|64x|0acc5a34
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.53|64x|0acc5a35
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.54|64x|0acc5a36
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.55|64x|0acc5a37
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.57|64x|0acc5a39
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.58|64x|0acc5a3a
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.60|64x|0acc5a3c
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.61|64x|0acc5a3d
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.62|64x|0acc5a3e
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.63|64x|0acc5a3f
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.64|64x|0acc5a40
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.67|64x|0acc5a43
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.72|64x|0acc5a48
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.73|64x|0acc5a49
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.77|64x|0acc5a4d
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.85|64x|0acc5a55
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.87|64x|0acc5a57
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.88|64x|0acc5a58
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.90|64x|0acc5a5a
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.111|64x|0acc5a6f
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.200|64x|0acc5ac8
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.201|64x|0acc5ac9
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.202|64x|0acc5aca
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.205|64x|0acc5acd
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.206|64x|0acc5ace
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.207|64x|0acc5acf
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.210|64x|0acc5ad2
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.213|64x|0acc5ad5
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.215|64x|0acc5ad7
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.216|64x|0acc5ad8
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.220|64x|0acc5adc
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.221|64x|0acc5add
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.223|64x|0acc5adf
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.224|64x|0acc5ae0
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.226|64x|0acc5ae2
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.229|64x|0acc5ae5
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.231|64x|0acc5ae7
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.235|64x|0acc5aeb
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.242|64x|0acc5af2
1.3.6.1.2.1.3.1.1.3.60.1.10.204.90.243|64x|0acc5af3
1.3.6.1.2.1.3.1.1.3.60.1.10.204.91.20|64x|0acc5b14
1.3.6.1.2.1.3.1.1.3.60.1.10.204.91.50|64x|0acc5b32
1.3.6.1.2.1.3.1.1.3.60.1.10.204.91.52|64x|0acc5b34
1.3.6.1.2.1.4.1.0|2|1
1.3.6.1.2.1.4.2.0|2|255
1.3.6.1.2.1.4.3.0|65|222523269
1.3.6.1.2.1.4.4.0|65|4612791
1.3.6.1.2.1.4.5.0|65|45641
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|12
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|217651481
1.3.6.1.2.1.4.10.0|65|192710007
1.3.6.1.2.1.4.11.0|65|52246315
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.13.0|2|30
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|8
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|8
1.3.6.1.2.1.4.20.1.1.10.204.88.16|64x|0acc5810
1.3.6.1.2.1.4.20.1.2.10.204.88.16|2|60
1.3.6.1.2.1.4.20.1.3.10.204.88.16|64x|fffffc00
1.3.6.1.2.1.4.20.1.4.10.204.88.16|2|1
1.3.6.1.2.1.4.20.1.5.10.204.88.16|2|18024
1.3.6.1.2.1.4.22.1.1.60.10.204.88.1|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.10|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.16|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.61|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.105|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.117|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.118|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.120|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.125|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.158|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.159|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.183|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.184|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.88.227|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.89.182|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.89.184|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.89.203|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.20|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.21|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.22|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.23|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.24|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.25|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.26|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.29|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.30|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.31|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.32|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.33|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.34|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.36|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.37|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.40|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.41|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.42|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.44|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.45|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.46|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.48|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.49|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.50|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.51|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.52|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.53|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.54|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.55|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.57|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.58|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.60|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.61|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.62|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.63|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.64|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.67|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.72|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.73|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.77|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.85|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.87|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.88|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.90|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.111|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.200|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.201|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.202|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.205|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.206|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.207|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.210|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.213|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.215|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.216|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.220|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.221|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.223|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.224|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.226|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.229|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.231|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.235|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.242|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.90.243|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.91.20|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.91.50|2|60
1.3.6.1.2.1.4.22.1.1.60.10.204.91.52|2|60
1.3.6.1.2.1.4.22.1.2.60.10.204.88.1|4x|001f12304700
1.3.6.1.2.1.4.22.1.2.60.10.204.88.10|4x|6899cda59fc1
1.3.6.1.2.1.4.22.1.2.60.10.204.88.16|4x|0016c7026ec1
1.3.6.1.2.1.4.22.1.2.60.10.204.88.61|4x|005056a40ea2
1.3.6.1.2.1.4.22.1.2.60.10.204.88.105|4x|005056bf6e15
1.3.6.1.2.1.4.22.1.2.60.10.204.88.117|4x|58493ba04010
1.3.6.1.2.1.4.22.1.2.60.10.204.88.118|4x|58493b9e8d10
1.3.6.1.2.1.4.22.1.2.60.10.204.88.120|4x|00187d18a2a9
1.3.6.1.2.1.4.22.1.2.60.10.204.88.125|4x|00187d224ac1
1.3.6.1.2.1.4.22.1.2.60.10.204.88.158|4x|005056bf534b
1.3.6.1.2.1.4.22.1.2.60.10.204.88.159|4x|00155d3a0810
1.3.6.1.2.1.4.22.1.2.60.10.204.88.183|4x|0cc47a5600c1
1.3.6.1.2.1.4.22.1.2.60.10.204.88.184|4x|0cc47a57c165
1.3.6.1.2.1.4.22.1.2.60.10.204.88.227|4x|00187d29c3b6
1.3.6.1.2.1.4.22.1.2.60.10.204.89.182|4x|00187d24d552
1.3.6.1.2.1.4.22.1.2.60.10.204.89.184|4x|00187d24d53a
1.3.6.1.2.1.4.22.1.2.60.10.204.89.203|4x|005056b23ac1
1.3.6.1.2.1.4.22.1.2.60.10.204.90.20|4x|005056b70baf
1.3.6.1.2.1.4.22.1.2.60.10.204.90.21|4x|d49a200e0e04
1.3.6.1.2.1.4.22.1.2.60.10.204.90.22|4x|001a4a223915
1.3.6.1.2.1.4.22.1.2.60.10.204.90.23|4x|005056bf794c
1.3.6.1.2.1.4.22.1.2.60.10.204.90.24|4x|001a4a223913
1.3.6.1.2.1.4.22.1.2.60.10.204.90.25|4x|005056bf6323
1.3.6.1.2.1.4.22.1.2.60.10.204.90.26|4x|005056bf585f
1.3.6.1.2.1.4.22.1.2.60.10.204.90.29|4x|005056b70eb7
1.3.6.1.2.1.4.22.1.2.60.10.204.90.30|4x|c4b301c77f59
1.3.6.1.2.1.4.22.1.2.60.10.204.90.31|4x|000c295a23a1
1.3.6.1.2.1.4.22.1.2.60.10.204.90.32|4x|005056a42b0b
1.3.6.1.2.1.4.22.1.2.60.10.204.90.33|4x|005056bf60b0
1.3.6.1.2.1.4.22.1.2.60.10.204.90.34|4x|005056866910
1.3.6.1.2.1.4.22.1.2.60.10.204.90.36|4x|28cfe95749db
1.3.6.1.2.1.4.22.1.2.60.10.204.90.37|4x|38ff3601ccb0
1.3.6.1.2.1.4.22.1.2.60.10.204.90.40|4x|005056a42b2d
1.3.6.1.2.1.4.22.1.2.60.10.204.90.41|4x|005056b2395f
1.3.6.1.2.1.4.22.1.2.60.10.204.90.42|4x|005056864be6
1.3.6.1.2.1.4.22.1.2.60.10.204.90.44|4x|005056b70a11
1.3.6.1.2.1.4.22.1.2.60.10.204.90.45|4x|005056bf3ead
1.3.6.1.2.1.4.22.1.2.60.10.204.90.46|4x|005056b7175f
1.3.6.1.2.1.4.22.1.2.60.10.204.90.48|4x|00082f25f602
1.3.6.1.2.1.4.22.1.2.60.10.204.90.49|4x|00505683571d
1.3.6.1.2.1.4.22.1.2.60.10.204.90.50|4x|005056a4761f
1.3.6.1.2.1.4.22.1.2.60.10.204.90.51|4x|005056993eae
1.3.6.1.2.1.4.22.1.2.60.10.204.90.52|4x|005056862777
1.3.6.1.2.1.4.22.1.2.60.10.204.90.53|4x|005056b73de1
1.3.6.1.2.1.4.22.1.2.60.10.204.90.54|4x|001a4a1811c3
1.3.6.1.2.1.4.22.1.2.60.10.204.90.55|4x|005056a41b89
1.3.6.1.2.1.4.22.1.2.60.10.204.90.57|4x|002186f4a731
1.3.6.1.2.1.4.22.1.2.60.10.204.90.58|4x|005056bf21a1
1.3.6.1.2.1.4.22.1.2.60.10.204.90.60|4x|002186f5d6ae
1.3.6.1.2.1.4.22.1.2.60.10.204.90.61|4x|005056b73de1
1.3.6.1.2.1.4.22.1.2.60.10.204.90.62|4x|005056bf6d30
1.3.6.1.2.1.4.22.1.2.60.10.204.90.63|4x|005056b82e27
1.3.6.1.2.1.4.22.1.2.60.10.204.90.64|4x|005056bf3d82
1.3.6.1.2.1.4.22.1.2.60.10.204.90.67|4x|005056bf34b5
1.3.6.1.2.1.4.22.1.2.60.10.204.90.72|4x|005056bf74cb
1.3.6.1.2.1.4.22.1.2.60.10.204.90.73|4x|005056bf7261
1.3.6.1.2.1.4.22.1.2.60.10.204.90.77|4x|00505686083c
1.3.6.1.2.1.4.22.1.2.60.10.204.90.85|4x|005056a46531
1.3.6.1.2.1.4.22.1.2.60.10.204.90.87|4x|005056a46d8b
1.3.6.1.2.1.4.22.1.2.60.10.204.90.88|4x|001a4a223914
1.3.6.1.2.1.4.22.1.2.60.10.204.90.90|4x|005056866c78
1.3.6.1.2.1.4.22.1.2.60.10.204.90.111|4x|005056990c79
1.3.6.1.2.1.4.22.1.2.60.10.204.90.200|4x|001a4a181186
1.3.6.1.2.1.4.22.1.2.60.10.204.90.201|4x|005056bf559f
1.3.6.1.2.1.4.22.1.2.60.10.204.90.202|4x|7c7a91d21cb1
1.3.6.1.2.1.4.22.1.2.60.10.204.90.205|4x|005056bf0d32
1.3.6.1.2.1.4.22.1.2.60.10.204.90.206|4x|28d244aff72e
1.3.6.1.2.1.4.22.1.2.60.10.204.90.207|4x|005056bf2f3d
1.3.6.1.2.1.4.22.1.2.60.10.204.90.210|4x|005056a45c5d
1.3.6.1.2.1.4.22.1.2.60.10.204.90.213|4x|005056bf4559
1.3.6.1.2.1.4.22.1.2.60.10.204.90.215|4x|0050568630de
1.3.6.1.2.1.4.22.1.2.60.10.204.90.216|4x|00505686656f
1.3.6.1.2.1.4.22.1.2.60.10.204.90.220|4x|00505683a0bd
1.3.6.1.2.1.4.22.1.2.60.10.204.90.221|4x|00505686454b
1.3.6.1.2.1.4.22.1.2.60.10.204.90.223|4x|001a4a181196
1.3.6.1.2.1.4.22.1.2.60.10.204.90.224|4x|001a4a181169
1.3.6.1.2.1.4.22.1.2.60.10.204.90.226|4x|6c881435d6d8
1.3.6.1.2.1.4.22.1.2.60.10.204.90.229|4x|005056bf1588
1.3.6.1.2.1.4.22.1.2.60.10.204.90.231|4x|005056831b9d
1.3.6.1.2.1.4.22.1.2.60.10.204.90.235|4x|a8d0e53d1d80
1.3.6.1.2.1.4.22.1.2.60.10.204.90.242|4x|005056a45434
1.3.6.1.2.1.4.22.1.2.60.10.204.90.243|4x|68f728d98f9a
1.3.6.1.2.1.4.22.1.2.60.10.204.91.20|4x|00304891685c
1.3.6.1.2.1.4.22.1.2.60.10.204.91.50|4x|005056b2393a
1.3.6.1.2.1.4.22.1.2.60.10.204.91.52|4x|005056b2393c
1.3.6.1.2.1.4.22.1.3.60.10.204.88.1|64x|0acc5801
1.3.6.1.2.1.4.22.1.3.60.10.204.88.10|64x|0acc580a
1.3.6.1.2.1.4.22.1.3.60.10.204.88.16|64x|0acc5810
1.3.6.1.2.1.4.22.1.3.60.10.204.88.61|64x|0acc583d
1.3.6.1.2.1.4.22.1.3.60.10.204.88.105|64x|0acc5869
1.3.6.1.2.1.4.22.1.3.60.10.204.88.117|64x|0acc5875
1.3.6.1.2.1.4.22.1.3.60.10.204.88.118|64x|0acc5876
1.3.6.1.2.1.4.22.1.3.60.10.204.88.120|64x|0acc5878
1.3.6.1.2.1.4.22.1.3.60.10.204.88.125|64x|0acc587d
1.3.6.1.2.1.4.22.1.3.60.10.204.88.158|64x|0acc589e
1.3.6.1.2.1.4.22.1.3.60.10.204.88.159|64x|0acc589f
1.3.6.1.2.1.4.22.1.3.60.10.204.88.183|64x|0acc58b7
1.3.6.1.2.1.4.22.1.3.60.10.204.88.184|64x|0acc58b8
1.3.6.1.2.1.4.22.1.3.60.10.204.88.227|64x|0acc58e3
1.3.6.1.2.1.4.22.1.3.60.10.204.89.182|64x|0acc59b6
1.3.6.1.2.1.4.22.1.3.60.10.204.89.184|64x|0acc59b8
1.3.6.1.2.1.4.22.1.3.60.10.204.89.203|64x|0acc59cb
1.3.6.1.2.1.4.22.1.3.60.10.204.90.20|64x|0acc5a14
1.3.6.1.2.1.4.22.1.3.60.10.204.90.21|64x|0acc5a15
1.3.6.1.2.1.4.22.1.3.60.10.204.90.22|64x|0acc5a16
1.3.6.1.2.1.4.22.1.3.60.10.204.90.23|64x|0acc5a17
1.3.6.1.2.1.4.22.1.3.60.10.204.90.24|64x|0acc5a18
1.3.6.1.2.1.4.22.1.3.60.10.204.90.25|64x|0acc5a19
1.3.6.1.2.1.4.22.1.3.60.10.204.90.26|64x|0acc5a1a
1.3.6.1.2.1.4.22.1.3.60.10.204.90.29|64x|0acc5a1d
1.3.6.1.2.1.4.22.1.3.60.10.204.90.30|64x|0acc5a1e
1.3.6.1.2.1.4.22.1.3.60.10.204.90.31|64x|0acc5a1f
1.3.6.1.2.1.4.22.1.3.60.10.204.90.32|64x|0acc5a20
1.3.6.1.2.1.4.22.1.3.60.10.204.90.33|64x|0acc5a21
1.3.6.1.2.1.4.22.1.3.60.10.204.90.34|64x|0acc5a22
1.3.6.1.2.1.4.22.1.3.60.10.204.90.36|64x|0acc5a24
1.3.6.1.2.1.4.22.1.3.60.10.204.90.37|64x|0acc5a25
1.3.6.1.2.1.4.22.1.3.60.10.204.90.40|64x|0acc5a28
1.3.6.1.2.1.4.22.1.3.60.10.204.90.41|64x|0acc5a29
1.3.6.1.2.1.4.22.1.3.60.10.204.90.42|64x|0acc5a2a
1.3.6.1.2.1.4.22.1.3.60.10.204.90.44|64x|0acc5a2c
1.3.6.1.2.1.4.22.1.3.60.10.204.90.45|64x|0acc5a2d
1.3.6.1.2.1.4.22.1.3.60.10.204.90.46|64x|0acc5a2e
1.3.6.1.2.1.4.22.1.3.60.10.204.90.48|64x|0acc5a30
1.3.6.1.2.1.4.22.1.3.60.10.204.90.49|64x|0acc5a31
1.3.6.1.2.1.4.22.1.3.60.10.204.90.50|64x|0acc5a32
1.3.6.1.2.1.4.22.1.3.60.10.204.90.51|64x|0acc5a33
1.3.6.1.2.1.4.22.1.3.60.10.204.90.52|64x|0acc5a34
1.3.6.1.2.1.4.22.1.3.60.10.204.90.53|64x|0acc5a35
1.3.6.1.2.1.4.22.1.3.60.10.204.90.54|64x|0acc5a36
1.3.6.1.2.1.4.22.1.3.60.10.204.90.55|64x|0acc5a37
1.3.6.1.2.1.4.22.1.3.60.10.204.90.57|64x|0acc5a39
1.3.6.1.2.1.4.22.1.3.60.10.204.90.58|64x|0acc5a3a
1.3.6.1.2.1.4.22.1.3.60.10.204.90.60|64x|0acc5a3c
1.3.6.1.2.1.4.22.1.3.60.10.204.90.61|64x|0acc5a3d
1.3.6.1.2.1.4.22.1.3.60.10.204.90.62|64x|0acc5a3e
1.3.6.1.2.1.4.22.1.3.60.10.204.90.63|64x|0acc5a3f
1.3.6.1.2.1.4.22.1.3.60.10.204.90.64|64x|0acc5a40
1.3.6.1.2.1.4.22.1.3.60.10.204.90.67|64x|0acc5a43
1.3.6.1.2.1.4.22.1.3.60.10.204.90.72|64x|0acc5a48
1.3.6.1.2.1.4.22.1.3.60.10.204.90.73|64x|0acc5a49
1.3.6.1.2.1.4.22.1.3.60.10.204.90.77|64x|0acc5a4d
1.3.6.1.2.1.4.22.1.3.60.10.204.90.85|64x|0acc5a55
1.3.6.1.2.1.4.22.1.3.60.10.204.90.87|64x|0acc5a57
1.3.6.1.2.1.4.22.1.3.60.10.204.90.88|64x|0acc5a58
1.3.6.1.2.1.4.22.1.3.60.10.204.90.90|64x|0acc5a5a
1.3.6.1.2.1.4.22.1.3.60.10.204.90.111|64x|0acc5a6f
1.3.6.1.2.1.4.22.1.3.60.10.204.90.200|64x|0acc5ac8
1.3.6.1.2.1.4.22.1.3.60.10.204.90.201|64x|0acc5ac9
1.3.6.1.2.1.4.22.1.3.60.10.204.90.202|64x|0acc5aca
1.3.6.1.2.1.4.22.1.3.60.10.204.90.205|64x|0acc5acd
1.3.6.1.2.1.4.22.1.3.60.10.204.90.206|64x|0acc5ace
1.3.6.1.2.1.4.22.1.3.60.10.204.90.207|64x|0acc5acf
1.3.6.1.2.1.4.22.1.3.60.10.204.90.210|64x|0acc5ad2
1.3.6.1.2.1.4.22.1.3.60.10.204.90.213|64x|0acc5ad5
1.3.6.1.2.1.4.22.1.3.60.10.204.90.215|64x|0acc5ad7
1.3.6.1.2.1.4.22.1.3.60.10.204.90.216|64x|0acc5ad8
1.3.6.1.2.1.4.22.1.3.60.10.204.90.220|64x|0acc5adc
1.3.6.1.2.1.4.22.1.3.60.10.204.90.221|64x|0acc5add
1.3.6.1.2.1.4.22.1.3.60.10.204.90.223|64x|0acc5adf
1.3.6.1.2.1.4.22.1.3.60.10.204.90.224|64x|0acc5ae0
1.3.6.1.2.1.4.22.1.3.60.10.204.90.226|64x|0acc5ae2
1.3.6.1.2.1.4.22.1.3.60.10.204.90.229|64x|0acc5ae5
1.3.6.1.2.1.4.22.1.3.60.10.204.90.231|64x|0acc5ae7
1.3.6.1.2.1.4.22.1.3.60.10.204.90.235|64x|0acc5aeb
1.3.6.1.2.1.4.22.1.3.60.10.204.90.242|64x|0acc5af2
1.3.6.1.2.1.4.22.1.3.60.10.204.90.243|64x|0acc5af3
1.3.6.1.2.1.4.22.1.3.60.10.204.91.20|64x|0acc5b14
1.3.6.1.2.1.4.22.1.3.60.10.204.91.50|64x|0acc5b32
1.3.6.1.2.1.4.22.1.3.60.10.204.91.52|64x|0acc5b34
1.3.6.1.2.1.4.22.1.4.60.10.204.88.1|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.10|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.16|2|4
1.3.6.1.2.1.4.22.1.4.60.10.204.88.61|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.105|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.117|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.118|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.120|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.125|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.158|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.159|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.183|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.184|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.88.227|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.89.182|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.89.184|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.89.203|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.20|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.21|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.22|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.23|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.24|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.25|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.26|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.29|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.30|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.31|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.32|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.33|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.34|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.36|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.37|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.40|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.41|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.42|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.44|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.45|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.46|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.48|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.49|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.50|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.51|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.52|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.53|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.54|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.55|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.57|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.58|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.60|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.61|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.62|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.63|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.64|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.67|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.72|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.73|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.77|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.85|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.87|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.88|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.90|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.111|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.200|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.201|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.202|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.205|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.206|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.207|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.210|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.213|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.215|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.216|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.220|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.221|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.223|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.224|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.226|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.229|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.231|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.235|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.242|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.90.243|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.91.20|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.91.50|2|3
1.3.6.1.2.1.4.22.1.4.60.10.204.91.52|2|3
1.3.6.1.2.1.4.23.0|65|0
1.3.6.1.2.1.4.24.3.0|66|2
1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.204.88.1|64x|00000000
1.3.6.1.2.1.4.24.4.1.1.10.204.88.0.255.255.252.0.0.0.0.0.0|64x|0acc5800
1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.204.88.1|64x|00000000
1.3.6.1.2.1.4.24.4.1.2.10.204.88.0.255.255.252.0.0.0.0.0.0|64x|fffffc00
1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.204.88.1|2|0
1.3.6.1.2.1.4.24.4.1.3.10.204.88.0.255.255.252.0.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.204.88.1|64x|0acc5801
1.3.6.1.2.1.4.24.4.1.4.10.204.88.0.255.255.252.0.0.0.0.0.0|64x|00000000
1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.204.88.1|2|0
1.3.6.1.2.1.4.24.4.1.5.10.204.88.0.255.255.252.0.0.0.0.0.0|2|60
1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.204.88.1|2|4
1.3.6.1.2.1.4.24.4.1.6.10.204.88.0.255.255.252.0.0.0.0.0.0|2|3
1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.204.88.1|2|3
1.3.6.1.2.1.4.24.4.1.7.10.204.88.0.255.255.252.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.24.4.1.8.0.0.0.0.0.0.0.0.0.10.204.88.1|2|30
1.3.6.1.2.1.4.24.4.1.8.10.204.88.0.255.255.252.0.0.0.0.0.0|2|4294967
1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.204.88.1|6|0.0
1.3.6.1.2.1.4.24.4.1.9.10.204.88.0.255.255.252.0.0.0.0.0.0|6|0.0
1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.204.88.1|2|0
1.3.6.1.2.1.4.24.4.1.10.10.204.88.0.255.255.252.0.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.204.88.1|2|0
1.3.6.1.2.1.4.24.4.1.11.10.204.88.0.255.255.252.0.0.0.0.0.0|2|0
1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.204.88.1|2|-1
1.3.6.1.2.1.4.24.4.1.12.10.204.88.0.255.255.252.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.204.88.1|2|-1
1.3.6.1.2.1.4.24.4.1.13.10.204.88.0.255.255.252.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.204.88.1|2|-1
1.3.6.1.2.1.4.24.4.1.14.10.204.88.0.255.255.252.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.204.88.1|2|-1
1.3.6.1.2.1.4.24.4.1.15.10.204.88.0.255.255.252.0.0.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.204.88.1|2|1
1.3.6.1.2.1.4.24.4.1.16.10.204.88.0.255.255.252.0.0.0.0.0.0|2|1
1.3.6.1.2.1.4.24.6.0|66|0
1.3.6.1.2.1.4.31.1.1.3.2|65|0
1.3.6.1.2.1.4.31.1.1.4.2|70|0
1.3.6.1.2.1.4.31.1.1.5.2|65|0
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.8.2|65|0
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.11.2|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.2|70|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
1.3.6.1.2.1.4.31.1.1.15.2|65|0
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.2|65|0
1.3.6.1.2.1.4.31.1.1.19.2|70|0
1.3.6.1.2.1.4.31.1.1.20.2|65|0
1.3.6.1.2.1.4.31.1.1.21.2|70|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.23.2|65|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.2|65|0
1.3.6.1.2.1.4.31.1.1.26.2|65|0
1.3.6.1.2.1.4.31.1.1.27.2|65|0
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.2|65|0
1.3.6.1.2.1.4.31.1.1.30.2|65|0
1.3.6.1.2.1.4.31.1.1.31.2|70|0
1.3.6.1.2.1.4.31.1.1.32.2|65|0
1.3.6.1.2.1.4.31.1.1.33.2|70|0
1.3.6.1.2.1.4.31.1.1.34.2|65|0
1.3.6.1.2.1.4.31.1.1.35.2|70|0
1.3.6.1.2.1.4.31.1.1.36.2|65|0
1.3.6.1.2.1.4.31.1.1.37.2|70|0
1.3.6.1.2.1.4.31.1.1.38.2|65|0
1.3.6.1.2.1.4.31.1.1.39.2|70|0
1.3.6.1.2.1.4.31.1.1.40.2|65|0
1.3.6.1.2.1.4.31.1.1.41.2|70|0
1.3.6.1.2.1.4.31.1.1.42.2|65|0
1.3.6.1.2.1.4.31.1.1.43.2|70|0
1.3.6.1.2.1.4.31.1.1.44.2|65|0
1.3.6.1.2.1.4.31.1.1.45.2|70|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.33.0|2|0
1.3.6.1.2.1.5.1.0|65|1069768
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|1068691
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|638
1.3.6.1.2.1.5.8.0|65|342
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|97
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|1964
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|1516
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|10
1.3.6.1.2.1.5.22.0|65|342
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|97
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.5.29.1.2.2|65|0
1.3.6.1.2.1.5.29.1.3.2|65|0
1.3.6.1.2.1.5.29.1.4.2|65|0
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.2.0|65|0
1.3.6.1.2.1.5.30.1.3.2.1|65|0
1.3.6.1.2.1.5.30.1.3.2.2|65|0
1.3.6.1.2.1.5.30.1.3.2.3|65|0
1.3.6.1.2.1.5.30.1.3.2.4|65|0
1.3.6.1.2.1.5.30.1.3.2.5|65|0
1.3.6.1.2.1.5.30.1.3.2.6|65|0
1.3.6.1.2.1.5.30.1.3.2.7|65|0
1.3.6.1.2.1.5.30.1.3.2.8|65|0
1.3.6.1.2.1.5.30.1.3.2.9|65|0
1.3.6.1.2.1.5.30.1.3.2.10|65|0
1.3.6.1.2.1.5.30.1.3.2.11|65|0
1.3.6.1.2.1.5.30.1.3.2.12|65|0
1.3.6.1.2.1.5.30.1.3.2.13|65|0
1.3.6.1.2.1.5.30.1.3.2.14|65|0
1.3.6.1.2.1.5.30.1.3.2.15|65|0
1.3.6.1.2.1.5.30.1.3.2.16|65|0
1.3.6.1.2.1.5.30.1.3.2.17|65|0
1.3.6.1.2.1.5.30.1.3.2.18|65|0
1.3.6.1.2.1.5.30.1.3.2.19|65|0
1.3.6.1.2.1.5.30.1.3.2.20|65|0
1.3.6.1.2.1.5.30.1.3.2.21|65|0
1.3.6.1.2.1.5.30.1.3.2.22|65|0
1.3.6.1.2.1.5.30.1.3.2.23|65|0
1.3.6.1.2.1.5.30.1.3.2.24|65|0
1.3.6.1.2.1.5.30.1.3.2.25|65|0
1.3.6.1.2.1.5.30.1.3.2.26|65|0
1.3.6.1.2.1.5.30.1.3.2.27|65|0
1.3.6.1.2.1.5.30.1.3.2.28|65|0
1.3.6.1.2.1.5.30.1.3.2.29|65|0
1.3.6.1.2.1.5.30.1.3.2.30|65|0
1.3.6.1.2.1.5.30.1.3.2.31|65|0
1.3.6.1.2.1.5.30.1.3.2.32|65|0
1.3.6.1.2.1.5.30.1.3.2.33|65|0
1.3.6.1.2.1.5.30.1.3.2.34|65|0
1.3.6.1.2.1.5.30.1.3.2.35|65|0
1.3.6.1.2.1.5.30.1.3.2.36|65|0
1.3.6.1.2.1.5.30.1.3.2.37|65|0
1.3.6.1.2.1.5.30.1.3.2.38|65|0
1.3.6.1.2.1.5.30.1.3.2.39|65|0
1.3.6.1.2.1.5.30.1.3.2.40|65|0
1.3.6.1.2.1.5.30.1.3.2.41|65|0
1.3.6.1.2.1.5.30.1.3.2.42|65|0
1.3.6.1.2.1.5.30.1.3.2.43|65|0
1.3.6.1.2.1.5.30.1.3.2.44|65|0
1.3.6.1.2.1.5.30.1.3.2.45|65|0
1.3.6.1.2.1.5.30.1.3.2.46|65|0
1.3.6.1.2.1.5.30.1.3.2.47|65|0
1.3.6.1.2.1.5.30.1.3.2.48|65|0
1.3.6.1.2.1.5.30.1.3.2.49|65|0
1.3.6.1.2.1.5.30.1.3.2.50|65|0
1.3.6.1.2.1.5.30.1.3.2.51|65|0
1.3.6.1.2.1.5.30.1.3.2.52|65|0
1.3.6.1.2.1.5.30.1.3.2.53|65|0
1.3.6.1.2.1.5.30.1.3.2.54|65|0
1.3.6.1.2.1.5.30.1.3.2.55|65|0
1.3.6.1.2.1.5.30.1.3.2.56|65|0
1.3.6.1.2.1.5.30.1.3.2.57|65|0
1.3.6.1.2.1.5.30.1.3.2.58|65|0
1.3.6.1.2.1.5.30.1.3.2.59|65|0
1.3.6.1.2.1.5.30.1.3.2.60|65|0
1.3.6.1.2.1.5.30.1.3.2.61|65|0
1.3.6.1.2.1.5.30.1.3.2.62|65|0
1.3.6.1.2.1.5.30.1.3.2.63|65|0
1.3.6.1.2.1.5.30.1.3.2.64|65|0
1.3.6.1.2.1.5.30.1.3.2.65|65|0
1.3.6.1.2.1.5.30.1.3.2.66|65|0
1.3.6.1.2.1.5.30.1.3.2.67|65|0
1.3.6.1.2.1.5.30.1.3.2.68|65|0
1.3.6.1.2.1.5.30.1.3.2.69|65|0
1.3.6.1.2.1.5.30.1.3.2.70|65|0
1.3.6.1.2.1.5.30.1.3.2.71|65|0
1.3.6.1.2.1.5.30.1.3.2.72|65|0
1.3.6.1.2.1.5.30.1.3.2.73|65|0
1.3.6.1.2.1.5.30.1.3.2.74|65|0
1.3.6.1.2.1.5.30.1.3.2.75|65|0
1.3.6.1.2.1.5.30.1.3.2.76|65|0
1.3.6.1.2.1.5.30.1.3.2.77|65|0
1.3.6.1.2.1.5.30.1.3.2.78|65|0
1.3.6.1.2.1.5.30.1.3.2.79|65|0
1.3.6.1.2.1.5.30.1.3.2.80|65|0
1.3.6.1.2.1.5.30.1.3.2.81|65|0
1.3.6.1.2.1.5.30.1.3.2.82|65|0
1.3.6.1.2.1.5.30.1.3.2.83|65|0
1.3.6.1.2.1.5.30.1.3.2.84|65|0
1.3.6.1.2.1.5.30.1.3.2.85|65|0
1.3.6.1.2.1.5.30.1.3.2.86|65|0
1.3.6.1.2.1.5.30.1.3.2.87|65|0
1.3.6.1.2.1.5.30.1.3.2.88|65|0
1.3.6.1.2.1.5.30.1.3.2.89|65|0
1.3.6.1.2.1.5.30.1.3.2.90|65|0
1.3.6.1.2.1.5.30.1.3.2.91|65|0
1.3.6.1.2.1.5.30.1.3.2.92|65|0
1.3.6.1.2.1.5.30.1.3.2.93|65|0
1.3.6.1.2.1.5.30.1.3.2.94|65|0
1.3.6.1.2.1.5.30.1.3.2.95|65|0
1.3.6.1.2.1.5.30.1.3.2.96|65|0
1.3.6.1.2.1.5.30.1.3.2.97|65|0
1.3.6.1.2.1.5.30.1.3.2.98|65|0
1.3.6.1.2.1.5.30.1.3.2.99|65|0
1.3.6.1.2.1.5.30.1.3.2.100|65|0
1.3.6.1.2.1.5.30.1.3.2.101|65|0
1.3.6.1.2.1.5.30.1.3.2.102|65|0
1.3.6.1.2.1.5.30.1.3.2.103|65|0
1.3.6.1.2.1.5.30.1.3.2.104|65|0
1.3.6.1.2.1.5.30.1.3.2.105|65|0
1.3.6.1.2.1.5.30.1.3.2.106|65|0
1.3.6.1.2.1.5.30.1.3.2.107|65|0
1.3.6.1.2.1.5.30.1.3.2.108|65|0
1.3.6.1.2.1.5.30.1.3.2.109|65|0
1.3.6.1.2.1.5.30.1.3.2.110|65|0
1.3.6.1.2.1.5.30.1.3.2.111|65|0
1.3.6.1.2.1.5.30.1.3.2.112|65|0
1.3.6.1.2.1.5.30.1.3.2.113|65|0
1.3.6.1.2.1.5.30.1.3.2.114|65|0
1.3.6.1.2.1.5.30.1.3.2.115|65|0
1.3.6.1.2.1.5.30.1.3.2.116|65|0
1.3.6.1.2.1.5.30.1.3.2.117|65|0
1.3.6.1.2.1.5.30.1.3.2.118|65|0
1.3.6.1.2.1.5.30.1.3.2.119|65|0
1.3.6.1.2.1.5.30.1.3.2.120|65|0
1.3.6.1.2.1.5.30.1.3.2.121|65|0
1.3.6.1.2.1.5.30.1.3.2.122|65|0
1.3.6.1.2.1.5.30.1.3.2.123|65|0
1.3.6.1.2.1.5.30.1.3.2.124|65|0
1.3.6.1.2.1.5.30.1.3.2.125|65|0
1.3.6.1.2.1.5.30.1.3.2.126|65|0
1.3.6.1.2.1.5.30.1.3.2.127|65|0
1.3.6.1.2.1.5.30.1.3.2.128|65|0
1.3.6.1.2.1.5.30.1.3.2.129|65|0
1.3.6.1.2.1.5.30.1.3.2.130|65|0
1.3.6.1.2.1.5.30.1.3.2.131|65|0
1.3.6.1.2.1.5.30.1.3.2.132|65|0
1.3.6.1.2.1.5.30.1.3.2.133|65|0
1.3.6.1.2.1.5.30.1.3.2.134|65|0
1.3.6.1.2.1.5.30.1.3.2.135|65|0
1.3.6.1.2.1.5.30.1.3.2.136|65|0
1.3.6.1.2.1.5.30.1.3.2.137|65|0
1.3.6.1.2.1.5.30.1.3.2.138|65|0
1.3.6.1.2.1.5.30.1.3.2.139|65|0
1.3.6.1.2.1.5.30.1.3.2.140|65|0
1.3.6.1.2.1.5.30.1.3.2.141|65|0
1.3.6.1.2.1.5.30.1.3.2.142|65|0
1.3.6.1.2.1.5.30.1.3.2.143|65|0
1.3.6.1.2.1.5.30.1.3.2.144|65|0
1.3.6.1.2.1.5.30.1.3.2.145|65|0
1.3.6.1.2.1.5.30.1.3.2.146|65|0
1.3.6.1.2.1.5.30.1.3.2.147|65|0
1.3.6.1.2.1.5.30.1.3.2.148|65|0
1.3.6.1.2.1.5.30.1.3.2.149|65|0
1.3.6.1.2.1.5.30.1.3.2.150|65|0
1.3.6.1.2.1.5.30.1.3.2.151|65|0
1.3.6.1.2.1.5.30.1.3.2.152|65|0
1.3.6.1.2.1.5.30.1.3.2.153|65|0
1.3.6.1.2.1.5.30.1.3.2.154|65|0
1.3.6.1.2.1.5.30.1.3.2.155|65|0
1.3.6.1.2.1.5.30.1.3.2.156|65|0
1.3.6.1.2.1.5.30.1.3.2.157|65|0
1.3.6.1.2.1.5.30.1.3.2.158|65|0
1.3.6.1.2.1.5.30.1.3.2.159|65|0
1.3.6.1.2.1.5.30.1.3.2.160|65|0
1.3.6.1.2.1.5.30.1.3.2.161|65|0
1.3.6.1.2.1.5.30.1.3.2.162|65|0
1.3.6.1.2.1.5.30.1.3.2.163|65|0
1.3.6.1.2.1.5.30.1.3.2.164|65|0
1.3.6.1.2.1.5.30.1.3.2.165|65|0
1.3.6.1.2.1.5.30.1.3.2.166|65|0
1.3.6.1.2.1.5.30.1.3.2.167|65|0
1.3.6.1.2.1.5.30.1.3.2.168|65|0
1.3.6.1.2.1.5.30.1.3.2.169|65|0
1.3.6.1.2.1.5.30.1.3.2.170|65|0
1.3.6.1.2.1.5.30.1.3.2.171|65|0
1.3.6.1.2.1.5.30.1.3.2.172|65|0
1.3.6.1.2.1.5.30.1.3.2.173|65|0
1.3.6.1.2.1.5.30.1.3.2.174|65|0
1.3.6.1.2.1.5.30.1.3.2.175|65|0
1.3.6.1.2.1.5.30.1.3.2.176|65|0
1.3.6.1.2.1.5.30.1.3.2.177|65|0
1.3.6.1.2.1.5.30.1.3.2.178|65|0
1.3.6.1.2.1.5.30.1.3.2.179|65|0
1.3.6.1.2.1.5.30.1.3.2.180|65|0
1.3.6.1.2.1.5.30.1.3.2.181|65|0
1.3.6.1.2.1.5.30.1.3.2.182|65|0
1.3.6.1.2.1.5.30.1.3.2.183|65|0
1.3.6.1.2.1.5.30.1.3.2.184|65|0
1.3.6.1.2.1.5.30.1.3.2.185|65|0
1.3.6.1.2.1.5.30.1.3.2.186|65|0
1.3.6.1.2.1.5.30.1.3.2.187|65|0
1.3.6.1.2.1.5.30.1.3.2.188|65|0
1.3.6.1.2.1.5.30.1.3.2.189|65|0
1.3.6.1.2.1.5.30.1.3.2.190|65|0
1.3.6.1.2.1.5.30.1.3.2.191|65|0
1.3.6.1.2.1.5.30.1.3.2.192|65|0
1.3.6.1.2.1.5.30.1.3.2.193|65|0
1.3.6.1.2.1.5.30.1.3.2.194|65|0
1.3.6.1.2.1.5.30.1.3.2.195|65|0
1.3.6.1.2.1.5.30.1.3.2.196|65|0
1.3.6.1.2.1.5.30.1.3.2.197|65|0
1.3.6.1.2.1.5.30.1.3.2.198|65|0
1.3.6.1.2.1.5.30.1.3.2.199|65|0
1.3.6.1.2.1.5.30.1.3.2.200|65|0
1.3.6.1.2.1.5.30.1.3.2.201|65|0
1.3.6.1.2.1.5.30.1.3.2.202|65|0
1.3.6.1.2.1.5.30.1.3.2.203|65|0
1.3.6.1.2.1.5.30.1.3.2.204|65|0
1.3.6.1.2.1.5.30.1.3.2.205|65|0
1.3.6.1.2.1.5.30.1.3.2.206|65|0
1.3.6.1.2.1.5.30.1.3.2.207|65|0
1.3.6.1.2.1.5.30.1.3.2.208|65|0
1.3.6.1.2.1.5.30.1.3.2.209|65|0
1.3.6.1.2.1.5.30.1.3.2.210|65|0
1.3.6.1.2.1.5.30.1.3.2.211|65|0
1.3.6.1.2.1.5.30.1.3.2.212|65|0
1.3.6.1.2.1.5.30.1.3.2.213|65|0
1.3.6.1.2.1.5.30.1.3.2.214|65|0
1.3.6.1.2.1.5.30.1.3.2.215|65|0
1.3.6.1.2.1.5.30.1.3.2.216|65|0
1.3.6.1.2.1.5.30.1.3.2.217|65|0
1.3.6.1.2.1.5.30.1.3.2.218|65|0
1.3.6.1.2.1.5.30.1.3.2.219|65|0
1.3.6.1.2.1.5.30.1.3.2.220|65|0
1.3.6.1.2.1.5.30.1.3.2.221|65|0
1.3.6.1.2.1.5.30.1.3.2.222|65|0
1.3.6.1.2.1.5.30.1.3.2.223|65|0
1.3.6.1.2.1.5.30.1.3.2.224|65|0
1.3.6.1.2.1.5.30.1.3.2.225|65|0
1.3.6.1.2.1.5.30.1.3.2.226|65|0
1.3.6.1.2.1.5.30.1.3.2.227|65|0
1.3.6.1.2.1.5.30.1.3.2.228|65|0
1.3.6.1.2.1.5.30.1.3.2.229|65|0
1.3.6.1.2.1.5.30.1.3.2.230|65|0
1.3.6.1.2.1.5.30.1.3.2.231|65|0
1.3.6.1.2.1.5.30.1.3.2.232|65|0
1.3.6.1.2.1.5.30.1.3.2.233|65|0
1.3.6.1.2.1.5.30.1.3.2.234|65|0
1.3.6.1.2.1.5.30.1.3.2.235|65|0
1.3.6.1.2.1.5.30.1.3.2.236|65|0
1.3.6.1.2.1.5.30.1.3.2.237|65|0
1.3.6.1.2.1.5.30.1.3.2.238|65|0
1.3.6.1.2.1.5.30.1.3.2.239|65|0
1.3.6.1.2.1.5.30.1.3.2.240|65|0
1.3.6.1.2.1.5.30.1.3.2.241|65|0
1.3.6.1.2.1.5.30.1.3.2.242|65|0
1.3.6.1.2.1.5.30.1.3.2.243|65|0
1.3.6.1.2.1.5.30.1.3.2.244|65|0
1.3.6.1.2.1.5.30.1.3.2.245|65|0
1.3.6.1.2.1.5.30.1.3.2.246|65|0
1.3.6.1.2.1.5.30.1.3.2.247|65|0
1.3.6.1.2.1.5.30.1.3.2.248|65|0
1.3.6.1.2.1.5.30.1.3.2.249|65|0
1.3.6.1.2.1.5.30.1.3.2.250|65|0
1.3.6.1.2.1.5.30.1.3.2.251|65|0
1.3.6.1.2.1.5.30.1.3.2.252|65|0
1.3.6.1.2.1.5.30.1.3.2.253|65|0
1.3.6.1.2.1.5.30.1.3.2.254|65|0
1.3.6.1.2.1.5.30.1.3.2.255|65|0
1.3.6.1.2.1.5.30.1.4.2.0|65|0
1.3.6.1.2.1.5.30.1.4.2.1|65|0
1.3.6.1.2.1.5.30.1.4.2.2|65|0
1.3.6.1.2.1.5.30.1.4.2.3|65|0
1.3.6.1.2.1.5.30.1.4.2.4|65|0
1.3.6.1.2.1.5.30.1.4.2.5|65|0
1.3.6.1.2.1.5.30.1.4.2.6|65|0
1.3.6.1.2.1.5.30.1.4.2.7|65|0
1.3.6.1.2.1.5.30.1.4.2.8|65|0
1.3.6.1.2.1.5.30.1.4.2.9|65|0
1.3.6.1.2.1.5.30.1.4.2.10|65|0
1.3.6.1.2.1.5.30.1.4.2.11|65|0
1.3.6.1.2.1.5.30.1.4.2.12|65|0
1.3.6.1.2.1.5.30.1.4.2.13|65|0
1.3.6.1.2.1.5.30.1.4.2.14|65|0
1.3.6.1.2.1.5.30.1.4.2.15|65|0
1.3.6.1.2.1.5.30.1.4.2.16|65|0
1.3.6.1.2.1.5.30.1.4.2.17|65|0
1.3.6.1.2.1.5.30.1.4.2.18|65|0
1.3.6.1.2.1.5.30.1.4.2.19|65|0
1.3.6.1.2.1.5.30.1.4.2.20|65|0
1.3.6.1.2.1.5.30.1.4.2.21|65|0
1.3.6.1.2.1.5.30.1.4.2.22|65|0
1.3.6.1.2.1.5.30.1.4.2.23|65|0
1.3.6.1.2.1.5.30.1.4.2.24|65|0
1.3.6.1.2.1.5.30.1.4.2.25|65|0
1.3.6.1.2.1.5.30.1.4.2.26|65|0
1.3.6.1.2.1.5.30.1.4.2.27|65|0
1.3.6.1.2.1.5.30.1.4.2.28|65|0
1.3.6.1.2.1.5.30.1.4.2.29|65|0
1.3.6.1.2.1.5.30.1.4.2.30|65|0
1.3.6.1.2.1.5.30.1.4.2.31|65|0
1.3.6.1.2.1.5.30.1.4.2.32|65|0
1.3.6.1.2.1.5.30.1.4.2.33|65|0
1.3.6.1.2.1.5.30.1.4.2.34|65|0
1.3.6.1.2.1.5.30.1.4.2.35|65|0
1.3.6.1.2.1.5.30.1.4.2.36|65|0
1.3.6.1.2.1.5.30.1.4.2.37|65|0
1.3.6.1.2.1.5.30.1.4.2.38|65|0
1.3.6.1.2.1.5.30.1.4.2.39|65|0
1.3.6.1.2.1.5.30.1.4.2.40|65|0
1.3.6.1.2.1.5.30.1.4.2.41|65|0
1.3.6.1.2.1.5.30.1.4.2.42|65|0
1.3.6.1.2.1.5.30.1.4.2.43|65|0
1.3.6.1.2.1.5.30.1.4.2.44|65|0
1.3.6.1.2.1.5.30.1.4.2.45|65|0
1.3.6.1.2.1.5.30.1.4.2.46|65|0
1.3.6.1.2.1.5.30.1.4.2.47|65|0
1.3.6.1.2.1.5.30.1.4.2.48|65|0
1.3.6.1.2.1.5.30.1.4.2.49|65|0
1.3.6.1.2.1.5.30.1.4.2.50|65|0
1.3.6.1.2.1.5.30.1.4.2.51|65|0
1.3.6.1.2.1.5.30.1.4.2.52|65|0
1.3.6.1.2.1.5.30.1.4.2.53|65|0
1.3.6.1.2.1.5.30.1.4.2.54|65|0
1.3.6.1.2.1.5.30.1.4.2.55|65|0
1.3.6.1.2.1.5.30.1.4.2.56|65|0
1.3.6.1.2.1.5.30.1.4.2.57|65|0
1.3.6.1.2.1.5.30.1.4.2.58|65|0
1.3.6.1.2.1.5.30.1.4.2.59|65|0
1.3.6.1.2.1.5.30.1.4.2.60|65|0
1.3.6.1.2.1.5.30.1.4.2.61|65|0
1.3.6.1.2.1.5.30.1.4.2.62|65|0
1.3.6.1.2.1.5.30.1.4.2.63|65|0
1.3.6.1.2.1.5.30.1.4.2.64|65|0
1.3.6.1.2.1.5.30.1.4.2.65|65|0
1.3.6.1.2.1.5.30.1.4.2.66|65|0
1.3.6.1.2.1.5.30.1.4.2.67|65|0
1.3.6.1.2.1.5.30.1.4.2.68|65|0
1.3.6.1.2.1.5.30.1.4.2.69|65|0
1.3.6.1.2.1.5.30.1.4.2.70|65|0
1.3.6.1.2.1.5.30.1.4.2.71|65|0
1.3.6.1.2.1.5.30.1.4.2.72|65|0
1.3.6.1.2.1.5.30.1.4.2.73|65|0
1.3.6.1.2.1.5.30.1.4.2.74|65|0
1.3.6.1.2.1.5.30.1.4.2.75|65|0
1.3.6.1.2.1.5.30.1.4.2.76|65|0
1.3.6.1.2.1.5.30.1.4.2.77|65|0
1.3.6.1.2.1.5.30.1.4.2.78|65|0
1.3.6.1.2.1.5.30.1.4.2.79|65|0
1.3.6.1.2.1.5.30.1.4.2.80|65|0
1.3.6.1.2.1.5.30.1.4.2.81|65|0
1.3.6.1.2.1.5.30.1.4.2.82|65|0
1.3.6.1.2.1.5.30.1.4.2.83|65|0
1.3.6.1.2.1.5.30.1.4.2.84|65|0
1.3.6.1.2.1.5.30.1.4.2.85|65|0
1.3.6.1.2.1.5.30.1.4.2.86|65|0
1.3.6.1.2.1.5.30.1.4.2.87|65|0
1.3.6.1.2.1.5.30.1.4.2.88|65|0
1.3.6.1.2.1.5.30.1.4.2.89|65|0
1.3.6.1.2.1.5.30.1.4.2.90|65|0
1.3.6.1.2.1.5.30.1.4.2.91|65|0
1.3.6.1.2.1.5.30.1.4.2.92|65|0
1.3.6.1.2.1.5.30.1.4.2.93|65|0
1.3.6.1.2.1.5.30.1.4.2.94|65|0
1.3.6.1.2.1.5.30.1.4.2.95|65|0
1.3.6.1.2.1.5.30.1.4.2.96|65|0
1.3.6.1.2.1.5.30.1.4.2.97|65|0
1.3.6.1.2.1.5.30.1.4.2.98|65|0
1.3.6.1.2.1.5.30.1.4.2.99|65|0
1.3.6.1.2.1.5.30.1.4.2.100|65|0
1.3.6.1.2.1.5.30.1.4.2.101|65|0
1.3.6.1.2.1.5.30.1.4.2.102|65|0
1.3.6.1.2.1.5.30.1.4.2.103|65|0
1.3.6.1.2.1.5.30.1.4.2.104|65|0
1.3.6.1.2.1.5.30.1.4.2.105|65|0
1.3.6.1.2.1.5.30.1.4.2.106|65|0
1.3.6.1.2.1.5.30.1.4.2.107|65|0
1.3.6.1.2.1.5.30.1.4.2.108|65|0
1.3.6.1.2.1.5.30.1.4.2.109|65|0
1.3.6.1.2.1.5.30.1.4.2.110|65|0
1.3.6.1.2.1.5.30.1.4.2.111|65|0
1.3.6.1.2.1.5.30.1.4.2.112|65|0
1.3.6.1.2.1.5.30.1.4.2.113|65|0
1.3.6.1.2.1.5.30.1.4.2.114|65|0
1.3.6.1.2.1.5.30.1.4.2.115|65|0
1.3.6.1.2.1.5.30.1.4.2.116|65|0
1.3.6.1.2.1.5.30.1.4.2.117|65|0
1.3.6.1.2.1.5.30.1.4.2.118|65|0
1.3.6.1.2.1.5.30.1.4.2.119|65|0
1.3.6.1.2.1.5.30.1.4.2.120|65|0
1.3.6.1.2.1.5.30.1.4.2.121|65|0
1.3.6.1.2.1.5.30.1.4.2.122|65|0
1.3.6.1.2.1.5.30.1.4.2.123|65|0
1.3.6.1.2.1.5.30.1.4.2.124|65|0
1.3.6.1.2.1.5.30.1.4.2.125|65|0
1.3.6.1.2.1.5.30.1.4.2.126|65|0
1.3.6.1.2.1.5.30.1.4.2.127|65|0
1.3.6.1.2.1.5.30.1.4.2.128|65|0
1.3.6.1.2.1.5.30.1.4.2.129|65|0
1.3.6.1.2.1.5.30.1.4.2.130|65|0
1.3.6.1.2.1.5.30.1.4.2.131|65|0
1.3.6.1.2.1.5.30.1.4.2.132|65|0
1.3.6.1.2.1.5.30.1.4.2.133|65|0
1.3.6.1.2.1.5.30.1.4.2.134|65|0
1.3.6.1.2.1.5.30.1.4.2.135|65|0
1.3.6.1.2.1.5.30.1.4.2.136|65|0
1.3.6.1.2.1.5.30.1.4.2.137|65|0
1.3.6.1.2.1.5.30.1.4.2.138|65|0
1.3.6.1.2.1.5.30.1.4.2.139|65|0
1.3.6.1.2.1.5.30.1.4.2.140|65|0
1.3.6.1.2.1.5.30.1.4.2.141|65|0
1.3.6.1.2.1.5.30.1.4.2.142|65|0
1.3.6.1.2.1.5.30.1.4.2.143|65|0
1.3.6.1.2.1.5.30.1.4.2.144|65|0
1.3.6.1.2.1.5.30.1.4.2.145|65|0
1.3.6.1.2.1.5.30.1.4.2.146|65|0
1.3.6.1.2.1.5.30.1.4.2.147|65|0
1.3.6.1.2.1.5.30.1.4.2.148|65|0
1.3.6.1.2.1.5.30.1.4.2.149|65|0
1.3.6.1.2.1.5.30.1.4.2.150|65|0
1.3.6.1.2.1.5.30.1.4.2.151|65|0
1.3.6.1.2.1.5.30.1.4.2.152|65|0
1.3.6.1.2.1.5.30.1.4.2.153|65|0
1.3.6.1.2.1.5.30.1.4.2.154|65|0
1.3.6.1.2.1.5.30.1.4.2.155|65|0
1.3.6.1.2.1.5.30.1.4.2.156|65|0
1.3.6.1.2.1.5.30.1.4.2.157|65|0
1.3.6.1.2.1.5.30.1.4.2.158|65|0
1.3.6.1.2.1.5.30.1.4.2.159|65|0
1.3.6.1.2.1.5.30.1.4.2.160|65|0
1.3.6.1.2.1.5.30.1.4.2.161|65|0
1.3.6.1.2.1.5.30.1.4.2.162|65|0
1.3.6.1.2.1.5.30.1.4.2.163|65|0
1.3.6.1.2.1.5.30.1.4.2.164|65|0
1.3.6.1.2.1.5.30.1.4.2.165|65|0
1.3.6.1.2.1.5.30.1.4.2.166|65|0
1.3.6.1.2.1.5.30.1.4.2.167|65|0
1.3.6.1.2.1.5.30.1.4.2.168|65|0
1.3.6.1.2.1.5.30.1.4.2.169|65|0
1.3.6.1.2.1.5.30.1.4.2.170|65|0
1.3.6.1.2.1.5.30.1.4.2.171|65|0
1.3.6.1.2.1.5.30.1.4.2.172|65|0
1.3.6.1.2.1.5.30.1.4.2.173|65|0
1.3.6.1.2.1.5.30.1.4.2.174|65|0
1.3.6.1.2.1.5.30.1.4.2.175|65|0
1.3.6.1.2.1.5.30.1.4.2.176|65|0
1.3.6.1.2.1.5.30.1.4.2.177|65|0
1.3.6.1.2.1.5.30.1.4.2.178|65|0
1.3.6.1.2.1.5.30.1.4.2.179|65|0
1.3.6.1.2.1.5.30.1.4.2.180|65|0
1.3.6.1.2.1.5.30.1.4.2.181|65|0
1.3.6.1.2.1.5.30.1.4.2.182|65|0
1.3.6.1.2.1.5.30.1.4.2.183|65|0
1.3.6.1.2.1.5.30.1.4.2.184|65|0
1.3.6.1.2.1.5.30.1.4.2.185|65|0
1.3.6.1.2.1.5.30.1.4.2.186|65|0
1.3.6.1.2.1.5.30.1.4.2.187|65|0
1.3.6.1.2.1.5.30.1.4.2.188|65|0
1.3.6.1.2.1.5.30.1.4.2.189|65|0
1.3.6.1.2.1.5.30.1.4.2.190|65|0
1.3.6.1.2.1.5.30.1.4.2.191|65|0
1.3.6.1.2.1.5.30.1.4.2.192|65|0
1.3.6.1.2.1.5.30.1.4.2.193|65|0
1.3.6.1.2.1.5.30.1.4.2.194|65|0
1.3.6.1.2.1.5.30.1.4.2.195|65|0
1.3.6.1.2.1.5.30.1.4.2.196|65|0
1.3.6.1.2.1.5.30.1.4.2.197|65|0
1.3.6.1.2.1.5.30.1.4.2.198|65|0
1.3.6.1.2.1.5.30.1.4.2.199|65|0
1.3.6.1.2.1.5.30.1.4.2.200|65|0
1.3.6.1.2.1.5.30.1.4.2.201|65|0
1.3.6.1.2.1.5.30.1.4.2.202|65|0
1.3.6.1.2.1.5.30.1.4.2.203|65|0
1.3.6.1.2.1.5.30.1.4.2.204|65|0
1.3.6.1.2.1.5.30.1.4.2.205|65|0
1.3.6.1.2.1.5.30.1.4.2.206|65|0
1.3.6.1.2.1.5.30.1.4.2.207|65|0
1.3.6.1.2.1.5.30.1.4.2.208|65|0
1.3.6.1.2.1.5.30.1.4.2.209|65|0
1.3.6.1.2.1.5.30.1.4.2.210|65|0
1.3.6.1.2.1.5.30.1.4.2.211|65|0
1.3.6.1.2.1.5.30.1.4.2.212|65|0
1.3.6.1.2.1.5.30.1.4.2.213|65|0
1.3.6.1.2.1.5.30.1.4.2.214|65|0
1.3.6.1.2.1.5.30.1.4.2.215|65|0
1.3.6.1.2.1.5.30.1.4.2.216|65|0
1.3.6.1.2.1.5.30.1.4.2.217|65|0
1.3.6.1.2.1.5.30.1.4.2.218|65|0
1.3.6.1.2.1.5.30.1.4.2.219|65|0
1.3.6.1.2.1.5.30.1.4.2.220|65|0
1.3.6.1.2.1.5.30.1.4.2.221|65|0
1.3.6.1.2.1.5.30.1.4.2.222|65|0
1.3.6.1.2.1.5.30.1.4.2.223|65|0
1.3.6.1.2.1.5.30.1.4.2.224|65|0
1.3.6.1.2.1.5.30.1.4.2.225|65|0
1.3.6.1.2.1.5.30.1.4.2.226|65|0
1.3.6.1.2.1.5.30.1.4.2.227|65|0
1.3.6.1.2.1.5.30.1.4.2.228|65|0
1.3.6.1.2.1.5.30.1.4.2.229|65|0
1.3.6.1.2.1.5.30.1.4.2.230|65|0
1.3.6.1.2.1.5.30.1.4.2.231|65|0
1.3.6.1.2.1.5.30.1.4.2.232|65|0
1.3.6.1.2.1.5.30.1.4.2.233|65|0
1.3.6.1.2.1.5.30.1.4.2.234|65|0
1.3.6.1.2.1.5.30.1.4.2.235|65|0
1.3.6.1.2.1.5.30.1.4.2.236|65|0
1.3.6.1.2.1.5.30.1.4.2.237|65|0
1.3.6.1.2.1.5.30.1.4.2.238|65|0
1.3.6.1.2.1.5.30.1.4.2.239|65|0
1.3.6.1.2.1.5.30.1.4.2.240|65|0
1.3.6.1.2.1.5.30.1.4.2.241|65|0
1.3.6.1.2.1.5.30.1.4.2.242|65|0
1.3.6.1.2.1.5.30.1.4.2.243|65|0
1.3.6.1.2.1.5.30.1.4.2.244|65|0
1.3.6.1.2.1.5.30.1.4.2.245|65|0
1.3.6.1.2.1.5.30.1.4.2.246|65|0
1.3.6.1.2.1.5.30.1.4.2.247|65|0
1.3.6.1.2.1.5.30.1.4.2.248|65|0
1.3.6.1.2.1.5.30.1.4.2.249|65|0
1.3.6.1.2.1.5.30.1.4.2.250|65|0
1.3.6.1.2.1.5.30.1.4.2.251|65|0
1.3.6.1.2.1.5.30.1.4.2.252|65|0
1.3.6.1.2.1.5.30.1.4.2.253|65|0
1.3.6.1.2.1.5.30.1.4.2.254|65|0
1.3.6.1.2.1.5.30.1.4.2.255|65|0
1.3.6.1.2.1.6.1.0|2|4
1.3.6.1.2.1.6.2.0|2|300
1.3.6.1.2.1.6.3.0|2|60000
1.3.6.1.2.1.6.4.0|2|-1
1.3.6.1.2.1.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|1494
1.3.6.1.2.1.6.7.0|65|1436
1.3.6.1.2.1.6.8.0|65|4
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|28322
1.3.6.1.2.1.6.11.0|65|21483
1.3.6.1.2.1.6.12.0|65|651
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|2174
1.3.6.1.2.1.7.1.0|65|216552985
1.3.6.1.2.1.7.2.0|65|2063533
1.3.6.1.2.1.7.3.0|65|213
1.3.6.1.2.1.7.4.0|65|192686600
1.3.6.1.2.1.7.5.1.1.10.204.88.16.67|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.161|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.162|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.1645|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.1646|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.1975|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.2228|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.3799|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.50254|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.50402|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.51012|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.51538|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.52012|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.53622|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.54431|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.55103|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.55160|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.55495|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.55701|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.62132|64x|0acc5810
1.3.6.1.2.1.7.5.1.1.10.204.88.16.63311|64x|0acc5810
1.3.6.1.2.1.7.5.1.2.10.204.88.16.67|2|67
1.3.6.1.2.1.7.5.1.2.10.204.88.16.161|2|161
1.3.6.1.2.1.7.5.1.2.10.204.88.16.162|2|162
1.3.6.1.2.1.7.5.1.2.10.204.88.16.1645|2|1645
1.3.6.1.2.1.7.5.1.2.10.204.88.16.1646|2|1646
1.3.6.1.2.1.7.5.1.2.10.204.88.16.1975|2|1975
1.3.6.1.2.1.7.5.1.2.10.204.88.16.2228|2|2228
1.3.6.1.2.1.7.5.1.2.10.204.88.16.3799|2|3799
1.3.6.1.2.1.7.5.1.2.10.204.88.16.50254|2|50254
1.3.6.1.2.1.7.5.1.2.10.204.88.16.50402|2|50402
1.3.6.1.2.1.7.5.1.2.10.204.88.16.51012|2|51012
1.3.6.1.2.1.7.5.1.2.10.204.88.16.51538|2|51538
1.3.6.1.2.1.7.5.1.2.10.204.88.16.52012|2|52012
1.3.6.1.2.1.7.5.1.2.10.204.88.16.53622|2|53622
1.3.6.1.2.1.7.5.1.2.10.204.88.16.54431|2|54431
1.3.6.1.2.1.7.5.1.2.10.204.88.16.55103|2|55103
1.3.6.1.2.1.7.5.1.2.10.204.88.16.55160|2|55160
1.3.6.1.2.1.7.5.1.2.10.204.88.16.55495|2|55495
1.3.6.1.2.1.7.5.1.2.10.204.88.16.55701|2|55701
1.3.6.1.2.1.7.5.1.2.10.204.88.16.62132|2|62132
1.3.6.1.2.1.7.5.1.2.10.204.88.16.63311|2|63311
1.3.6.1.2.1.10.7.2.1.1.11001|2|11001
1.3.6.1.2.1.10.7.2.1.1.11002|2|11002
1.3.6.1.2.1.10.7.2.1.1.11003|2|11003
1.3.6.1.2.1.10.7.2.1.1.11004|2|11004
1.3.6.1.2.1.10.7.2.1.1.11005|2|11005
1.3.6.1.2.1.10.7.2.1.1.11006|2|11006
1.3.6.1.2.1.10.7.2.1.1.11007|2|11007
1.3.6.1.2.1.10.7.2.1.1.11008|2|11008
1.3.6.1.2.1.10.7.2.1.1.11009|2|11009
1.3.6.1.2.1.10.7.2.1.1.11010|2|11010
1.3.6.1.2.1.10.7.2.1.1.11011|2|11011
1.3.6.1.2.1.10.7.2.1.1.11012|2|11012
1.3.6.1.2.1.10.7.2.1.1.11013|2|11013
1.3.6.1.2.1.10.7.2.1.1.11014|2|11014
1.3.6.1.2.1.10.7.2.1.1.11015|2|11015
1.3.6.1.2.1.10.7.2.1.1.11016|2|11016
1.3.6.1.2.1.10.7.2.1.1.11017|2|11017
1.3.6.1.2.1.10.7.2.1.1.11018|2|11018
1.3.6.1.2.1.10.7.2.1.1.11019|2|11019
1.3.6.1.2.1.10.7.2.1.1.11020|2|11020
1.3.6.1.2.1.10.7.2.1.1.11021|2|11021
1.3.6.1.2.1.10.7.2.1.1.11022|2|11022
1.3.6.1.2.1.10.7.2.1.1.11023|2|11023
1.3.6.1.2.1.10.7.2.1.1.11024|2|11024
1.3.6.1.2.1.10.7.2.1.1.11025|2|11025
1.3.6.1.2.1.10.7.2.1.1.11026|2|11026
1.3.6.1.2.1.10.7.2.1.1.11027|2|11027
1.3.6.1.2.1.10.7.2.1.1.11028|2|11028
1.3.6.1.2.1.10.7.2.1.1.11029|2|11029
1.3.6.1.2.1.10.7.2.1.1.11030|2|11030
1.3.6.1.2.1.10.7.2.1.1.11031|2|11031
1.3.6.1.2.1.10.7.2.1.1.11032|2|11032
1.3.6.1.2.1.10.7.2.1.1.11033|2|11033
1.3.6.1.2.1.10.7.2.1.1.11034|2|11034
1.3.6.1.2.1.10.7.2.1.1.11035|2|11035
1.3.6.1.2.1.10.7.2.1.1.11036|2|11036
1.3.6.1.2.1.10.7.2.1.1.11037|2|11037
1.3.6.1.2.1.10.7.2.1.1.11038|2|11038
1.3.6.1.2.1.10.7.2.1.1.11039|2|11039
1.3.6.1.2.1.10.7.2.1.1.11040|2|11040
1.3.6.1.2.1.10.7.2.1.1.11041|2|11041
1.3.6.1.2.1.10.7.2.1.1.11042|2|11042
1.3.6.1.2.1.10.7.2.1.1.11043|2|11043
1.3.6.1.2.1.10.7.2.1.1.11044|2|11044
1.3.6.1.2.1.10.7.2.1.1.11045|2|11045
1.3.6.1.2.1.10.7.2.1.1.11046|2|11046
1.3.6.1.2.1.10.7.2.1.1.11047|2|11047
1.3.6.1.2.1.10.7.2.1.1.11048|2|11048
1.3.6.1.2.1.10.7.2.1.1.11101|2|11101
1.3.6.1.2.1.10.7.2.1.1.11102|2|11102
1.3.6.1.2.1.10.7.2.1.1.11103|2|11103
1.3.6.1.2.1.10.7.2.1.1.11104|2|11104
1.3.6.1.2.1.10.7.2.1.2.11001|65|0
1.3.6.1.2.1.10.7.2.1.2.11002|65|0
1.3.6.1.2.1.10.7.2.1.2.11003|65|0
1.3.6.1.2.1.10.7.2.1.2.11004|65|0
1.3.6.1.2.1.10.7.2.1.2.11005|65|0
1.3.6.1.2.1.10.7.2.1.2.11006|65|0
1.3.6.1.2.1.10.7.2.1.2.11007|65|0
1.3.6.1.2.1.10.7.2.1.2.11008|65|0
1.3.6.1.2.1.10.7.2.1.2.11009|65|0
1.3.6.1.2.1.10.7.2.1.2.11010|65|0
1.3.6.1.2.1.10.7.2.1.2.11011|65|0
1.3.6.1.2.1.10.7.2.1.2.11012|65|0
1.3.6.1.2.1.10.7.2.1.2.11013|65|0
1.3.6.1.2.1.10.7.2.1.2.11014|65|0
1.3.6.1.2.1.10.7.2.1.2.11015|65|0
1.3.6.1.2.1.10.7.2.1.2.11016|65|0
1.3.6.1.2.1.10.7.2.1.2.11017|65|0
1.3.6.1.2.1.10.7.2.1.2.11018|65|0
1.3.6.1.2.1.10.7.2.1.2.11019|65|0
1.3.6.1.2.1.10.7.2.1.2.11020|65|0
1.3.6.1.2.1.10.7.2.1.2.11021|65|0
1.3.6.1.2.1.10.7.2.1.2.11022|65|0
1.3.6.1.2.1.10.7.2.1.2.11023|65|0
1.3.6.1.2.1.10.7.2.1.2.11024|65|0
1.3.6.1.2.1.10.7.2.1.2.11025|65|0
1.3.6.1.2.1.10.7.2.1.2.11026|65|0
1.3.6.1.2.1.10.7.2.1.2.11027|65|0
1.3.6.1.2.1.10.7.2.1.2.11028|65|0
1.3.6.1.2.1.10.7.2.1.2.11029|65|0
1.3.6.1.2.1.10.7.2.1.2.11030|65|0
1.3.6.1.2.1.10.7.2.1.2.11031|65|0
1.3.6.1.2.1.10.7.2.1.2.11032|65|0
1.3.6.1.2.1.10.7.2.1.2.11033|65|0
1.3.6.1.2.1.10.7.2.1.2.11034|65|0
1.3.6.1.2.1.10.7.2.1.2.11035|65|0
1.3.6.1.2.1.10.7.2.1.2.11036|65|0
1.3.6.1.2.1.10.7.2.1.2.11037|65|0
1.3.6.1.2.1.10.7.2.1.2.11038|65|0
1.3.6.1.2.1.10.7.2.1.2.11039|65|0
1.3.6.1.2.1.10.7.2.1.2.11040|65|0
1.3.6.1.2.1.10.7.2.1.2.11041|65|0
1.3.6.1.2.1.10.7.2.1.2.11042|65|14
1.3.6.1.2.1.10.7.2.1.2.11043|65|0
1.3.6.1.2.1.10.7.2.1.2.11044|65|0
1.3.6.1.2.1.10.7.2.1.2.11045|65|0
1.3.6.1.2.1.10.7.2.1.2.11046|65|0
1.3.6.1.2.1.10.7.2.1.2.11047|65|0
1.3.6.1.2.1.10.7.2.1.2.11048|65|0
1.3.6.1.2.1.10.7.2.1.2.11101|65|0
1.3.6.1.2.1.10.7.2.1.2.11102|65|0
1.3.6.1.2.1.10.7.2.1.2.11103|65|0
1.3.6.1.2.1.10.7.2.1.2.11104|65|0
1.3.6.1.2.1.10.7.2.1.3.11001|65|0
1.3.6.1.2.1.10.7.2.1.3.11002|65|0
1.3.6.1.2.1.10.7.2.1.3.11003|65|0
1.3.6.1.2.1.10.7.2.1.3.11004|65|0
1.3.6.1.2.1.10.7.2.1.3.11005|65|0
1.3.6.1.2.1.10.7.2.1.3.11006|65|0
1.3.6.1.2.1.10.7.2.1.3.11007|65|0
1.3.6.1.2.1.10.7.2.1.3.11008|65|0
1.3.6.1.2.1.10.7.2.1.3.11009|65|0
1.3.6.1.2.1.10.7.2.1.3.11010|65|0
1.3.6.1.2.1.10.7.2.1.3.11011|65|0
1.3.6.1.2.1.10.7.2.1.3.11012|65|0
1.3.6.1.2.1.10.7.2.1.3.11013|65|0
1.3.6.1.2.1.10.7.2.1.3.11014|65|0
1.3.6.1.2.1.10.7.2.1.3.11015|65|0
1.3.6.1.2.1.10.7.2.1.3.11016|65|0
1.3.6.1.2.1.10.7.2.1.3.11017|65|0
1.3.6.1.2.1.10.7.2.1.3.11018|65|0
1.3.6.1.2.1.10.7.2.1.3.11019|65|0
1.3.6.1.2.1.10.7.2.1.3.11020|65|0
1.3.6.1.2.1.10.7.2.1.3.11021|65|0
1.3.6.1.2.1.10.7.2.1.3.11022|65|0
1.3.6.1.2.1.10.7.2.1.3.11023|65|0
1.3.6.1.2.1.10.7.2.1.3.11024|65|0
1.3.6.1.2.1.10.7.2.1.3.11025|65|0
1.3.6.1.2.1.10.7.2.1.3.11026|65|0
1.3.6.1.2.1.10.7.2.1.3.11027|65|0
1.3.6.1.2.1.10.7.2.1.3.11028|65|0
1.3.6.1.2.1.10.7.2.1.3.11029|65|0
1.3.6.1.2.1.10.7.2.1.3.11030|65|0
1.3.6.1.2.1.10.7.2.1.3.11031|65|0
1.3.6.1.2.1.10.7.2.1.3.11032|65|0
1.3.6.1.2.1.10.7.2.1.3.11033|65|0
1.3.6.1.2.1.10.7.2.1.3.11034|65|0
1.3.6.1.2.1.10.7.2.1.3.11035|65|0
1.3.6.1.2.1.10.7.2.1.3.11036|65|0
1.3.6.1.2.1.10.7.2.1.3.11037|65|0
1.3.6.1.2.1.10.7.2.1.3.11038|65|0
1.3.6.1.2.1.10.7.2.1.3.11039|65|0
1.3.6.1.2.1.10.7.2.1.3.11040|65|0
1.3.6.1.2.1.10.7.2.1.3.11041|65|0
1.3.6.1.2.1.10.7.2.1.3.11042|65|1
1.3.6.1.2.1.10.7.2.1.3.11043|65|0
1.3.6.1.2.1.10.7.2.1.3.11044|65|0
1.3.6.1.2.1.10.7.2.1.3.11045|65|0
1.3.6.1.2.1.10.7.2.1.3.11046|65|0
1.3.6.1.2.1.10.7.2.1.3.11047|65|0
1.3.6.1.2.1.10.7.2.1.3.11048|65|0
1.3.6.1.2.1.10.7.2.1.3.11101|65|0
1.3.6.1.2.1.10.7.2.1.3.11102|65|0
1.3.6.1.2.1.10.7.2.1.3.11103|65|0
1.3.6.1.2.1.10.7.2.1.3.11104|65|0
1.3.6.1.2.1.10.7.2.1.4.11001|65|0
1.3.6.1.2.1.10.7.2.1.4.11002|65|0
1.3.6.1.2.1.10.7.2.1.4.11003|65|0
1.3.6.1.2.1.10.7.2.1.4.11004|65|0
1.3.6.1.2.1.10.7.2.1.4.11005|65|0
1.3.6.1.2.1.10.7.2.1.4.11006|65|0
1.3.6.1.2.1.10.7.2.1.4.11007|65|0
1.3.6.1.2.1.10.7.2.1.4.11008|65|0
1.3.6.1.2.1.10.7.2.1.4.11009|65|0
1.3.6.1.2.1.10.7.2.1.4.11010|65|1672
1.3.6.1.2.1.10.7.2.1.4.11011|65|2668
1.3.6.1.2.1.10.7.2.1.4.11012|65|0
1.3.6.1.2.1.10.7.2.1.4.11013|65|0
1.3.6.1.2.1.10.7.2.1.4.11014|65|0
1.3.6.1.2.1.10.7.2.1.4.11015|65|0
1.3.6.1.2.1.10.7.2.1.4.11016|65|0
1.3.6.1.2.1.10.7.2.1.4.11017|65|0
1.3.6.1.2.1.10.7.2.1.4.11018|65|0
1.3.6.1.2.1.10.7.2.1.4.11019|65|0
1.3.6.1.2.1.10.7.2.1.4.11020|65|0
1.3.6.1.2.1.10.7.2.1.4.11021|65|0
1.3.6.1.2.1.10.7.2.1.4.11022|65|0
1.3.6.1.2.1.10.7.2.1.4.11023|65|0
1.3.6.1.2.1.10.7.2.1.4.11024|65|0
1.3.6.1.2.1.10.7.2.1.4.11025|65|0
1.3.6.1.2.1.10.7.2.1.4.11026|65|0
1.3.6.1.2.1.10.7.2.1.4.11027|65|0
1.3.6.1.2.1.10.7.2.1.4.11028|65|0
1.3.6.1.2.1.10.7.2.1.4.11029|65|0
1.3.6.1.2.1.10.7.2.1.4.11030|65|0
1.3.6.1.2.1.10.7.2.1.4.11031|65|0
1.3.6.1.2.1.10.7.2.1.4.11032|65|0
1.3.6.1.2.1.10.7.2.1.4.11033|65|0
1.3.6.1.2.1.10.7.2.1.4.11034|65|0
1.3.6.1.2.1.10.7.2.1.4.11035|65|0
1.3.6.1.2.1.10.7.2.1.4.11036|65|0
1.3.6.1.2.1.10.7.2.1.4.11037|65|0
1.3.6.1.2.1.10.7.2.1.4.11038|65|0
1.3.6.1.2.1.10.7.2.1.4.11039|65|0
1.3.6.1.2.1.10.7.2.1.4.11040|65|0
1.3.6.1.2.1.10.7.2.1.4.11041|65|0
1.3.6.1.2.1.10.7.2.1.4.11042|65|0
1.3.6.1.2.1.10.7.2.1.4.11043|65|0
1.3.6.1.2.1.10.7.2.1.4.11044|65|0
1.3.6.1.2.1.10.7.2.1.4.11045|65|0
1.3.6.1.2.1.10.7.2.1.4.11046|65|0
1.3.6.1.2.1.10.7.2.1.4.11047|65|0
1.3.6.1.2.1.10.7.2.1.4.11048|65|0
1.3.6.1.2.1.10.7.2.1.4.11101|65|0
1.3.6.1.2.1.10.7.2.1.4.11102|65|0
1.3.6.1.2.1.10.7.2.1.4.11103|65|0
1.3.6.1.2.1.10.7.2.1.4.11104|65|0
1.3.6.1.2.1.10.7.2.1.5.11001|65|0
1.3.6.1.2.1.10.7.2.1.5.11002|65|0
1.3.6.1.2.1.10.7.2.1.5.11003|65|0
1.3.6.1.2.1.10.7.2.1.5.11004|65|0
1.3.6.1.2.1.10.7.2.1.5.11005|65|0
1.3.6.1.2.1.10.7.2.1.5.11006|65|0
1.3.6.1.2.1.10.7.2.1.5.11007|65|0
1.3.6.1.2.1.10.7.2.1.5.11008|65|0
1.3.6.1.2.1.10.7.2.1.5.11009|65|0
1.3.6.1.2.1.10.7.2.1.5.11010|65|3
1.3.6.1.2.1.10.7.2.1.5.11011|65|6
1.3.6.1.2.1.10.7.2.1.5.11012|65|0
1.3.6.1.2.1.10.7.2.1.5.11013|65|0
1.3.6.1.2.1.10.7.2.1.5.11014|65|0
1.3.6.1.2.1.10.7.2.1.5.11015|65|0
1.3.6.1.2.1.10.7.2.1.5.11016|65|0
1.3.6.1.2.1.10.7.2.1.5.11017|65|0
1.3.6.1.2.1.10.7.2.1.5.11018|65|0
1.3.6.1.2.1.10.7.2.1.5.11019|65|0
1.3.6.1.2.1.10.7.2.1.5.11020|65|0
1.3.6.1.2.1.10.7.2.1.5.11021|65|0
1.3.6.1.2.1.10.7.2.1.5.11022|65|0
1.3.6.1.2.1.10.7.2.1.5.11023|65|0
1.3.6.1.2.1.10.7.2.1.5.11024|65|0
1.3.6.1.2.1.10.7.2.1.5.11025|65|0
1.3.6.1.2.1.10.7.2.1.5.11026|65|0
1.3.6.1.2.1.10.7.2.1.5.11027|65|0
1.3.6.1.2.1.10.7.2.1.5.11028|65|0
1.3.6.1.2.1.10.7.2.1.5.11029|65|0
1.3.6.1.2.1.10.7.2.1.5.11030|65|0
1.3.6.1.2.1.10.7.2.1.5.11031|65|0
1.3.6.1.2.1.10.7.2.1.5.11032|65|0
1.3.6.1.2.1.10.7.2.1.5.11033|65|0
1.3.6.1.2.1.10.7.2.1.5.11034|65|0
1.3.6.1.2.1.10.7.2.1.5.11035|65|0
1.3.6.1.2.1.10.7.2.1.5.11036|65|0
1.3.6.1.2.1.10.7.2.1.5.11037|65|0
1.3.6.1.2.1.10.7.2.1.5.11038|65|0
1.3.6.1.2.1.10.7.2.1.5.11039|65|0
1.3.6.1.2.1.10.7.2.1.5.11040|65|0
1.3.6.1.2.1.10.7.2.1.5.11041|65|0
1.3.6.1.2.1.10.7.2.1.5.11042|65|0
1.3.6.1.2.1.10.7.2.1.5.11043|65|0
1.3.6.1.2.1.10.7.2.1.5.11044|65|0
1.3.6.1.2.1.10.7.2.1.5.11045|65|0
1.3.6.1.2.1.10.7.2.1.5.11046|65|0
1.3.6.1.2.1.10.7.2.1.5.11047|65|0
1.3.6.1.2.1.10.7.2.1.5.11048|65|0
1.3.6.1.2.1.10.7.2.1.5.11101|65|0
1.3.6.1.2.1.10.7.2.1.5.11102|65|0
1.3.6.1.2.1.10.7.2.1.5.11103|65|0
1.3.6.1.2.1.10.7.2.1.5.11104|65|0
1.3.6.1.2.1.10.7.2.1.6.11001|65|0
1.3.6.1.2.1.10.7.2.1.6.11002|65|0
1.3.6.1.2.1.10.7.2.1.6.11003|65|0
1.3.6.1.2.1.10.7.2.1.6.11004|65|0
1.3.6.1.2.1.10.7.2.1.6.11005|65|0
1.3.6.1.2.1.10.7.2.1.6.11006|65|0
1.3.6.1.2.1.10.7.2.1.6.11007|65|0
1.3.6.1.2.1.10.7.2.1.6.11008|65|0
1.3.6.1.2.1.10.7.2.1.6.11009|65|0
1.3.6.1.2.1.10.7.2.1.6.11010|65|0
1.3.6.1.2.1.10.7.2.1.6.11011|65|0
1.3.6.1.2.1.10.7.2.1.6.11012|65|0
1.3.6.1.2.1.10.7.2.1.6.11013|65|0
1.3.6.1.2.1.10.7.2.1.6.11014|65|0
1.3.6.1.2.1.10.7.2.1.6.11015|65|0
1.3.6.1.2.1.10.7.2.1.6.11016|65|0
1.3.6.1.2.1.10.7.2.1.6.11017|65|0
1.3.6.1.2.1.10.7.2.1.6.11018|65|0
1.3.6.1.2.1.10.7.2.1.6.11019|65|0
1.3.6.1.2.1.10.7.2.1.6.11020|65|0
1.3.6.1.2.1.10.7.2.1.6.11021|65|0
1.3.6.1.2.1.10.7.2.1.6.11022|65|0
1.3.6.1.2.1.10.7.2.1.6.11023|65|0
1.3.6.1.2.1.10.7.2.1.6.11024|65|0
1.3.6.1.2.1.10.7.2.1.6.11025|65|0
1.3.6.1.2.1.10.7.2.1.6.11026|65|0
1.3.6.1.2.1.10.7.2.1.6.11027|65|0
1.3.6.1.2.1.10.7.2.1.6.11028|65|0
1.3.6.1.2.1.10.7.2.1.6.11029|65|0
1.3.6.1.2.1.10.7.2.1.6.11030|65|0
1.3.6.1.2.1.10.7.2.1.6.11031|65|0
1.3.6.1.2.1.10.7.2.1.6.11032|65|0
1.3.6.1.2.1.10.7.2.1.6.11033|65|0
1.3.6.1.2.1.10.7.2.1.6.11034|65|0
1.3.6.1.2.1.10.7.2.1.6.11035|65|0
1.3.6.1.2.1.10.7.2.1.6.11036|65|0
1.3.6.1.2.1.10.7.2.1.6.11037|65|0
1.3.6.1.2.1.10.7.2.1.6.11038|65|0
1.3.6.1.2.1.10.7.2.1.6.11039|65|0
1.3.6.1.2.1.10.7.2.1.6.11040|65|0
1.3.6.1.2.1.10.7.2.1.6.11041|65|0
1.3.6.1.2.1.10.7.2.1.6.11042|65|0
1.3.6.1.2.1.10.7.2.1.6.11043|65|0
1.3.6.1.2.1.10.7.2.1.6.11044|65|0
1.3.6.1.2.1.10.7.2.1.6.11045|65|0
1.3.6.1.2.1.10.7.2.1.6.11046|65|0
1.3.6.1.2.1.10.7.2.1.6.11047|65|0
1.3.6.1.2.1.10.7.2.1.6.11048|65|0
1.3.6.1.2.1.10.7.2.1.6.11101|65|0
1.3.6.1.2.1.10.7.2.1.6.11102|65|0
1.3.6.1.2.1.10.7.2.1.6.11103|65|0
1.3.6.1.2.1.10.7.2.1.6.11104|65|0
1.3.6.1.2.1.10.7.2.1.7.11001|65|0
1.3.6.1.2.1.10.7.2.1.7.11002|65|0
1.3.6.1.2.1.10.7.2.1.7.11003|65|0
1.3.6.1.2.1.10.7.2.1.7.11004|65|0
1.3.6.1.2.1.10.7.2.1.7.11005|65|0
1.3.6.1.2.1.10.7.2.1.7.11006|65|0
1.3.6.1.2.1.10.7.2.1.7.11007|65|0
1.3.6.1.2.1.10.7.2.1.7.11008|65|0
1.3.6.1.2.1.10.7.2.1.7.11009|65|0
1.3.6.1.2.1.10.7.2.1.7.11010|65|0
1.3.6.1.2.1.10.7.2.1.7.11011|65|0
1.3.6.1.2.1.10.7.2.1.7.11012|65|0
1.3.6.1.2.1.10.7.2.1.7.11013|65|0
1.3.6.1.2.1.10.7.2.1.7.11014|65|0
1.3.6.1.2.1.10.7.2.1.7.11015|65|0
1.3.6.1.2.1.10.7.2.1.7.11016|65|0
1.3.6.1.2.1.10.7.2.1.7.11017|65|0
1.3.6.1.2.1.10.7.2.1.7.11018|65|0
1.3.6.1.2.1.10.7.2.1.7.11019|65|0
1.3.6.1.2.1.10.7.2.1.7.11020|65|0
1.3.6.1.2.1.10.7.2.1.7.11021|65|0
1.3.6.1.2.1.10.7.2.1.7.11022|65|0
1.3.6.1.2.1.10.7.2.1.7.11023|65|0
1.3.6.1.2.1.10.7.2.1.7.11024|65|0
1.3.6.1.2.1.10.7.2.1.7.11025|65|0
1.3.6.1.2.1.10.7.2.1.7.11026|65|0
1.3.6.1.2.1.10.7.2.1.7.11027|65|0
1.3.6.1.2.1.10.7.2.1.7.11028|65|0
1.3.6.1.2.1.10.7.2.1.7.11029|65|0
1.3.6.1.2.1.10.7.2.1.7.11030|65|0
1.3.6.1.2.1.10.7.2.1.7.11031|65|0
1.3.6.1.2.1.10.7.2.1.7.11032|65|0
1.3.6.1.2.1.10.7.2.1.7.11033|65|0
1.3.6.1.2.1.10.7.2.1.7.11034|65|0
1.3.6.1.2.1.10.7.2.1.7.11035|65|0
1.3.6.1.2.1.10.7.2.1.7.11036|65|0
1.3.6.1.2.1.10.7.2.1.7.11037|65|0
1.3.6.1.2.1.10.7.2.1.7.11038|65|0
1.3.6.1.2.1.10.7.2.1.7.11039|65|0
1.3.6.1.2.1.10.7.2.1.7.11040|65|0
1.3.6.1.2.1.10.7.2.1.7.11041|65|0
1.3.6.1.2.1.10.7.2.1.7.11042|65|0
1.3.6.1.2.1.10.7.2.1.7.11043|65|0
1.3.6.1.2.1.10.7.2.1.7.11044|65|0
1.3.6.1.2.1.10.7.2.1.7.11045|65|0
1.3.6.1.2.1.10.7.2.1.7.11046|65|0
1.3.6.1.2.1.10.7.2.1.7.11047|65|0
1.3.6.1.2.1.10.7.2.1.7.11048|65|0
1.3.6.1.2.1.10.7.2.1.7.11101|65|0
1.3.6.1.2.1.10.7.2.1.7.11102|65|0
1.3.6.1.2.1.10.7.2.1.7.11103|65|0
1.3.6.1.2.1.10.7.2.1.7.11104|65|0
1.3.6.1.2.1.10.7.2.1.8.11001|65|0
1.3.6.1.2.1.10.7.2.1.8.11002|65|0
1.3.6.1.2.1.10.7.2.1.8.11003|65|0
1.3.6.1.2.1.10.7.2.1.8.11004|65|0
1.3.6.1.2.1.10.7.2.1.8.11005|65|0
1.3.6.1.2.1.10.7.2.1.8.11006|65|0
1.3.6.1.2.1.10.7.2.1.8.11007|65|0
1.3.6.1.2.1.10.7.2.1.8.11008|65|0
1.3.6.1.2.1.10.7.2.1.8.11009|65|0
1.3.6.1.2.1.10.7.2.1.8.11010|65|382
1.3.6.1.2.1.10.7.2.1.8.11011|65|616
1.3.6.1.2.1.10.7.2.1.8.11012|65|0
1.3.6.1.2.1.10.7.2.1.8.11013|65|0
1.3.6.1.2.1.10.7.2.1.8.11014|65|0
1.3.6.1.2.1.10.7.2.1.8.11015|65|0
1.3.6.1.2.1.10.7.2.1.8.11016|65|0
1.3.6.1.2.1.10.7.2.1.8.11017|65|0
1.3.6.1.2.1.10.7.2.1.8.11018|65|0
1.3.6.1.2.1.10.7.2.1.8.11019|65|0
1.3.6.1.2.1.10.7.2.1.8.11020|65|0
1.3.6.1.2.1.10.7.2.1.8.11021|65|0
1.3.6.1.2.1.10.7.2.1.8.11022|65|0
1.3.6.1.2.1.10.7.2.1.8.11023|65|0
1.3.6.1.2.1.10.7.2.1.8.11024|65|0
1.3.6.1.2.1.10.7.2.1.8.11025|65|0
1.3.6.1.2.1.10.7.2.1.8.11026|65|0
1.3.6.1.2.1.10.7.2.1.8.11027|65|0
1.3.6.1.2.1.10.7.2.1.8.11028|65|0
1.3.6.1.2.1.10.7.2.1.8.11029|65|0
1.3.6.1.2.1.10.7.2.1.8.11030|65|0
1.3.6.1.2.1.10.7.2.1.8.11031|65|0
1.3.6.1.2.1.10.7.2.1.8.11032|65|0
1.3.6.1.2.1.10.7.2.1.8.11033|65|0
1.3.6.1.2.1.10.7.2.1.8.11034|65|0
1.3.6.1.2.1.10.7.2.1.8.11035|65|0
1.3.6.1.2.1.10.7.2.1.8.11036|65|0
1.3.6.1.2.1.10.7.2.1.8.11037|65|0
1.3.6.1.2.1.10.7.2.1.8.11038|65|0
1.3.6.1.2.1.10.7.2.1.8.11039|65|0
1.3.6.1.2.1.10.7.2.1.8.11040|65|0
1.3.6.1.2.1.10.7.2.1.8.11041|65|0
1.3.6.1.2.1.10.7.2.1.8.11042|65|0
1.3.6.1.2.1.10.7.2.1.8.11043|65|0
1.3.6.1.2.1.10.7.2.1.8.11044|65|0
1.3.6.1.2.1.10.7.2.1.8.11045|65|0
1.3.6.1.2.1.10.7.2.1.8.11046|65|0
1.3.6.1.2.1.10.7.2.1.8.11047|65|0
1.3.6.1.2.1.10.7.2.1.8.11048|65|0
1.3.6.1.2.1.10.7.2.1.8.11101|65|0
1.3.6.1.2.1.10.7.2.1.8.11102|65|0
1.3.6.1.2.1.10.7.2.1.8.11103|65|0
1.3.6.1.2.1.10.7.2.1.8.11104|65|0
1.3.6.1.2.1.10.7.2.1.9.11001|65|0
1.3.6.1.2.1.10.7.2.1.9.11002|65|0
1.3.6.1.2.1.10.7.2.1.9.11003|65|0
1.3.6.1.2.1.10.7.2.1.9.11004|65|0
1.3.6.1.2.1.10.7.2.1.9.11005|65|0
1.3.6.1.2.1.10.7.2.1.9.11006|65|0
1.3.6.1.2.1.10.7.2.1.9.11007|65|0
1.3.6.1.2.1.10.7.2.1.9.11008|65|0
1.3.6.1.2.1.10.7.2.1.9.11009|65|0
1.3.6.1.2.1.10.7.2.1.9.11010|65|0
1.3.6.1.2.1.10.7.2.1.9.11011|65|0
1.3.6.1.2.1.10.7.2.1.9.11012|65|0
1.3.6.1.2.1.10.7.2.1.9.11013|65|0
1.3.6.1.2.1.10.7.2.1.9.11014|65|0
1.3.6.1.2.1.10.7.2.1.9.11015|65|0
1.3.6.1.2.1.10.7.2.1.9.11016|65|0
1.3.6.1.2.1.10.7.2.1.9.11017|65|0
1.3.6.1.2.1.10.7.2.1.9.11018|65|0
1.3.6.1.2.1.10.7.2.1.9.11019|65|0
1.3.6.1.2.1.10.7.2.1.9.11020|65|0
1.3.6.1.2.1.10.7.2.1.9.11021|65|0
1.3.6.1.2.1.10.7.2.1.9.11022|65|0
1.3.6.1.2.1.10.7.2.1.9.11023|65|0
1.3.6.1.2.1.10.7.2.1.9.11024|65|0
1.3.6.1.2.1.10.7.2.1.9.11025|65|0
1.3.6.1.2.1.10.7.2.1.9.11026|65|0
1.3.6.1.2.1.10.7.2.1.9.11027|65|0
1.3.6.1.2.1.10.7.2.1.9.11028|65|0
1.3.6.1.2.1.10.7.2.1.9.11029|65|0
1.3.6.1.2.1.10.7.2.1.9.11030|65|0
1.3.6.1.2.1.10.7.2.1.9.11031|65|0
1.3.6.1.2.1.10.7.2.1.9.11032|65|0
1.3.6.1.2.1.10.7.2.1.9.11033|65|0
1.3.6.1.2.1.10.7.2.1.9.11034|65|0
1.3.6.1.2.1.10.7.2.1.9.11035|65|0
1.3.6.1.2.1.10.7.2.1.9.11036|65|0
1.3.6.1.2.1.10.7.2.1.9.11037|65|0
1.3.6.1.2.1.10.7.2.1.9.11038|65|0
1.3.6.1.2.1.10.7.2.1.9.11039|65|0
1.3.6.1.2.1.10.7.2.1.9.11040|65|0
1.3.6.1.2.1.10.7.2.1.9.11041|65|0
1.3.6.1.2.1.10.7.2.1.9.11042|65|0
1.3.6.1.2.1.10.7.2.1.9.11043|65|0
1.3.6.1.2.1.10.7.2.1.9.11044|65|0
1.3.6.1.2.1.10.7.2.1.9.11045|65|0
1.3.6.1.2.1.10.7.2.1.9.11046|65|0
1.3.6.1.2.1.10.7.2.1.9.11047|65|0
1.3.6.1.2.1.10.7.2.1.9.11048|65|0
1.3.6.1.2.1.10.7.2.1.9.11101|65|0
1.3.6.1.2.1.10.7.2.1.9.11102|65|0
1.3.6.1.2.1.10.7.2.1.9.11103|65|0
1.3.6.1.2.1.10.7.2.1.9.11104|65|0
1.3.6.1.2.1.10.7.2.1.10.11001|65|0
1.3.6.1.2.1.10.7.2.1.10.11002|65|0
1.3.6.1.2.1.10.7.2.1.10.11003|65|0
1.3.6.1.2.1.10.7.2.1.10.11004|65|0
1.3.6.1.2.1.10.7.2.1.10.11005|65|0
1.3.6.1.2.1.10.7.2.1.10.11006|65|0
1.3.6.1.2.1.10.7.2.1.10.11007|65|0
1.3.6.1.2.1.10.7.2.1.10.11008|65|0
1.3.6.1.2.1.10.7.2.1.10.11009|65|0
1.3.6.1.2.1.10.7.2.1.10.11010|65|0
1.3.6.1.2.1.10.7.2.1.10.11011|65|0
1.3.6.1.2.1.10.7.2.1.10.11012|65|0
1.3.6.1.2.1.10.7.2.1.10.11013|65|0
1.3.6.1.2.1.10.7.2.1.10.11014|65|0
1.3.6.1.2.1.10.7.2.1.10.11015|65|0
1.3.6.1.2.1.10.7.2.1.10.11016|65|0
1.3.6.1.2.1.10.7.2.1.10.11017|65|0
1.3.6.1.2.1.10.7.2.1.10.11018|65|0
1.3.6.1.2.1.10.7.2.1.10.11019|65|0
1.3.6.1.2.1.10.7.2.1.10.11020|65|0
1.3.6.1.2.1.10.7.2.1.10.11021|65|0
1.3.6.1.2.1.10.7.2.1.10.11022|65|0
1.3.6.1.2.1.10.7.2.1.10.11023|65|0
1.3.6.1.2.1.10.7.2.1.10.11024|65|0
1.3.6.1.2.1.10.7.2.1.10.11025|65|0
1.3.6.1.2.1.10.7.2.1.10.11026|65|0
1.3.6.1.2.1.10.7.2.1.10.11027|65|0
1.3.6.1.2.1.10.7.2.1.10.11028|65|0
1.3.6.1.2.1.10.7.2.1.10.11029|65|0
1.3.6.1.2.1.10.7.2.1.10.11030|65|0
1.3.6.1.2.1.10.7.2.1.10.11031|65|0
1.3.6.1.2.1.10.7.2.1.10.11032|65|0
1.3.6.1.2.1.10.7.2.1.10.11033|65|0
1.3.6.1.2.1.10.7.2.1.10.11034|65|0
1.3.6.1.2.1.10.7.2.1.10.11035|65|0
1.3.6.1.2.1.10.7.2.1.10.11036|65|0
1.3.6.1.2.1.10.7.2.1.10.11037|65|0
1.3.6.1.2.1.10.7.2.1.10.11038|65|0
1.3.6.1.2.1.10.7.2.1.10.11039|65|0
1.3.6.1.2.1.10.7.2.1.10.11040|65|0
1.3.6.1.2.1.10.7.2.1.10.11041|65|0
1.3.6.1.2.1.10.7.2.1.10.11042|65|0
1.3.6.1.2.1.10.7.2.1.10.11043|65|0
1.3.6.1.2.1.10.7.2.1.10.11044|65|0
1.3.6.1.2.1.10.7.2.1.10.11045|65|0
1.3.6.1.2.1.10.7.2.1.10.11046|65|0
1.3.6.1.2.1.10.7.2.1.10.11047|65|0
1.3.6.1.2.1.10.7.2.1.10.11048|65|0
1.3.6.1.2.1.10.7.2.1.10.11101|65|0
1.3.6.1.2.1.10.7.2.1.10.11102|65|0
1.3.6.1.2.1.10.7.2.1.10.11103|65|0
1.3.6.1.2.1.10.7.2.1.10.11104|65|0
1.3.6.1.2.1.10.7.2.1.11.11001|65|0
1.3.6.1.2.1.10.7.2.1.11.11002|65|0
1.3.6.1.2.1.10.7.2.1.11.11003|65|0
1.3.6.1.2.1.10.7.2.1.11.11004|65|0
1.3.6.1.2.1.10.7.2.1.11.11005|65|0
1.3.6.1.2.1.10.7.2.1.11.11006|65|0
1.3.6.1.2.1.10.7.2.1.11.11007|65|0
1.3.6.1.2.1.10.7.2.1.11.11008|65|0
1.3.6.1.2.1.10.7.2.1.11.11009|65|0
1.3.6.1.2.1.10.7.2.1.11.11010|65|0
1.3.6.1.2.1.10.7.2.1.11.11011|65|0
1.3.6.1.2.1.10.7.2.1.11.11012|65|0
1.3.6.1.2.1.10.7.2.1.11.11013|65|0
1.3.6.1.2.1.10.7.2.1.11.11014|65|0
1.3.6.1.2.1.10.7.2.1.11.11015|65|0
1.3.6.1.2.1.10.7.2.1.11.11016|65|0
1.3.6.1.2.1.10.7.2.1.11.11017|65|0
1.3.6.1.2.1.10.7.2.1.11.11018|65|0
1.3.6.1.2.1.10.7.2.1.11.11019|65|0
1.3.6.1.2.1.10.7.2.1.11.11020|65|0
1.3.6.1.2.1.10.7.2.1.11.11021|65|0
1.3.6.1.2.1.10.7.2.1.11.11022|65|0
1.3.6.1.2.1.10.7.2.1.11.11023|65|0
1.3.6.1.2.1.10.7.2.1.11.11024|65|0
1.3.6.1.2.1.10.7.2.1.11.11025|65|0
1.3.6.1.2.1.10.7.2.1.11.11026|65|0
1.3.6.1.2.1.10.7.2.1.11.11027|65|0
1.3.6.1.2.1.10.7.2.1.11.11028|65|0
1.3.6.1.2.1.10.7.2.1.11.11029|65|0
1.3.6.1.2.1.10.7.2.1.11.11030|65|0
1.3.6.1.2.1.10.7.2.1.11.11031|65|0
1.3.6.1.2.1.10.7.2.1.11.11032|65|0
1.3.6.1.2.1.10.7.2.1.11.11033|65|0
1.3.6.1.2.1.10.7.2.1.11.11034|65|0
1.3.6.1.2.1.10.7.2.1.11.11035|65|0
1.3.6.1.2.1.10.7.2.1.11.11036|65|0
1.3.6.1.2.1.10.7.2.1.11.11037|65|0
1.3.6.1.2.1.10.7.2.1.11.11038|65|0
1.3.6.1.2.1.10.7.2.1.11.11039|65|0
1.3.6.1.2.1.10.7.2.1.11.11040|65|0
1.3.6.1.2.1.10.7.2.1.11.11041|65|0
1.3.6.1.2.1.10.7.2.1.11.11042|65|0
1.3.6.1.2.1.10.7.2.1.11.11043|65|0
1.3.6.1.2.1.10.7.2.1.11.11044|65|0
1.3.6.1.2.1.10.7.2.1.11.11045|65|0
1.3.6.1.2.1.10.7.2.1.11.11046|65|0
1.3.6.1.2.1.10.7.2.1.11.11047|65|0
1.3.6.1.2.1.10.7.2.1.11.11048|65|0
1.3.6.1.2.1.10.7.2.1.11.11101|65|0
1.3.6.1.2.1.10.7.2.1.11.11102|65|0
1.3.6.1.2.1.10.7.2.1.11.11103|65|0
1.3.6.1.2.1.10.7.2.1.11.11104|65|0
1.3.6.1.2.1.10.7.2.1.13.11001|65|0
1.3.6.1.2.1.10.7.2.1.13.11002|65|0
1.3.6.1.2.1.10.7.2.1.13.11003|65|0
1.3.6.1.2.1.10.7.2.1.13.11004|65|0
1.3.6.1.2.1.10.7.2.1.13.11005|65|0
1.3.6.1.2.1.10.7.2.1.13.11006|65|0
1.3.6.1.2.1.10.7.2.1.13.11007|65|0
1.3.6.1.2.1.10.7.2.1.13.11008|65|0
1.3.6.1.2.1.10.7.2.1.13.11009|65|0
1.3.6.1.2.1.10.7.2.1.13.11010|65|0
1.3.6.1.2.1.10.7.2.1.13.11011|65|0
1.3.6.1.2.1.10.7.2.1.13.11012|65|0
1.3.6.1.2.1.10.7.2.1.13.11013|65|0
1.3.6.1.2.1.10.7.2.1.13.11014|65|0
1.3.6.1.2.1.10.7.2.1.13.11015|65|0
1.3.6.1.2.1.10.7.2.1.13.11016|65|0
1.3.6.1.2.1.10.7.2.1.13.11017|65|0
1.3.6.1.2.1.10.7.2.1.13.11018|65|0
1.3.6.1.2.1.10.7.2.1.13.11019|65|0
1.3.6.1.2.1.10.7.2.1.13.11020|65|0
1.3.6.1.2.1.10.7.2.1.13.11021|65|0
1.3.6.1.2.1.10.7.2.1.13.11022|65|0
1.3.6.1.2.1.10.7.2.1.13.11023|65|0
1.3.6.1.2.1.10.7.2.1.13.11024|65|0
1.3.6.1.2.1.10.7.2.1.13.11025|65|0
1.3.6.1.2.1.10.7.2.1.13.11026|65|0
1.3.6.1.2.1.10.7.2.1.13.11027|65|0
1.3.6.1.2.1.10.7.2.1.13.11028|65|0
1.3.6.1.2.1.10.7.2.1.13.11029|65|0
1.3.6.1.2.1.10.7.2.1.13.11030|65|0
1.3.6.1.2.1.10.7.2.1.13.11031|65|0
1.3.6.1.2.1.10.7.2.1.13.11032|65|0
1.3.6.1.2.1.10.7.2.1.13.11033|65|0
1.3.6.1.2.1.10.7.2.1.13.11034|65|0
1.3.6.1.2.1.10.7.2.1.13.11035|65|0
1.3.6.1.2.1.10.7.2.1.13.11036|65|0
1.3.6.1.2.1.10.7.2.1.13.11037|65|0
1.3.6.1.2.1.10.7.2.1.13.11038|65|0
1.3.6.1.2.1.10.7.2.1.13.11039|65|0
1.3.6.1.2.1.10.7.2.1.13.11040|65|595
1.3.6.1.2.1.10.7.2.1.13.11041|65|0
1.3.6.1.2.1.10.7.2.1.13.11042|65|0
1.3.6.1.2.1.10.7.2.1.13.11043|65|0
1.3.6.1.2.1.10.7.2.1.13.11044|65|0
1.3.6.1.2.1.10.7.2.1.13.11045|65|0
1.3.6.1.2.1.10.7.2.1.13.11046|65|0
1.3.6.1.2.1.10.7.2.1.13.11047|65|0
1.3.6.1.2.1.10.7.2.1.13.11048|65|0
1.3.6.1.2.1.10.7.2.1.13.11101|65|0
1.3.6.1.2.1.10.7.2.1.13.11102|65|0
1.3.6.1.2.1.10.7.2.1.13.11103|65|0
1.3.6.1.2.1.10.7.2.1.13.11104|65|0
1.3.6.1.2.1.10.7.2.1.16.11001|65|0
1.3.6.1.2.1.10.7.2.1.16.11002|65|0
1.3.6.1.2.1.10.7.2.1.16.11003|65|0
1.3.6.1.2.1.10.7.2.1.16.11004|65|0
1.3.6.1.2.1.10.7.2.1.16.11005|65|0
1.3.6.1.2.1.10.7.2.1.16.11006|65|0
1.3.6.1.2.1.10.7.2.1.16.11007|65|0
1.3.6.1.2.1.10.7.2.1.16.11008|65|0
1.3.6.1.2.1.10.7.2.1.16.11009|65|0
1.3.6.1.2.1.10.7.2.1.16.11010|65|0
1.3.6.1.2.1.10.7.2.1.16.11011|65|0
1.3.6.1.2.1.10.7.2.1.16.11012|65|0
1.3.6.1.2.1.10.7.2.1.16.11013|65|0
1.3.6.1.2.1.10.7.2.1.16.11014|65|0
1.3.6.1.2.1.10.7.2.1.16.11015|65|0
1.3.6.1.2.1.10.7.2.1.16.11016|65|0
1.3.6.1.2.1.10.7.2.1.16.11017|65|0
1.3.6.1.2.1.10.7.2.1.16.11018|65|0
1.3.6.1.2.1.10.7.2.1.16.11019|65|0
1.3.6.1.2.1.10.7.2.1.16.11020|65|0
1.3.6.1.2.1.10.7.2.1.16.11021|65|0
1.3.6.1.2.1.10.7.2.1.16.11022|65|0
1.3.6.1.2.1.10.7.2.1.16.11023|65|0
1.3.6.1.2.1.10.7.2.1.16.11024|65|0
1.3.6.1.2.1.10.7.2.1.16.11025|65|0
1.3.6.1.2.1.10.7.2.1.16.11026|65|0
1.3.6.1.2.1.10.7.2.1.16.11027|65|0
1.3.6.1.2.1.10.7.2.1.16.11028|65|0
1.3.6.1.2.1.10.7.2.1.16.11029|65|0
1.3.6.1.2.1.10.7.2.1.16.11030|65|0
1.3.6.1.2.1.10.7.2.1.16.11031|65|0
1.3.6.1.2.1.10.7.2.1.16.11032|65|0
1.3.6.1.2.1.10.7.2.1.16.11033|65|0
1.3.6.1.2.1.10.7.2.1.16.11034|65|0
1.3.6.1.2.1.10.7.2.1.16.11035|65|0
1.3.6.1.2.1.10.7.2.1.16.11036|65|0
1.3.6.1.2.1.10.7.2.1.16.11037|65|0
1.3.6.1.2.1.10.7.2.1.16.11038|65|0
1.3.6.1.2.1.10.7.2.1.16.11039|65|0
1.3.6.1.2.1.10.7.2.1.16.11040|65|0
1.3.6.1.2.1.10.7.2.1.16.11041|65|0
1.3.6.1.2.1.10.7.2.1.16.11042|65|0
1.3.6.1.2.1.10.7.2.1.16.11043|65|0
1.3.6.1.2.1.10.7.2.1.16.11044|65|0
1.3.6.1.2.1.10.7.2.1.16.11045|65|0
1.3.6.1.2.1.10.7.2.1.16.11046|65|0
1.3.6.1.2.1.10.7.2.1.16.11047|65|0
1.3.6.1.2.1.10.7.2.1.16.11048|65|0
1.3.6.1.2.1.10.7.2.1.16.11101|65|0
1.3.6.1.2.1.10.7.2.1.16.11102|65|0
1.3.6.1.2.1.10.7.2.1.16.11103|65|0
1.3.6.1.2.1.10.7.2.1.16.11104|65|0
1.3.6.1.2.1.10.7.2.1.17.11001|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11002|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11003|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11004|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11005|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11006|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11007|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11008|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11009|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11010|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11011|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11012|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11013|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11014|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11015|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11016|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11017|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11018|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11019|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11020|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11021|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11022|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11023|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11024|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11025|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11026|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11027|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11028|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11029|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11030|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11031|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11032|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11033|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11034|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11035|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11036|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11037|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11038|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11039|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11040|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11041|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11042|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11043|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11044|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11045|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11046|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11047|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11048|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11101|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11102|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11103|6|0.0
1.3.6.1.2.1.10.7.2.1.17.11104|6|0.0
1.3.6.1.2.1.10.7.2.1.18.11001|65|0
1.3.6.1.2.1.10.7.2.1.18.11002|65|0
1.3.6.1.2.1.10.7.2.1.18.11003|65|2
1.3.6.1.2.1.10.7.2.1.18.11004|65|0
1.3.6.1.2.1.10.7.2.1.18.11005|65|0
1.3.6.1.2.1.10.7.2.1.18.11006|65|0
1.3.6.1.2.1.10.7.2.1.18.11007|65|0
1.3.6.1.2.1.10.7.2.1.18.11008|65|0
1.3.6.1.2.1.10.7.2.1.18.11009|65|0
1.3.6.1.2.1.10.7.2.1.18.11010|65|0
1.3.6.1.2.1.10.7.2.1.18.11011|65|1
1.3.6.1.2.1.10.7.2.1.18.11012|65|0
1.3.6.1.2.1.10.7.2.1.18.11013|65|0
1.3.6.1.2.1.10.7.2.1.18.11014|65|0
1.3.6.1.2.1.10.7.2.1.18.11015|65|0
1.3.6.1.2.1.10.7.2.1.18.11016|65|0
1.3.6.1.2.1.10.7.2.1.18.11017|65|0
1.3.6.1.2.1.10.7.2.1.18.11018|65|0
1.3.6.1.2.1.10.7.2.1.18.11019|65|0
1.3.6.1.2.1.10.7.2.1.18.11020|65|0
1.3.6.1.2.1.10.7.2.1.18.11021|65|0
1.3.6.1.2.1.10.7.2.1.18.11022|65|0
1.3.6.1.2.1.10.7.2.1.18.11023|65|0
1.3.6.1.2.1.10.7.2.1.18.11024|65|0
1.3.6.1.2.1.10.7.2.1.18.11025|65|0
1.3.6.1.2.1.10.7.2.1.18.11026|65|0
1.3.6.1.2.1.10.7.2.1.18.11027|65|0
1.3.6.1.2.1.10.7.2.1.18.11028|65|0
1.3.6.1.2.1.10.7.2.1.18.11029|65|0
1.3.6.1.2.1.10.7.2.1.18.11030|65|0
1.3.6.1.2.1.10.7.2.1.18.11031|65|0
1.3.6.1.2.1.10.7.2.1.18.11032|65|0
1.3.6.1.2.1.10.7.2.1.18.11033|65|0
1.3.6.1.2.1.10.7.2.1.18.11034|65|0
1.3.6.1.2.1.10.7.2.1.18.11035|65|0
1.3.6.1.2.1.10.7.2.1.18.11036|65|0
1.3.6.1.2.1.10.7.2.1.18.11037|65|0
1.3.6.1.2.1.10.7.2.1.18.11038|65|0
1.3.6.1.2.1.10.7.2.1.18.11039|65|0
1.3.6.1.2.1.10.7.2.1.18.11040|65|0
1.3.6.1.2.1.10.7.2.1.18.11041|65|0
1.3.6.1.2.1.10.7.2.1.18.11042|65|1
1.3.6.1.2.1.10.7.2.1.18.11043|65|0
1.3.6.1.2.1.10.7.2.1.18.11044|65|0
1.3.6.1.2.1.10.7.2.1.18.11045|65|0
1.3.6.1.2.1.10.7.2.1.18.11046|65|0
1.3.6.1.2.1.10.7.2.1.18.11047|65|0
1.3.6.1.2.1.10.7.2.1.18.11048|65|1
1.3.6.1.2.1.10.7.2.1.18.11101|65|0
1.3.6.1.2.1.10.7.2.1.18.11102|65|0
1.3.6.1.2.1.10.7.2.1.18.11103|65|0
1.3.6.1.2.1.10.7.2.1.18.11104|65|0
1.3.6.1.2.1.10.7.2.1.19.11001|2|1
1.3.6.1.2.1.10.7.2.1.19.11002|2|1
1.3.6.1.2.1.10.7.2.1.19.11003|2|3
1.3.6.1.2.1.10.7.2.1.19.11004|2|1
1.3.6.1.2.1.10.7.2.1.19.11005|2|1
1.3.6.1.2.1.10.7.2.1.19.11006|2|1
1.3.6.1.2.1.10.7.2.1.19.11007|2|3
1.3.6.1.2.1.10.7.2.1.19.11008|2|1
1.3.6.1.2.1.10.7.2.1.19.11009|2|3
1.3.6.1.2.1.10.7.2.1.19.11010|2|1
1.3.6.1.2.1.10.7.2.1.19.11011|2|3
1.3.6.1.2.1.10.7.2.1.19.11012|2|1
1.3.6.1.2.1.10.7.2.1.19.11013|2|1
1.3.6.1.2.1.10.7.2.1.19.11014|2|1
1.3.6.1.2.1.10.7.2.1.19.11015|2|1
1.3.6.1.2.1.10.7.2.1.19.11016|2|1
1.3.6.1.2.1.10.7.2.1.19.11017|2|1
1.3.6.1.2.1.10.7.2.1.19.11018|2|1
1.3.6.1.2.1.10.7.2.1.19.11019|2|1
1.3.6.1.2.1.10.7.2.1.19.11020|2|1
1.3.6.1.2.1.10.7.2.1.19.11021|2|1
1.3.6.1.2.1.10.7.2.1.19.11022|2|1
1.3.6.1.2.1.10.7.2.1.19.11023|2|1
1.3.6.1.2.1.10.7.2.1.19.11024|2|1
1.3.6.1.2.1.10.7.2.1.19.11025|2|1
1.3.6.1.2.1.10.7.2.1.19.11026|2|1
1.3.6.1.2.1.10.7.2.1.19.11027|2|1
1.3.6.1.2.1.10.7.2.1.19.11028|2|1
1.3.6.1.2.1.10.7.2.1.19.11029|2|1
1.3.6.1.2.1.10.7.2.1.19.11030|2|1
1.3.6.1.2.1.10.7.2.1.19.11031|2|1
1.3.6.1.2.1.10.7.2.1.19.11032|2|1
1.3.6.1.2.1.10.7.2.1.19.11033|2|1
1.3.6.1.2.1.10.7.2.1.19.11034|2|1
1.3.6.1.2.1.10.7.2.1.19.11035|2|1
1.3.6.1.2.1.10.7.2.1.19.11036|2|1
1.3.6.1.2.1.10.7.2.1.19.11037|2|1
1.3.6.1.2.1.10.7.2.1.19.11038|2|1
1.3.6.1.2.1.10.7.2.1.19.11039|2|1
1.3.6.1.2.1.10.7.2.1.19.11040|2|1
1.3.6.1.2.1.10.7.2.1.19.11041|2|1
1.3.6.1.2.1.10.7.2.1.19.11042|2|1
1.3.6.1.2.1.10.7.2.1.19.11043|2|3
1.3.6.1.2.1.10.7.2.1.19.11044|2|1
1.3.6.1.2.1.10.7.2.1.19.11045|2|1
1.3.6.1.2.1.10.7.2.1.19.11046|2|1
1.3.6.1.2.1.10.7.2.1.19.11047|2|1
1.3.6.1.2.1.10.7.2.1.19.11048|2|3
1.3.6.1.2.1.10.7.2.1.19.11101|2|1
1.3.6.1.2.1.10.7.2.1.19.11102|2|1
1.3.6.1.2.1.10.7.2.1.19.11103|2|1
1.3.6.1.2.1.10.7.2.1.19.11104|2|1
1.3.6.1.2.1.11.1.0|65|188442660
1.3.6.1.2.1.11.2.0|65|188964931
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|1714
1.3.6.1.2.1.11.5.0|65|249
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|181512187
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|37988
1.3.6.1.2.1.11.16.0|65|181681391
1.3.6.1.2.1.11.17.0|65|534
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|95456936
1.3.6.1.2.1.11.29.0|65|523986
1.3.6.1.2.1.11.30.0|2|1
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.15.1.0|4x|10
1.3.6.1.2.1.15.2.0|2|0
1.3.6.1.2.1.15.4.0|64x|00000000
1.3.6.1.2.1.16.19.1.0|4x|f0400040
1.3.6.1.2.1.16.19.2.0|4x|392d4d29
1.3.6.1.2.1.16.19.3.0|4|
1.3.6.1.2.1.16.19.4.0|4x|07c9051410281809
1.3.6.1.2.1.16.19.5.0|2|1
1.3.6.1.2.1.16.19.6.0|4x|666c6173683a2f63333735302d697073657276696365736b392d6d7a2e3132322d35352e534531302e62696e
1.3.6.1.2.1.16.19.7.0|64x|00000000
1.3.6.1.2.1.16.19.8.0|2|1
1.3.6.1.2.1.16.19.9.0|2|1
1.3.6.1.2.1.16.19.12.0|64x|00000000
1.3.6.1.2.1.16.19.15.0|4x|00
1.3.6.1.2.1.16.19.16.0|4x|6000
1.3.6.1.2.1.17.1.1.0|4x|0016c7026e80
1.3.6.1.2.1.17.1.2.0|2|34
1.3.6.1.2.1.17.1.3.0|2|2
1.3.6.1.2.1.17.1.4.1.1.110|2|110
1.3.6.1.2.1.17.1.4.1.1.118|2|118
1.3.6.1.2.1.17.1.4.1.1.122|2|122
1.3.6.1.2.1.17.1.4.1.1.123|2|123
1.3.6.1.2.1.17.1.4.1.1.124|2|124
1.3.6.1.2.1.17.1.4.1.1.125|2|125
1.3.6.1.2.1.17.1.4.1.1.126|2|126
1.3.6.1.2.1.17.1.4.1.1.127|2|127
1.3.6.1.2.1.17.1.4.1.1.128|2|128
1.3.6.1.2.1.17.1.4.1.1.129|2|129
1.3.6.1.2.1.17.1.4.1.1.130|2|130
1.3.6.1.2.1.17.1.4.1.1.131|2|131
1.3.6.1.2.1.17.1.4.1.1.132|2|132
1.3.6.1.2.1.17.1.4.1.1.133|2|133
1.3.6.1.2.1.17.1.4.1.1.134|2|134
1.3.6.1.2.1.17.1.4.1.1.135|2|135
1.3.6.1.2.1.17.1.4.1.1.136|2|136
1.3.6.1.2.1.17.1.4.1.1.137|2|137
1.3.6.1.2.1.17.1.4.1.1.138|2|138
1.3.6.1.2.1.17.1.4.1.1.139|2|139
1.3.6.1.2.1.17.1.4.1.1.140|2|140
1.3.6.1.2.1.17.1.4.1.1.141|2|141
1.3.6.1.2.1.17.1.4.1.1.142|2|142
1.3.6.1.2.1.17.1.4.1.1.143|2|143
1.3.6.1.2.1.17.1.4.1.1.144|2|144
1.3.6.1.2.1.17.1.4.1.1.145|2|145
1.3.6.1.2.1.17.1.4.1.1.146|2|146
1.3.6.1.2.1.17.1.4.1.1.147|2|147
1.3.6.1.2.1.17.1.4.1.1.148|2|148
1.3.6.1.2.1.17.1.4.1.1.149|2|149
1.3.6.1.2.1.17.1.4.1.1.150|2|150
1.3.6.1.2.1.17.1.4.1.1.151|2|151
1.3.6.1.2.1.17.1.4.1.1.159|2|159
1.3.6.1.2.1.17.1.4.1.1.160|2|160
1.3.6.1.2.1.17.1.4.1.2.110|2|11102
1.3.6.1.2.1.17.1.4.1.2.118|2|11008
1.3.6.1.2.1.17.1.4.1.2.122|2|11012
1.3.6.1.2.1.17.1.4.1.2.123|2|11013
1.3.6.1.2.1.17.1.4.1.2.124|2|11014
1.3.6.1.2.1.17.1.4.1.2.125|2|11015
1.3.6.1.2.1.17.1.4.1.2.126|2|11016
1.3.6.1.2.1.17.1.4.1.2.127|2|11017
1.3.6.1.2.1.17.1.4.1.2.128|2|11018
1.3.6.1.2.1.17.1.4.1.2.129|2|11019
1.3.6.1.2.1.17.1.4.1.2.130|2|11020
1.3.6.1.2.1.17.1.4.1.2.131|2|11021
1.3.6.1.2.1.17.1.4.1.2.132|2|11022
1.3.6.1.2.1.17.1.4.1.2.133|2|11023
1.3.6.1.2.1.17.1.4.1.2.134|2|11024
1.3.6.1.2.1.17.1.4.1.2.135|2|11103
1.3.6.1.2.1.17.1.4.1.2.136|2|11104
1.3.6.1.2.1.17.1.4.1.2.137|2|11025
1.3.6.1.2.1.17.1.4.1.2.138|2|11026
1.3.6.1.2.1.17.1.4.1.2.139|2|11027
1.3.6.1.2.1.17.1.4.1.2.140|2|11028
1.3.6.1.2.1.17.1.4.1.2.141|2|11029
1.3.6.1.2.1.17.1.4.1.2.142|2|11030
1.3.6.1.2.1.17.1.4.1.2.143|2|11031
1.3.6.1.2.1.17.1.4.1.2.144|2|11032
1.3.6.1.2.1.17.1.4.1.2.145|2|11033
1.3.6.1.2.1.17.1.4.1.2.146|2|11034
1.3.6.1.2.1.17.1.4.1.2.147|2|11035
1.3.6.1.2.1.17.1.4.1.2.148|2|11036
1.3.6.1.2.1.17.1.4.1.2.149|2|11037
1.3.6.1.2.1.17.1.4.1.2.150|2|11038
1.3.6.1.2.1.17.1.4.1.2.151|2|11039
1.3.6.1.2.1.17.1.4.1.2.159|2|11047
1.3.6.1.2.1.17.1.4.1.2.160|2|11048
1.3.6.1.2.1.17.1.4.1.3.110|6|0.0
1.3.6.1.2.1.17.1.4.1.3.118|6|0.0
1.3.6.1.2.1.17.1.4.1.3.122|6|0.0
1.3.6.1.2.1.17.1.4.1.3.123|6|0.0
1.3.6.1.2.1.17.1.4.1.3.124|6|0.0
1.3.6.1.2.1.17.1.4.1.3.125|6|0.0
1.3.6.1.2.1.17.1.4.1.3.126|6|0.0
1.3.6.1.2.1.17.1.4.1.3.127|6|0.0
1.3.6.1.2.1.17.1.4.1.3.128|6|0.0
1.3.6.1.2.1.17.1.4.1.3.129|6|0.0
1.3.6.1.2.1.17.1.4.1.3.130|6|0.0
1.3.6.1.2.1.17.1.4.1.3.131|6|0.0
1.3.6.1.2.1.17.1.4.1.3.132|6|0.0
1.3.6.1.2.1.17.1.4.1.3.133|6|0.0
1.3.6.1.2.1.17.1.4.1.3.134|6|0.0
1.3.6.1.2.1.17.1.4.1.3.135|6|0.0
1.3.6.1.2.1.17.1.4.1.3.136|6|0.0
1.3.6.1.2.1.17.1.4.1.3.137|6|0.0
1.3.6.1.2.1.17.1.4.1.3.138|6|0.0
1.3.6.1.2.1.17.1.4.1.3.139|6|0.0
1.3.6.1.2.1.17.1.4.1.3.140|6|0.0
1.3.6.1.2.1.17.1.4.1.3.141|6|0.0
1.3.6.1.2.1.17.1.4.1.3.142|6|0.0
1.3.6.1.2.1.17.1.4.1.3.143|6|0.0
1.3.6.1.2.1.17.1.4.1.3.144|6|0.0
1.3.6.1.2.1.17.1.4.1.3.145|6|0.0
1.3.6.1.2.1.17.1.4.1.3.146|6|0.0
1.3.6.1.2.1.17.1.4.1.3.147|6|0.0
1.3.6.1.2.1.17.1.4.1.3.148|6|0.0
1.3.6.1.2.1.17.1.4.1.3.149|6|0.0
1.3.6.1.2.1.17.1.4.1.3.150|6|0.0
1.3.6.1.2.1.17.1.4.1.3.151|6|0.0
1.3.6.1.2.1.17.1.4.1.3.159|6|0.0
1.3.6.1.2.1.17.1.4.1.3.160|6|0.0
1.3.6.1.2.1.17.1.4.1.4.110|65|0
1.3.6.1.2.1.17.1.4.1.4.118|65|0
1.3.6.1.2.1.17.1.4.1.4.122|65|0
1.3.6.1.2.1.17.1.4.1.4.123|65|0
1.3.6.1.2.1.17.1.4.1.4.124|65|0
1.3.6.1.2.1.17.1.4.1.4.125|65|0
1.3.6.1.2.1.17.1.4.1.4.126|65|0
1.3.6.1.2.1.17.1.4.1.4.127|65|0
1.3.6.1.2.1.17.1.4.1.4.128|65|0
1.3.6.1.2.1.17.1.4.1.4.129|65|0
1.3.6.1.2.1.17.1.4.1.4.130|65|0
1.3.6.1.2.1.17.1.4.1.4.131|65|0
1.3.6.1.2.1.17.1.4.1.4.132|65|0
1.3.6.1.2.1.17.1.4.1.4.133|65|0
1.3.6.1.2.1.17.1.4.1.4.134|65|0
1.3.6.1.2.1.17.1.4.1.4.135|65|0
1.3.6.1.2.1.17.1.4.1.4.136|65|0
1.3.6.1.2.1.17.1.4.1.4.137|65|0
1.3.6.1.2.1.17.1.4.1.4.138|65|0
1.3.6.1.2.1.17.1.4.1.4.139|65|0
1.3.6.1.2.1.17.1.4.1.4.140|65|0
1.3.6.1.2.1.17.1.4.1.4.141|65|0
1.3.6.1.2.1.17.1.4.1.4.142|65|0
1.3.6.1.2.1.17.1.4.1.4.143|65|0
1.3.6.1.2.1.17.1.4.1.4.144|65|0
1.3.6.1.2.1.17.1.4.1.4.145|65|0
1.3.6.1.2.1.17.1.4.1.4.146|65|0
1.3.6.1.2.1.17.1.4.1.4.147|65|0
1.3.6.1.2.1.17.1.4.1.4.148|65|0
1.3.6.1.2.1.17.1.4.1.4.149|65|0
1.3.6.1.2.1.17.1.4.1.4.150|65|0
1.3.6.1.2.1.17.1.4.1.4.151|65|0
1.3.6.1.2.1.17.1.4.1.4.159|65|0
1.3.6.1.2.1.17.1.4.1.4.160|65|0
1.3.6.1.2.1.17.1.4.1.5.110|65|0
1.3.6.1.2.1.17.1.4.1.5.118|65|0
1.3.6.1.2.1.17.1.4.1.5.122|65|0
1.3.6.1.2.1.17.1.4.1.5.123|65|0
1.3.6.1.2.1.17.1.4.1.5.124|65|0
1.3.6.1.2.1.17.1.4.1.5.125|65|0
1.3.6.1.2.1.17.1.4.1.5.126|65|0
1.3.6.1.2.1.17.1.4.1.5.127|65|0
1.3.6.1.2.1.17.1.4.1.5.128|65|0
1.3.6.1.2.1.17.1.4.1.5.129|65|0
1.3.6.1.2.1.17.1.4.1.5.130|65|0
1.3.6.1.2.1.17.1.4.1.5.131|65|0
1.3.6.1.2.1.17.1.4.1.5.132|65|0
1.3.6.1.2.1.17.1.4.1.5.133|65|0
1.3.6.1.2.1.17.1.4.1.5.134|65|0
1.3.6.1.2.1.17.1.4.1.5.135|65|0
1.3.6.1.2.1.17.1.4.1.5.136|65|0
1.3.6.1.2.1.17.1.4.1.5.137|65|0
1.3.6.1.2.1.17.1.4.1.5.138|65|0
1.3.6.1.2.1.17.1.4.1.5.139|65|0
1.3.6.1.2.1.17.1.4.1.5.140|65|0
1.3.6.1.2.1.17.1.4.1.5.141|65|0
1.3.6.1.2.1.17.1.4.1.5.142|65|0
1.3.6.1.2.1.17.1.4.1.5.143|65|0
1.3.6.1.2.1.17.1.4.1.5.144|65|0
1.3.6.1.2.1.17.1.4.1.5.145|65|0
1.3.6.1.2.1.17.1.4.1.5.146|65|0
1.3.6.1.2.1.17.1.4.1.5.147|65|0
1.3.6.1.2.1.17.1.4.1.5.148|65|0
1.3.6.1.2.1.17.1.4.1.5.149|65|0
1.3.6.1.2.1.17.1.4.1.5.150|65|0
1.3.6.1.2.1.17.1.4.1.5.151|65|0
1.3.6.1.2.1.17.1.4.1.5.159|65|0
1.3.6.1.2.1.17.1.4.1.5.160|65|0
1.3.6.1.2.1.17.2.1.0|2|3
1.3.6.1.2.1.17.2.2.0|2|32769
1.3.6.1.2.1.17.2.3.0|67|284552700
1.3.6.1.2.1.17.2.4.0|65|6
1.3.6.1.2.1.17.2.5.0|4x|8000000b866f376c
1.3.6.1.2.1.17.2.6.0|2|40023
1.3.6.1.2.1.17.2.7.0|2|160
1.3.6.1.2.1.17.2.8.0|2|2000
1.3.6.1.2.1.17.2.9.0|2|200
1.3.6.1.2.1.17.2.10.0|2|100
1.3.6.1.2.1.17.2.11.0|2|1500
1.3.6.1.2.1.17.2.12.0|2|2000
1.3.6.1.2.1.17.2.13.0|2|200
1.3.6.1.2.1.17.2.14.0|2|1500
1.3.6.1.2.1.17.2.15.1.1.160|2|160
1.3.6.1.2.1.17.2.15.1.2.160|2|128
1.3.6.1.2.1.17.2.15.1.3.160|2|5
1.3.6.1.2.1.17.2.15.1.4.160|2|1
1.3.6.1.2.1.17.2.15.1.5.160|2|19
1.3.6.1.2.1.17.2.15.1.6.160|4x|8000000b866f376c
1.3.6.1.2.1.17.2.15.1.7.160|2|40004
1.3.6.1.2.1.17.2.15.1.8.160|4x|80016899cda59f80
1.3.6.1.2.1.17.2.15.1.9.160|4x|8008
1.3.6.1.2.1.17.2.15.1.10.160|65|1
1.3.6.1.2.1.17.4.1.0|65|0
1.3.6.1.2.1.17.4.2.0|2|3600
1.3.6.1.2.1.17.4.3.1.1.104.153.205.165.159.136|4x|6899cda59f88
1.3.6.1.2.1.17.4.3.1.2.104.153.205.165.159.136|2|160
1.3.6.1.2.1.17.4.3.1.3.104.153.205.165.159.136|2|3
1.3.6.1.2.1.17.4.4.1.1.110|2|110
1.3.6.1.2.1.17.4.4.1.1.118|2|118
1.3.6.1.2.1.17.4.4.1.1.122|2|122
1.3.6.1.2.1.17.4.4.1.1.123|2|123
1.3.6.1.2.1.17.4.4.1.1.124|2|124
1.3.6.1.2.1.17.4.4.1.1.125|2|125
1.3.6.1.2.1.17.4.4.1.1.126|2|126
1.3.6.1.2.1.17.4.4.1.1.127|2|127
1.3.6.1.2.1.17.4.4.1.1.128|2|128
1.3.6.1.2.1.17.4.4.1.1.129|2|129
1.3.6.1.2.1.17.4.4.1.1.130|2|130
1.3.6.1.2.1.17.4.4.1.1.131|2|131
1.3.6.1.2.1.17.4.4.1.1.132|2|132
1.3.6.1.2.1.17.4.4.1.1.133|2|133
1.3.6.1.2.1.17.4.4.1.1.134|2|134
1.3.6.1.2.1.17.4.4.1.1.135|2|135
1.3.6.1.2.1.17.4.4.1.1.136|2|136
1.3.6.1.2.1.17.4.4.1.1.137|2|137
1.3.6.1.2.1.17.4.4.1.1.138|2|138
1.3.6.1.2.1.17.4.4.1.1.139|2|139
1.3.6.1.2.1.17.4.4.1.1.140|2|140
1.3.6.1.2.1.17.4.4.1.1.141|2|141
1.3.6.1.2.1.17.4.4.1.1.142|2|142
1.3.6.1.2.1.17.4.4.1.1.143|2|143
1.3.6.1.2.1.17.4.4.1.1.144|2|144
1.3.6.1.2.1.17.4.4.1.1.145|2|145
1.3.6.1.2.1.17.4.4.1.1.146|2|146
1.3.6.1.2.1.17.4.4.1.1.147|2|147
1.3.6.1.2.1.17.4.4.1.1.148|2|148
1.3.6.1.2.1.17.4.4.1.1.149|2|149
1.3.6.1.2.1.17.4.4.1.1.150|2|150
1.3.6.1.2.1.17.4.4.1.1.151|2|151
1.3.6.1.2.1.17.4.4.1.1.159|2|159
1.3.6.1.2.1.17.4.4.1.1.160|2|160
1.3.6.1.2.1.17.4.4.1.2.110|2|1510
1.3.6.1.2.1.17.4.4.1.2.118|2|1510
1.3.6.1.2.1.17.4.4.1.2.122|2|1510
1.3.6.1.2.1.17.4.4.1.2.123|2|1510
1.3.6.1.2.1.17.4.4.1.2.124|2|1510
1.3.6.1.2.1.17.4.4.1.2.125|2|1510
1.3.6.1.2.1.17.4.4.1.2.126|2|1510
1.3.6.1.2.1.17.4.4.1.2.127|2|1510
1.3.6.1.2.1.17.4.4.1.2.128|2|1510
1.3.6.1.2.1.17.4.4.1.2.129|2|1510
1.3.6.1.2.1.17.4.4.1.2.130|2|1510
1.3.6.1.2.1.17.4.4.1.2.131|2|1510
1.3.6.1.2.1.17.4.4.1.2.132|2|1510
1.3.6.1.2.1.17.4.4.1.2.133|2|1510
1.3.6.1.2.1.17.4.4.1.2.134|2|1510
1.3.6.1.2.1.17.4.4.1.2.135|2|1510
1.3.6.1.2.1.17.4.4.1.2.136|2|1510
1.3.6.1.2.1.17.4.4.1.2.137|2|1510
1.3.6.1.2.1.17.4.4.1.2.138|2|1510
1.3.6.1.2.1.17.4.4.1.2.139|2|1510
1.3.6.1.2.1.17.4.4.1.2.140|2|1510
1.3.6.1.2.1.17.4.4.1.2.141|2|1510
1.3.6.1.2.1.17.4.4.1.2.142|2|1510
1.3.6.1.2.1.17.4.4.1.2.143|2|1510
1.3.6.1.2.1.17.4.4.1.2.144|2|1510
1.3.6.1.2.1.17.4.4.1.2.145|2|1510
1.3.6.1.2.1.17.4.4.1.2.146|2|1510
1.3.6.1.2.1.17.4.4.1.2.147|2|1510
1.3.6.1.2.1.17.4.4.1.2.148|2|1510
1.3.6.1.2.1.17.4.4.1.2.149|2|1510
1.3.6.1.2.1.17.4.4.1.2.150|2|1510
1.3.6.1.2.1.17.4.4.1.2.151|2|1510
1.3.6.1.2.1.17.4.4.1.2.159|2|1510
1.3.6.1.2.1.17.4.4.1.2.160|2|1510
1.3.6.1.2.1.17.4.4.1.3.110|65|0
1.3.6.1.2.1.17.4.4.1.3.118|65|0
1.3.6.1.2.1.17.4.4.1.3.122|65|0
1.3.6.1.2.1.17.4.4.1.3.123|65|0
1.3.6.1.2.1.17.4.4.1.3.124|65|0
1.3.6.1.2.1.17.4.4.1.3.125|65|0
1.3.6.1.2.1.17.4.4.1.3.126|65|0
1.3.6.1.2.1.17.4.4.1.3.127|65|0
1.3.6.1.2.1.17.4.4.1.3.128|65|0
1.3.6.1.2.1.17.4.4.1.3.129|65|0
1.3.6.1.2.1.17.4.4.1.3.130|65|0
1.3.6.1.2.1.17.4.4.1.3.131|65|0
1.3.6.1.2.1.17.4.4.1.3.132|65|0
1.3.6.1.2.1.17.4.4.1.3.133|65|0
1.3.6.1.2.1.17.4.4.1.3.134|65|0
1.3.6.1.2.1.17.4.4.1.3.135|65|0
1.3.6.1.2.1.17.4.4.1.3.136|65|0
1.3.6.1.2.1.17.4.4.1.3.137|65|0
1.3.6.1.2.1.17.4.4.1.3.138|65|0
1.3.6.1.2.1.17.4.4.1.3.139|65|0
1.3.6.1.2.1.17.4.4.1.3.140|65|0
1.3.6.1.2.1.17.4.4.1.3.141|65|0
1.3.6.1.2.1.17.4.4.1.3.142|65|0
1.3.6.1.2.1.17.4.4.1.3.143|65|0
1.3.6.1.2.1.17.4.4.1.3.144|65|0
1.3.6.1.2.1.17.4.4.1.3.145|65|0
1.3.6.1.2.1.17.4.4.1.3.146|65|0
1.3.6.1.2.1.17.4.4.1.3.147|65|0
1.3.6.1.2.1.17.4.4.1.3.148|65|0
1.3.6.1.2.1.17.4.4.1.3.149|65|0
1.3.6.1.2.1.17.4.4.1.3.150|65|0
1.3.6.1.2.1.17.4.4.1.3.151|65|1336
1.3.6.1.2.1.17.4.4.1.3.159|65|0
1.3.6.1.2.1.17.4.4.1.3.160|65|678574929
1.3.6.1.2.1.17.4.4.1.4.110|65|0
1.3.6.1.2.1.17.4.4.1.4.118|65|0
1.3.6.1.2.1.17.4.4.1.4.122|65|0
1.3.6.1.2.1.17.4.4.1.4.123|65|0
1.3.6.1.2.1.17.4.4.1.4.124|65|0
1.3.6.1.2.1.17.4.4.1.4.125|65|0
1.3.6.1.2.1.17.4.4.1.4.126|65|0
1.3.6.1.2.1.17.4.4.1.4.127|65|0
1.3.6.1.2.1.17.4.4.1.4.128|65|0
1.3.6.1.2.1.17.4.4.1.4.129|65|0
1.3.6.1.2.1.17.4.4.1.4.130|65|0
1.3.6.1.2.1.17.4.4.1.4.131|65|0
1.3.6.1.2.1.17.4.4.1.4.132|65|0
1.3.6.1.2.1.17.4.4.1.4.133|65|0
1.3.6.1.2.1.17.4.4.1.4.134|65|0
1.3.6.1.2.1.17.4.4.1.4.135|65|0
1.3.6.1.2.1.17.4.4.1.4.136|65|0
1.3.6.1.2.1.17.4.4.1.4.137|65|0
1.3.6.1.2.1.17.4.4.1.4.138|65|0
1.3.6.1.2.1.17.4.4.1.4.139|65|0
1.3.6.1.2.1.17.4.4.1.4.140|65|0
1.3.6.1.2.1.17.4.4.1.4.141|65|0
1.3.6.1.2.1.17.4.4.1.4.142|65|0
1.3.6.1.2.1.17.4.4.1.4.143|65|0
1.3.6.1.2.1.17.4.4.1.4.144|65|0
1.3.6.1.2.1.17.4.4.1.4.145|65|0
1.3.6.1.2.1.17.4.4.1.4.146|65|0
1.3.6.1.2.1.17.4.4.1.4.147|65|0
1.3.6.1.2.1.17.4.4.1.4.148|65|0
1.3.6.1.2.1.17.4.4.1.4.149|65|0
1.3.6.1.2.1.17.4.4.1.4.150|65|0
1.3.6.1.2.1.17.4.4.1.4.151|65|5066
1.3.6.1.2.1.17.4.4.1.4.159|65|0
1.3.6.1.2.1.17.4.4.1.4.160|65|477425132
1.3.6.1.2.1.17.4.4.1.5.110|65|0
1.3.6.1.2.1.17.4.4.1.5.118|65|0
1.3.6.1.2.1.17.4.4.1.5.122|65|0
1.3.6.1.2.1.17.4.4.1.5.123|65|0
1.3.6.1.2.1.17.4.4.1.5.124|65|0
1.3.6.1.2.1.17.4.4.1.5.125|65|0
1.3.6.1.2.1.17.4.4.1.5.126|65|0
1.3.6.1.2.1.17.4.4.1.5.127|65|0
1.3.6.1.2.1.17.4.4.1.5.128|65|0
1.3.6.1.2.1.17.4.4.1.5.129|65|0
1.3.6.1.2.1.17.4.4.1.5.130|65|0
1.3.6.1.2.1.17.4.4.1.5.131|65|0
1.3.6.1.2.1.17.4.4.1.5.132|65|0
1.3.6.1.2.1.17.4.4.1.5.133|65|0
1.3.6.1.2.1.17.4.4.1.5.134|65|0
1.3.6.1.2.1.17.4.4.1.5.135|65|0
1.3.6.1.2.1.17.4.4.1.5.136|65|0
1.3.6.1.2.1.17.4.4.1.5.137|65|0
1.3.6.1.2.1.17.4.4.1.5.138|65|0
1.3.6.1.2.1.17.4.4.1.5.139|65|0
1.3.6.1.2.1.17.4.4.1.5.140|65|0
1.3.6.1.2.1.17.4.4.1.5.141|65|0
1.3.6.1.2.1.17.4.4.1.5.142|65|0
1.3.6.1.2.1.17.4.4.1.5.143|65|0
1.3.6.1.2.1.17.4.4.1.5.144|65|0
1.3.6.1.2.1.17.4.4.1.5.145|65|0
1.3.6.1.2.1.17.4.4.1.5.146|65|0
1.3.6.1.2.1.17.4.4.1.5.147|65|0
1.3.6.1.2.1.17.4.4.1.5.148|65|0
1.3.6.1.2.1.17.4.4.1.5.149|65|0
1.3.6.1.2.1.17.4.4.1.5.150|65|0
1.3.6.1.2.1.17.4.4.1.5.151|65|0
1.3.6.1.2.1.17.4.4.1.5.159|65|0
1.3.6.1.2.1.17.4.4.1.5.160|65|0
1.3.6.1.2.1.31.1.1.1.1.1|4|Vl1
1.3.6.1.2.1.31.1.1.1.1.60|4|Vl60
1.3.6.1.2.1.31.1.1.1.1.70|4|Vl70
1.3.6.1.2.1.31.1.1.1.1.5185|4|StackPort3
1.3.6.1.2.1.31.1.1.1.1.5186|4x|537461636b5375622d5374332d31
1.3.6.1.2.1.31.1.1.1.1.5187|4x|537461636b5375622d5374332d32
1.3.6.1.2.1.31.1.1.1.1.11001|4x|4661332f302f31
1.3.6.1.2.1.31.1.1.1.1.11002|4x|4661332f302f32
1.3.6.1.2.1.31.1.1.1.1.11003|4x|4661332f302f33
1.3.6.1.2.1.31.1.1.1.1.11004|4x|4661332f302f34
1.3.6.1.2.1.31.1.1.1.1.11005|4x|4661332f302f35
1.3.6.1.2.1.31.1.1.1.1.11006|4x|4661332f302f36
1.3.6.1.2.1.31.1.1.1.1.11007|4x|4661332f302f37
1.3.6.1.2.1.31.1.1.1.1.11008|4x|4661332f302f38
1.3.6.1.2.1.31.1.1.1.1.11009|4x|4661332f302f39
1.3.6.1.2.1.31.1.1.1.1.11010|4x|4661332f302f3130
1.3.6.1.2.1.31.1.1.1.1.11011|4x|4661332f302f3131
1.3.6.1.2.1.31.1.1.1.1.11012|4x|4661332f302f3132
1.3.6.1.2.1.31.1.1.1.1.11013|4x|4661332f302f3133
1.3.6.1.2.1.31.1.1.1.1.11014|4x|4661332f302f3134
1.3.6.1.2.1.31.1.1.1.1.11015|4x|4661332f302f3135
1.3.6.1.2.1.31.1.1.1.1.11016|4x|4661332f302f3136
1.3.6.1.2.1.31.1.1.1.1.11017|4x|4661332f302f3137
1.3.6.1.2.1.31.1.1.1.1.11018|4x|4661332f302f3138
1.3.6.1.2.1.31.1.1.1.1.11019|4x|4661332f302f3139
1.3.6.1.2.1.31.1.1.1.1.11020|4x|4661332f302f3230
1.3.6.1.2.1.31.1.1.1.1.11021|4x|4661332f302f3231
1.3.6.1.2.1.31.1.1.1.1.11022|4x|4661332f302f3232
1.3.6.1.2.1.31.1.1.1.1.11023|4x|4661332f302f3233
1.3.6.1.2.1.31.1.1.1.1.11024|4x|4661332f302f3234
1.3.6.1.2.1.31.1.1.1.1.11025|4x|4661332f302f3235
1.3.6.1.2.1.31.1.1.1.1.11026|4x|4661332f302f3236
1.3.6.1.2.1.31.1.1.1.1.11027|4x|4661332f302f3237
1.3.6.1.2.1.31.1.1.1.1.11028|4x|4661332f302f3238
1.3.6.1.2.1.31.1.1.1.1.11029|4x|4661332f302f3239
1.3.6.1.2.1.31.1.1.1.1.11030|4x|4661332f302f3330
1.3.6.1.2.1.31.1.1.1.1.11031|4x|4661332f302f3331
1.3.6.1.2.1.31.1.1.1.1.11032|4x|4661332f302f3332
1.3.6.1.2.1.31.1.1.1.1.11033|4x|4661332f302f3333
1.3.6.1.2.1.31.1.1.1.1.11034|4x|4661332f302f3334
1.3.6.1.2.1.31.1.1.1.1.11035|4x|4661332f302f3335
1.3.6.1.2.1.31.1.1.1.1.11036|4x|4661332f302f3336
1.3.6.1.2.1.31.1.1.1.1.11037|4x|4661332f302f3337
1.3.6.1.2.1.31.1.1.1.1.11038|4x|4661332f302f3338
1.3.6.1.2.1.31.1.1.1.1.11039|4x|4661332f302f3339
1.3.6.1.2.1.31.1.1.1.1.11040|4x|4661332f302f3430
1.3.6.1.2.1.31.1.1.1.1.11041|4x|4661332f302f3431
1.3.6.1.2.1.31.1.1.1.1.11042|4x|4661332f302f3432
1.3.6.1.2.1.31.1.1.1.1.11043|4x|4661332f302f3433
1.3.6.1.2.1.31.1.1.1.1.11044|4x|4661332f302f3434
1.3.6.1.2.1.31.1.1.1.1.11045|4x|4661332f302f3435
1.3.6.1.2.1.31.1.1.1.1.11046|4x|4661332f302f3436
1.3.6.1.2.1.31.1.1.1.1.11047|4x|4661332f302f3437
1.3.6.1.2.1.31.1.1.1.1.11048|4x|4661332f302f3438
1.3.6.1.2.1.31.1.1.1.1.11101|4x|4769332f302f31
1.3.6.1.2.1.31.1.1.1.1.11102|4x|4769332f302f32
1.3.6.1.2.1.31.1.1.1.1.11103|4x|4769332f302f33
1.3.6.1.2.1.31.1.1.1.1.11104|4x|4769332f302f34
1.3.6.1.2.1.31.1.1.1.1.14501|4|Nu0
1.3.6.1.2.1.31.1.1.1.2.11001|65|0
1.3.6.1.2.1.31.1.1.1.2.11002|65|0
1.3.6.1.2.1.31.1.1.1.2.11003|65|183121
1.3.6.1.2.1.31.1.1.1.2.11004|65|0
1.3.6.1.2.1.31.1.1.1.2.11005|65|0
1.3.6.1.2.1.31.1.1.1.2.11006|65|5025
1.3.6.1.2.1.31.1.1.1.2.11007|65|230914
1.3.6.1.2.1.31.1.1.1.2.11008|65|0
1.3.6.1.2.1.31.1.1.1.2.11009|65|1
1.3.6.1.2.1.31.1.1.1.2.11010|65|79
1.3.6.1.2.1.31.1.1.1.2.11011|65|97
1.3.6.1.2.1.31.1.1.1.2.11012|65|0
1.3.6.1.2.1.31.1.1.1.2.11013|65|0
1.3.6.1.2.1.31.1.1.1.2.11014|65|0
1.3.6.1.2.1.31.1.1.1.2.11015|65|0
1.3.6.1.2.1.31.1.1.1.2.11016|65|0
1.3.6.1.2.1.31.1.1.1.2.11017|65|0
1.3.6.1.2.1.31.1.1.1.2.11018|65|0
1.3.6.1.2.1.31.1.1.1.2.11019|65|0
1.3.6.1.2.1.31.1.1.1.2.11020|65|0
1.3.6.1.2.1.31.1.1.1.2.11021|65|0
1.3.6.1.2.1.31.1.1.1.2.11022|65|0
1.3.6.1.2.1.31.1.1.1.2.11023|65|0
1.3.6.1.2.1.31.1.1.1.2.11024|65|0
1.3.6.1.2.1.31.1.1.1.2.11025|65|0
1.3.6.1.2.1.31.1.1.1.2.11026|65|0
1.3.6.1.2.1.31.1.1.1.2.11027|65|0
1.3.6.1.2.1.31.1.1.1.2.11028|65|0
1.3.6.1.2.1.31.1.1.1.2.11029|65|0
1.3.6.1.2.1.31.1.1.1.2.11030|65|0
1.3.6.1.2.1.31.1.1.1.2.11031|65|0
1.3.6.1.2.1.31.1.1.1.2.11032|65|0
1.3.6.1.2.1.31.1.1.1.2.11033|65|0
1.3.6.1.2.1.31.1.1.1.2.11034|65|0
1.3.6.1.2.1.31.1.1.1.2.11035|65|0
1.3.6.1.2.1.31.1.1.1.2.11036|65|0
1.3.6.1.2.1.31.1.1.1.2.11037|65|0
1.3.6.1.2.1.31.1.1.1.2.11038|65|0
1.3.6.1.2.1.31.1.1.1.2.11039|65|674
1.3.6.1.2.1.31.1.1.1.2.11040|65|2475
1.3.6.1.2.1.31.1.1.1.2.11041|65|149
1.3.6.1.2.1.31.1.1.1.2.11042|65|82767
1.3.6.1.2.1.31.1.1.1.2.11043|65|124182
1.3.6.1.2.1.31.1.1.1.2.11044|65|0
1.3.6.1.2.1.31.1.1.1.2.11045|65|221
1.3.6.1.2.1.31.1.1.1.2.11046|65|0
1.3.6.1.2.1.31.1.1.1.2.11047|65|0
1.3.6.1.2.1.31.1.1.1.2.11048|65|283282163
1.3.6.1.2.1.31.1.1.1.2.11101|65|0
1.3.6.1.2.1.31.1.1.1.2.11102|65|0
1.3.6.1.2.1.31.1.1.1.2.11103|65|0
1.3.6.1.2.1.31.1.1.1.2.11104|65|0
1.3.6.1.2.1.31.1.1.1.3.11001|65|0
1.3.6.1.2.1.31.1.1.1.3.11002|65|0
1.3.6.1.2.1.31.1.1.1.3.11003|65|198422
1.3.6.1.2.1.31.1.1.1.3.11004|65|0
1.3.6.1.2.1.31.1.1.1.3.11005|65|0
1.3.6.1.2.1.31.1.1.1.3.11006|65|1173
1.3.6.1.2.1.31.1.1.1.3.11007|65|181844
1.3.6.1.2.1.31.1.1.1.3.11008|65|0
1.3.6.1.2.1.31.1.1.1.3.11009|65|11360071
1.3.6.1.2.1.31.1.1.1.3.11010|65|824
1.3.6.1.2.1.31.1.1.1.3.11011|65|221031
1.3.6.1.2.1.31.1.1.1.3.11012|65|0
1.3.6.1.2.1.31.1.1.1.3.11013|65|0
1.3.6.1.2.1.31.1.1.1.3.11014|65|0
1.3.6.1.2.1.31.1.1.1.3.11015|65|0
1.3.6.1.2.1.31.1.1.1.3.11016|65|0
1.3.6.1.2.1.31.1.1.1.3.11017|65|0
1.3.6.1.2.1.31.1.1.1.3.11018|65|0
1.3.6.1.2.1.31.1.1.1.3.11019|65|0
1.3.6.1.2.1.31.1.1.1.3.11020|65|0
1.3.6.1.2.1.31.1.1.1.3.11021|65|0
1.3.6.1.2.1.31.1.1.1.3.11022|65|0
1.3.6.1.2.1.31.1.1.1.3.11023|65|0
1.3.6.1.2.1.31.1.1.1.3.11024|65|0
1.3.6.1.2.1.31.1.1.1.3.11025|65|0
1.3.6.1.2.1.31.1.1.1.3.11026|65|0
1.3.6.1.2.1.31.1.1.1.3.11027|65|0
1.3.6.1.2.1.31.1.1.1.3.11028|65|0
1.3.6.1.2.1.31.1.1.1.3.11029|65|0
1.3.6.1.2.1.31.1.1.1.3.11030|65|0
1.3.6.1.2.1.31.1.1.1.3.11031|65|0
1.3.6.1.2.1.31.1.1.1.3.11032|65|0
1.3.6.1.2.1.31.1.1.1.3.11033|65|0
1.3.6.1.2.1.31.1.1.1.3.11034|65|0
1.3.6.1.2.1.31.1.1.1.3.11035|65|0
1.3.6.1.2.1.31.1.1.1.3.11036|65|0
1.3.6.1.2.1.31.1.1.1.3.11037|65|0
1.3.6.1.2.1.31.1.1.1.3.11038|65|0
1.3.6.1.2.1.31.1.1.1.3.11039|65|662
1.3.6.1.2.1.31.1.1.1.3.11040|65|57
1.3.6.1.2.1.31.1.1.1.3.11041|65|137
1.3.6.1.2.1.31.1.1.1.3.11042|65|212085
1.3.6.1.2.1.31.1.1.1.3.11043|65|10757
1.3.6.1.2.1.31.1.1.1.3.11044|65|0
1.3.6.1.2.1.31.1.1.1.3.11045|65|290
1.3.6.1.2.1.31.1.1.1.3.11046|65|0
1.3.6.1.2.1.31.1.1.1.3.11047|65|0
1.3.6.1.2.1.31.1.1.1.3.11048|65|69122879
1.3.6.1.2.1.31.1.1.1.3.11101|65|0
1.3.6.1.2.1.31.1.1.1.3.11102|65|0
1.3.6.1.2.1.31.1.1.1.3.11103|65|0
1.3.6.1.2.1.31.1.1.1.3.11104|65|0
1.3.6.1.2.1.31.1.1.1.4.11001|65|0
1.3.6.1.2.1.31.1.1.1.4.11002|65|0
1.3.6.1.2.1.31.1.1.1.4.11003|65|21678188
1.3.6.1.2.1.31.1.1.1.4.11004|65|0
1.3.6.1.2.1.31.1.1.1.4.11005|65|0
1.3.6.1.2.1.31.1.1.1.4.11006|65|63350
1.3.6.1.2.1.31.1.1.1.4.11007|65|32495575
1.3.6.1.2.1.31.1.1.1.4.11008|65|0
1.3.6.1.2.1.31.1.1.1.4.11009|65|32686459
1.3.6.1.2.1.31.1.1.1.4.11010|65|11738886
1.3.6.1.2.1.31.1.1.1.4.11011|65|21417495
1.3.6.1.2.1.31.1.1.1.4.11012|65|0
1.3.6.1.2.1.31.1.1.1.4.11013|65|0
1.3.6.1.2.1.31.1.1.1.4.11014|65|0
1.3.6.1.2.1.31.1.1.1.4.11015|65|0
1.3.6.1.2.1.31.1.1.1.4.11016|65|0
1.3.6.1.2.1.31.1.1.1.4.11017|65|0
1.3.6.1.2.1.31.1.1.1.4.11018|65|0
1.3.6.1.2.1.31.1.1.1.4.11019|65|0
1.3.6.1.2.1.31.1.1.1.4.11020|65|0
1.3.6.1.2.1.31.1.1.1.4.11021|65|0
1.3.6.1.2.1.31.1.1.1.4.11022|65|0
1.3.6.1.2.1.31.1.1.1.4.11023|65|0
1.3.6.1.2.1.31.1.1.1.4.11024|65|0
1.3.6.1.2.1.31.1.1.1.4.11025|65|0
1.3.6.1.2.1.31.1.1.1.4.11026|65|0
1.3.6.1.2.1.31.1.1.1.4.11027|65|0
1.3.6.1.2.1.31.1.1.1.4.11028|65|0
1.3.6.1.2.1.31.1.1.1.4.11029|65|0
1.3.6.1.2.1.31.1.1.1.4.11030|65|0
1.3.6.1.2.1.31.1.1.1.4.11031|65|0
1.3.6.1.2.1.31.1.1.1.4.11032|65|0
1.3.6.1.2.1.31.1.1.1.4.11033|65|0
1.3.6.1.2.1.31.1.1.1.4.11034|65|0
1.3.6.1.2.1.31.1.1.1.4.11035|65|0
1.3.6.1.2.1.31.1.1.1.4.11036|65|0
1.3.6.1.2.1.31.1.1.1.4.11037|65|0
1.3.6.1.2.1.31.1.1.1.4.11038|65|0
1.3.6.1.2.1.31.1.1.1.4.11039|65|4313
1.3.6.1.2.1.31.1.1.1.4.11040|65|473699
1.3.6.1.2.1.31.1.1.1.4.11041|65|1723
1.3.6.1.2.1.31.1.1.1.4.11042|65|8324617
1.3.6.1.2.1.31.1.1.1.4.11043|65|10573332
1.3.6.1.2.1.31.1.1.1.4.11044|65|0
1.3.6.1.2.1.31.1.1.1.4.11045|65|1376
1.3.6.1.2.1.31.1.1.1.4.11046|65|0
1.3.6.1.2.1.31.1.1.1.4.11047|65|0
1.3.6.1.2.1.31.1.1.1.4.11048|65|35516528
1.3.6.1.2.1.31.1.1.1.4.11101|65|0
1.3.6.1.2.1.31.1.1.1.4.11102|65|0
1.3.6.1.2.1.31.1.1.1.4.11103|65|0
1.3.6.1.2.1.31.1.1.1.4.11104|65|0
1.3.6.1.2.1.31.1.1.1.5.11001|65|0
1.3.6.1.2.1.31.1.1.1.5.11002|65|0
1.3.6.1.2.1.31.1.1.1.5.11003|65|116035442
1.3.6.1.2.1.31.1.1.1.5.11004|65|0
1.3.6.1.2.1.31.1.1.1.5.11005|65|0
1.3.6.1.2.1.31.1.1.1.5.11006|65|295429
1.3.6.1.2.1.31.1.1.1.5.11007|65|169318673
1.3.6.1.2.1.31.1.1.1.5.11008|65|0
1.3.6.1.2.1.31.1.1.1.5.11009|65|158140655
1.3.6.1.2.1.31.1.1.1.5.11010|65|60185523
1.3.6.1.2.1.31.1.1.1.5.11011|65|107751373
1.3.6.1.2.1.31.1.1.1.5.11012|65|0
1.3.6.1.2.1.31.1.1.1.5.11013|65|0
1.3.6.1.2.1.31.1.1.1.5.11014|65|0
1.3.6.1.2.1.31.1.1.1.5.11015|65|0
1.3.6.1.2.1.31.1.1.1.5.11016|65|0
1.3.6.1.2.1.31.1.1.1.5.11017|65|0
1.3.6.1.2.1.31.1.1.1.5.11018|65|0
1.3.6.1.2.1.31.1.1.1.5.11019|65|0
1.3.6.1.2.1.31.1.1.1.5.11020|65|0
1.3.6.1.2.1.31.1.1.1.5.11021|65|0
1.3.6.1.2.1.31.1.1.1.5.11022|65|0
1.3.6.1.2.1.31.1.1.1.5.11023|65|0
1.3.6.1.2.1.31.1.1.1.5.11024|65|0
1.3.6.1.2.1.31.1.1.1.5.11025|65|0
1.3.6.1.2.1.31.1.1.1.5.11026|65|0
1.3.6.1.2.1.31.1.1.1.5.11027|65|0
1.3.6.1.2.1.31.1.1.1.5.11028|65|0
1.3.6.1.2.1.31.1.1.1.5.11029|65|0
1.3.6.1.2.1.31.1.1.1.5.11030|65|0
1.3.6.1.2.1.31.1.1.1.5.11031|65|0
1.3.6.1.2.1.31.1.1.1.5.11032|65|0
1.3.6.1.2.1.31.1.1.1.5.11033|65|0
1.3.6.1.2.1.31.1.1.1.5.11034|65|0
1.3.6.1.2.1.31.1.1.1.5.11035|65|0
1.3.6.1.2.1.31.1.1.1.5.11036|65|0
1.3.6.1.2.1.31.1.1.1.5.11037|65|0
1.3.6.1.2.1.31.1.1.1.5.11038|65|0
1.3.6.1.2.1.31.1.1.1.5.11039|65|11
1.3.6.1.2.1.31.1.1.1.5.11040|65|552952
1.3.6.1.2.1.31.1.1.1.5.11041|65|2324
1.3.6.1.2.1.31.1.1.1.5.11042|65|3069955
1.3.6.1.2.1.31.1.1.1.5.11043|65|4400603
1.3.6.1.2.1.31.1.1.1.5.11044|65|0
1.3.6.1.2.1.31.1.1.1.5.11045|65|6287
1.3.6.1.2.1.31.1.1.1.5.11046|65|0
1.3.6.1.2.1.31.1.1.1.5.11047|65|0
1.3.6.1.2.1.31.1.1.1.5.11048|65|17438877
1.3.6.1.2.1.31.1.1.1.5.11101|65|0
1.3.6.1.2.1.31.1.1.1.5.11102|65|0
1.3.6.1.2.1.31.1.1.1.5.11103|65|0
1.3.6.1.2.1.31.1.1.1.5.11104|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|39857997
1.3.6.1.2.1.31.1.1.1.6.60|70|37505809994
1.3.6.1.2.1.31.1.1.1.6.70|70|0
1.3.6.1.2.1.31.1.1.1.6.11001|70|0
1.3.6.1.2.1.31.1.1.1.6.11002|70|0
1.3.6.1.2.1.31.1.1.1.6.11003|70|21183138878
1.3.6.1.2.1.31.1.1.1.6.11004|70|0
1.3.6.1.2.1.31.1.1.1.6.11005|70|0
1.3.6.1.2.1.31.1.1.1.6.11006|70|4106741
1.3.6.1.2.1.31.1.1.1.6.11007|70|1179544868
1.3.6.1.2.1.31.1.1.1.6.11008|70|0
1.3.6.1.2.1.31.1.1.1.6.11009|70|771533396
1.3.6.1.2.1.31.1.1.1.6.11010|70|129828299
1.3.6.1.2.1.31.1.1.1.6.11011|70|245940894
1.3.6.1.2.1.31.1.1.1.6.11012|70|0
1.3.6.1.2.1.31.1.1.1.6.11013|70|0
1.3.6.1.2.1.31.1.1.1.6.11014|70|0
1.3.6.1.2.1.31.1.1.1.6.11015|70|0
1.3.6.1.2.1.31.1.1.1.6.11016|70|0
1.3.6.1.2.1.31.1.1.1.6.11017|70|0
1.3.6.1.2.1.31.1.1.1.6.11018|70|0
1.3.6.1.2.1.31.1.1.1.6.11019|70|0
1.3.6.1.2.1.31.1.1.1.6.11020|70|0
1.3.6.1.2.1.31.1.1.1.6.11021|70|0
1.3.6.1.2.1.31.1.1.1.6.11022|70|0
1.3.6.1.2.1.31.1.1.1.6.11023|70|0
1.3.6.1.2.1.31.1.1.1.6.11024|70|0
1.3.6.1.2.1.31.1.1.1.6.11025|70|0
1.3.6.1.2.1.31.1.1.1.6.11026|70|0
1.3.6.1.2.1.31.1.1.1.6.11027|70|0
1.3.6.1.2.1.31.1.1.1.6.11028|70|0
1.3.6.1.2.1.31.1.1.1.6.11029|70|0
1.3.6.1.2.1.31.1.1.1.6.11030|70|0
1.3.6.1.2.1.31.1.1.1.6.11031|70|0
1.3.6.1.2.1.31.1.1.1.6.11032|70|0
1.3.6.1.2.1.31.1.1.1.6.11033|70|0
1.3.6.1.2.1.31.1.1.1.6.11034|70|0
1.3.6.1.2.1.31.1.1.1.6.11035|70|0
1.3.6.1.2.1.31.1.1.1.6.11036|70|0
1.3.6.1.2.1.31.1.1.1.6.11037|70|0
1.3.6.1.2.1.31.1.1.1.6.11038|70|0
1.3.6.1.2.1.31.1.1.1.6.11039|70|384704
1.3.6.1.2.1.31.1.1.1.6.11040|70|110733015
1.3.6.1.2.1.31.1.1.1.6.11041|70|117152
1.3.6.1.2.1.31.1.1.1.6.11042|70|714870979
1.3.6.1.2.1.31.1.1.1.6.11043|70|151083822
1.3.6.1.2.1.31.1.1.1.6.11044|70|0
1.3.6.1.2.1.31.1.1.1.6.11045|70|743743
1.3.6.1.2.1.31.1.1.1.6.11046|70|0
1.3.6.1.2.1.31.1.1.1.6.11047|70|0
1.3.6.1.2.1.31.1.1.1.6.11048|70|970693434542
1.3.6.1.2.1.31.1.1.1.6.11101|70|0
1.3.6.1.2.1.31.1.1.1.6.11102|70|0
1.3.6.1.2.1.31.1.1.1.6.11103|70|0
1.3.6.1.2.1.31.1.1.1.6.11104|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|225085
1.3.6.1.2.1.31.1.1.1.7.60|70|356458219
1.3.6.1.2.1.31.1.1.1.7.70|70|0
1.3.6.1.2.1.31.1.1.1.7.11001|70|0
1.3.6.1.2.1.31.1.1.1.7.11002|70|0
1.3.6.1.2.1.31.1.1.1.7.11003|70|44862354
1.3.6.1.2.1.31.1.1.1.7.11004|70|0
1.3.6.1.2.1.31.1.1.1.7.11005|70|0
1.3.6.1.2.1.31.1.1.1.7.11006|70|12001
1.3.6.1.2.1.31.1.1.1.7.11007|70|3569848
1.3.6.1.2.1.31.1.1.1.7.11008|70|0
1.3.6.1.2.1.31.1.1.1.7.11009|70|371265
1.3.6.1.2.1.31.1.1.1.7.11010|70|2023957
1.3.6.1.2.1.31.1.1.1.7.11011|70|3616560
1.3.6.1.2.1.31.1.1.1.7.11012|70|0
1.3.6.1.2.1.31.1.1.1.7.11013|70|0
1.3.6.1.2.1.31.1.1.1.7.11014|70|0
1.3.6.1.2.1.31.1.1.1.7.11015|70|0
1.3.6.1.2.1.31.1.1.1.7.11016|70|0
1.3.6.1.2.1.31.1.1.1.7.11017|70|0
1.3.6.1.2.1.31.1.1.1.7.11018|70|0
1.3.6.1.2.1.31.1.1.1.7.11019|70|0
1.3.6.1.2.1.31.1.1.1.7.11020|70|0
1.3.6.1.2.1.31.1.1.1.7.11021|70|0
1.3.6.1.2.1.31.1.1.1.7.11022|70|0
1.3.6.1.2.1.31.1.1.1.7.11023|70|0
1.3.6.1.2.1.31.1.1.1.7.11024|70|0
1.3.6.1.2.1.31.1.1.1.7.11025|70|0
1.3.6.1.2.1.31.1.1.1.7.11026|70|0
1.3.6.1.2.1.31.1.1.1.7.11027|70|0
1.3.6.1.2.1.31.1.1.1.7.11028|70|0
1.3.6.1.2.1.31.1.1.1.7.11029|70|0
1.3.6.1.2.1.31.1.1.1.7.11030|70|0
1.3.6.1.2.1.31.1.1.1.7.11031|70|0
1.3.6.1.2.1.31.1.1.1.7.11032|70|0
1.3.6.1.2.1.31.1.1.1.7.11033|70|0
1.3.6.1.2.1.31.1.1.1.7.11034|70|0
1.3.6.1.2.1.31.1.1.1.7.11035|70|0
1.3.6.1.2.1.31.1.1.1.7.11036|70|0
1.3.6.1.2.1.31.1.1.1.7.11037|70|0
1.3.6.1.2.1.31.1.1.1.7.11038|70|0
1.3.6.1.2.1.31.1.1.1.7.11039|70|0
1.3.6.1.2.1.31.1.1.1.7.11040|70|207284
1.3.6.1.2.1.31.1.1.1.7.11041|70|759
1.3.6.1.2.1.31.1.1.1.7.11042|70|2529480
1.3.6.1.2.1.31.1.1.1.7.11043|70|685275
1.3.6.1.2.1.31.1.1.1.7.11044|70|0
1.3.6.1.2.1.31.1.1.1.7.11045|70|3666
1.3.6.1.2.1.31.1.1.1.7.11046|70|0
1.3.6.1.2.1.31.1.1.1.7.11047|70|0
1.3.6.1.2.1.31.1.1.1.7.11048|70|326169887
1.3.6.1.2.1.31.1.1.1.7.11101|70|0
1.3.6.1.2.1.31.1.1.1.7.11102|70|0
1.3.6.1.2.1.31.1.1.1.7.11103|70|0
1.3.6.1.2.1.31.1.1.1.7.11104|70|0
1.3.6.1.2.1.31.1.1.1.8.11001|70|0
1.3.6.1.2.1.31.1.1.1.8.11002|70|0
1.3.6.1.2.1.31.1.1.1.8.11003|70|183121
1.3.6.1.2.1.31.1.1.1.8.11004|70|0
1.3.6.1.2.1.31.1.1.1.8.11005|70|0
1.3.6.1.2.1.31.1.1.1.8.11006|70|5025
1.3.6.1.2.1.31.1.1.1.8.11007|70|230914
1.3.6.1.2.1.31.1.1.1.8.11008|70|0
1.3.6.1.2.1.31.1.1.1.8.11009|70|1
1.3.6.1.2.1.31.1.1.1.8.11010|70|79
1.3.6.1.2.1.31.1.1.1.8.11011|70|97
1.3.6.1.2.1.31.1.1.1.8.11012|70|0
1.3.6.1.2.1.31.1.1.1.8.11013|70|0
1.3.6.1.2.1.31.1.1.1.8.11014|70|0
1.3.6.1.2.1.31.1.1.1.8.11015|70|0
1.3.6.1.2.1.31.1.1.1.8.11016|70|0
1.3.6.1.2.1.31.1.1.1.8.11017|70|0
1.3.6.1.2.1.31.1.1.1.8.11018|70|0
1.3.6.1.2.1.31.1.1.1.8.11019|70|0
1.3.6.1.2.1.31.1.1.1.8.11020|70|0
1.3.6.1.2.1.31.1.1.1.8.11021|70|0
1.3.6.1.2.1.31.1.1.1.8.11022|70|0
1.3.6.1.2.1.31.1.1.1.8.11023|70|0
1.3.6.1.2.1.31.1.1.1.8.11024|70|0
1.3.6.1.2.1.31.1.1.1.8.11025|70|0
1.3.6.1.2.1.31.1.1.1.8.11026|70|0
1.3.6.1.2.1.31.1.1.1.8.11027|70|0
1.3.6.1.2.1.31.1.1.1.8.11028|70|0
1.3.6.1.2.1.31.1.1.1.8.11029|70|0
1.3.6.1.2.1.31.1.1.1.8.11030|70|0
1.3.6.1.2.1.31.1.1.1.8.11031|70|0
1.3.6.1.2.1.31.1.1.1.8.11032|70|0
1.3.6.1.2.1.31.1.1.1.8.11033|70|0
1.3.6.1.2.1.31.1.1.1.8.11034|70|0
1.3.6.1.2.1.31.1.1.1.8.11035|70|0
1.3.6.1.2.1.31.1.1.1.8.11036|70|0
1.3.6.1.2.1.31.1.1.1.8.11037|70|0
1.3.6.1.2.1.31.1.1.1.8.11038|70|0
1.3.6.1.2.1.31.1.1.1.8.11039|70|674
1.3.6.1.2.1.31.1.1.1.8.11040|70|2475
1.3.6.1.2.1.31.1.1.1.8.11041|70|149
1.3.6.1.2.1.31.1.1.1.8.11042|70|82767
1.3.6.1.2.1.31.1.1.1.8.11043|70|124182
1.3.6.1.2.1.31.1.1.1.8.11044|70|0
1.3.6.1.2.1.31.1.1.1.8.11045|70|221
1.3.6.1.2.1.31.1.1.1.8.11046|70|0
1.3.6.1.2.1.31.1.1.1.8.11047|70|0
1.3.6.1.2.1.31.1.1.1.8.11048|70|283282163
1.3.6.1.2.1.31.1.1.1.8.11101|70|0
1.3.6.1.2.1.31.1.1.1.8.11102|70|0
1.3.6.1.2.1.31.1.1.1.8.11103|70|0
1.3.6.1.2.1.31.1.1.1.8.11104|70|0
1.3.6.1.2.1.31.1.1.1.9.11001|70|0
1.3.6.1.2.1.31.1.1.1.9.11002|70|0
1.3.6.1.2.1.31.1.1.1.9.11003|70|198422
1.3.6.1.2.1.31.1.1.1.9.11004|70|0
1.3.6.1.2.1.31.1.1.1.9.11005|70|0
1.3.6.1.2.1.31.1.1.1.9.11006|70|1173
1.3.6.1.2.1.31.1.1.1.9.11007|70|181844
1.3.6.1.2.1.31.1.1.1.9.11008|70|0
1.3.6.1.2.1.31.1.1.1.9.11009|70|11360071
1.3.6.1.2.1.31.1.1.1.9.11010|70|824
1.3.6.1.2.1.31.1.1.1.9.11011|70|221031
1.3.6.1.2.1.31.1.1.1.9.11012|70|0
1.3.6.1.2.1.31.1.1.1.9.11013|70|0
1.3.6.1.2.1.31.1.1.1.9.11014|70|0
1.3.6.1.2.1.31.1.1.1.9.11015|70|0
1.3.6.1.2.1.31.1.1.1.9.11016|70|0
1.3.6.1.2.1.31.1.1.1.9.11017|70|0
1.3.6.1.2.1.31.1.1.1.9.11018|70|0
1.3.6.1.2.1.31.1.1.1.9.11019|70|0
1.3.6.1.2.1.31.1.1.1.9.11020|70|0
1.3.6.1.2.1.31.1.1.1.9.11021|70|0
1.3.6.1.2.1.31.1.1.1.9.11022|70|0
1.3.6.1.2.1.31.1.1.1.9.11023|70|0
1.3.6.1.2.1.31.1.1.1.9.11024|70|0
1.3.6.1.2.1.31.1.1.1.9.11025|70|0
1.3.6.1.2.1.31.1.1.1.9.11026|70|0
1.3.6.1.2.1.31.1.1.1.9.11027|70|0
1.3.6.1.2.1.31.1.1.1.9.11028|70|0
1.3.6.1.2.1.31.1.1.1.9.11029|70|0
1.3.6.1.2.1.31.1.1.1.9.11030|70|0
1.3.6.1.2.1.31.1.1.1.9.11031|70|0
1.3.6.1.2.1.31.1.1.1.9.11032|70|0
1.3.6.1.2.1.31.1.1.1.9.11033|70|0
1.3.6.1.2.1.31.1.1.1.9.11034|70|0
1.3.6.1.2.1.31.1.1.1.9.11035|70|0
1.3.6.1.2.1.31.1.1.1.9.11036|70|0
1.3.6.1.2.1.31.1.1.1.9.11037|70|0
1.3.6.1.2.1.31.1.1.1.9.11038|70|0
1.3.6.1.2.1.31.1.1.1.9.11039|70|662
1.3.6.1.2.1.31.1.1.1.9.11040|70|57
1.3.6.1.2.1.31.1.1.1.9.11041|70|137
1.3.6.1.2.1.31.1.1.1.9.11042|70|212085
1.3.6.1.2.1.31.1.1.1.9.11043|70|10757
1.3.6.1.2.1.31.1.1.1.9.11044|70|0
1.3.6.1.2.1.31.1.1.1.9.11045|70|290
1.3.6.1.2.1.31.1.1.1.9.11046|70|0
1.3.6.1.2.1.31.1.1.1.9.11047|70|0
1.3.6.1.2.1.31.1.1.1.9.11048|70|4364090175
1.3.6.1.2.1.31.1.1.1.9.11101|70|0
1.3.6.1.2.1.31.1.1.1.9.11102|70|0
1.3.6.1.2.1.31.1.1.1.9.11103|70|0
1.3.6.1.2.1.31.1.1.1.9.11104|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|0
1.3.6.1.2.1.31.1.1.1.10.60|70|48360660686
1.3.6.1.2.1.31.1.1.1.10.70|70|0
1.3.6.1.2.1.31.1.1.1.10.11001|70|0
1.3.6.1.2.1.31.1.1.1.10.11002|70|0
1.3.6.1.2.1.31.1.1.1.10.11003|70|23506791758
1.3.6.1.2.1.31.1.1.1.10.11004|70|0
1.3.6.1.2.1.31.1.1.1.10.11005|70|0
1.3.6.1.2.1.31.1.1.1.10.11006|70|54002210
1.3.6.1.2.1.31.1.1.1.10.11007|70|21358678432
1.3.6.1.2.1.31.1.1.1.10.11008|70|0
1.3.6.1.2.1.31.1.1.1.10.11009|70|20045339976
1.3.6.1.2.1.31.1.1.1.10.11010|70|10153070199
1.3.6.1.2.1.31.1.1.1.10.11011|70|15044386975
1.3.6.1.2.1.31.1.1.1.10.11012|70|0
1.3.6.1.2.1.31.1.1.1.10.11013|70|0
1.3.6.1.2.1.31.1.1.1.10.11014|70|0
1.3.6.1.2.1.31.1.1.1.10.11015|70|0
1.3.6.1.2.1.31.1.1.1.10.11016|70|0
1.3.6.1.2.1.31.1.1.1.10.11017|70|0
1.3.6.1.2.1.31.1.1.1.10.11018|70|0
1.3.6.1.2.1.31.1.1.1.10.11019|70|0
1.3.6.1.2.1.31.1.1.1.10.11020|70|0
1.3.6.1.2.1.31.1.1.1.10.11021|70|0
1.3.6.1.2.1.31.1.1.1.10.11022|70|0
1.3.6.1.2.1.31.1.1.1.10.11023|70|0
1.3.6.1.2.1.31.1.1.1.10.11024|70|0
1.3.6.1.2.1.31.1.1.1.10.11025|70|0
1.3.6.1.2.1.31.1.1.1.10.11026|70|0
1.3.6.1.2.1.31.1.1.1.10.11027|70|0
1.3.6.1.2.1.31.1.1.1.10.11028|70|0
1.3.6.1.2.1.31.1.1.1.10.11029|70|0
1.3.6.1.2.1.31.1.1.1.10.11030|70|0
1.3.6.1.2.1.31.1.1.1.10.11031|70|0
1.3.6.1.2.1.31.1.1.1.10.11032|70|0
1.3.6.1.2.1.31.1.1.1.10.11033|70|0
1.3.6.1.2.1.31.1.1.1.10.11034|70|0
1.3.6.1.2.1.31.1.1.1.10.11035|70|0
1.3.6.1.2.1.31.1.1.1.10.11036|70|0
1.3.6.1.2.1.31.1.1.1.10.11037|70|0
1.3.6.1.2.1.31.1.1.1.10.11038|70|0
1.3.6.1.2.1.31.1.1.1.10.11039|70|466227
1.3.6.1.2.1.31.1.1.1.10.11040|70|168102415
1.3.6.1.2.1.31.1.1.1.10.11041|70|453462
1.3.6.1.2.1.31.1.1.1.10.11042|70|1573906548
1.3.6.1.2.1.31.1.1.1.10.11043|70|1929565406
1.3.6.1.2.1.31.1.1.1.10.11044|70|0
1.3.6.1.2.1.31.1.1.1.10.11045|70|1923497
1.3.6.1.2.1.31.1.1.1.10.11046|70|0
1.3.6.1.2.1.31.1.1.1.10.11047|70|0
1.3.6.1.2.1.31.1.1.1.10.11048|70|76614543604
1.3.6.1.2.1.31.1.1.1.10.11101|70|0
1.3.6.1.2.1.31.1.1.1.10.11102|70|0
1.3.6.1.2.1.31.1.1.1.10.11103|70|0
1.3.6.1.2.1.31.1.1.1.10.11104|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|0
1.3.6.1.2.1.31.1.1.1.11.60|70|373746583
1.3.6.1.2.1.31.1.1.1.11.70|70|0
1.3.6.1.2.1.31.1.1.1.11.11001|70|0
1.3.6.1.2.1.31.1.1.1.11.11002|70|0
1.3.6.1.2.1.31.1.1.1.11.11003|70|66547536
1.3.6.1.2.1.31.1.1.1.11.11004|70|0
1.3.6.1.2.1.31.1.1.1.11.11005|70|0
1.3.6.1.2.1.31.1.1.1.11.11006|70|78211
1.3.6.1.2.1.31.1.1.1.11.11007|70|42187908
1.3.6.1.2.1.31.1.1.1.11.11008|70|0
1.3.6.1.2.1.31.1.1.1.11.11009|70|38338643
1.3.6.1.2.1.31.1.1.1.11.11010|70|37965687
1.3.6.1.2.1.31.1.1.1.11.11011|70|40812049
1.3.6.1.2.1.31.1.1.1.11.11012|70|0
1.3.6.1.2.1.31.1.1.1.11.11013|70|0
1.3.6.1.2.1.31.1.1.1.11.11014|70|0
1.3.6.1.2.1.31.1.1.1.11.11015|70|0
1.3.6.1.2.1.31.1.1.1.11.11016|70|0
1.3.6.1.2.1.31.1.1.1.11.11017|70|0
1.3.6.1.2.1.31.1.1.1.11.11018|70|0
1.3.6.1.2.1.31.1.1.1.11.11019|70|0
1.3.6.1.2.1.31.1.1.1.11.11020|70|0
1.3.6.1.2.1.31.1.1.1.11.11021|70|0
1.3.6.1.2.1.31.1.1.1.11.11022|70|0
1.3.6.1.2.1.31.1.1.1.11.11023|70|0
1.3.6.1.2.1.31.1.1.1.11.11024|70|0
1.3.6.1.2.1.31.1.1.1.11.11025|70|0
1.3.6.1.2.1.31.1.1.1.11.11026|70|0
1.3.6.1.2.1.31.1.1.1.11.11027|70|0
1.3.6.1.2.1.31.1.1.1.11.11028|70|0
1.3.6.1.2.1.31.1.1.1.11.11029|70|0
1.3.6.1.2.1.31.1.1.1.11.11030|70|0
1.3.6.1.2.1.31.1.1.1.11.11031|70|0
1.3.6.1.2.1.31.1.1.1.11.11032|70|0
1.3.6.1.2.1.31.1.1.1.11.11033|70|0
1.3.6.1.2.1.31.1.1.1.11.11034|70|0
1.3.6.1.2.1.31.1.1.1.11.11035|70|0
1.3.6.1.2.1.31.1.1.1.11.11036|70|0
1.3.6.1.2.1.31.1.1.1.11.11037|70|0
1.3.6.1.2.1.31.1.1.1.11.11038|70|0
1.3.6.1.2.1.31.1.1.1.11.11039|70|742
1.3.6.1.2.1.31.1.1.1.11.11040|70|366845
1.3.6.1.2.1.31.1.1.1.11.11041|70|730
1.3.6.1.2.1.31.1.1.1.11.11042|70|1819659
1.3.6.1.2.1.31.1.1.1.11.11043|70|2844704
1.3.6.1.2.1.31.1.1.1.11.11044|70|0
1.3.6.1.2.1.31.1.1.1.11.11045|70|4913
1.3.6.1.2.1.31.1.1.1.11.11046|70|0
1.3.6.1.2.1.31.1.1.1.11.11047|70|0
1.3.6.1.2.1.31.1.1.1.11.11048|70|424469727
1.3.6.1.2.1.31.1.1.1.11.11101|70|0
1.3.6.1.2.1.31.1.1.1.11.11102|70|0
1.3.6.1.2.1.31.1.1.1.11.11103|70|0
1.3.6.1.2.1.31.1.1.1.11.11104|70|0
1.3.6.1.2.1.31.1.1.1.12.11001|70|0
1.3.6.1.2.1.31.1.1.1.12.11002|70|0
1.3.6.1.2.1.31.1.1.1.12.11003|70|21678188
1.3.6.1.2.1.31.1.1.1.12.11004|70|0
1.3.6.1.2.1.31.1.1.1.12.11005|70|0
1.3.6.1.2.1.31.1.1.1.12.11006|70|63350
1.3.6.1.2.1.31.1.1.1.12.11007|70|32495575
1.3.6.1.2.1.31.1.1.1.12.11008|70|0
1.3.6.1.2.1.31.1.1.1.12.11009|70|32686459
1.3.6.1.2.1.31.1.1.1.12.11010|70|11738886
1.3.6.1.2.1.31.1.1.1.12.11011|70|21417495
1.3.6.1.2.1.31.1.1.1.12.11012|70|0
1.3.6.1.2.1.31.1.1.1.12.11013|70|0
1.3.6.1.2.1.31.1.1.1.12.11014|70|0
1.3.6.1.2.1.31.1.1.1.12.11015|70|0
1.3.6.1.2.1.31.1.1.1.12.11016|70|0
1.3.6.1.2.1.31.1.1.1.12.11017|70|0
1.3.6.1.2.1.31.1.1.1.12.11018|70|0
1.3.6.1.2.1.31.1.1.1.12.11019|70|0
1.3.6.1.2.1.31.1.1.1.12.11020|70|0
1.3.6.1.2.1.31.1.1.1.12.11021|70|0
1.3.6.1.2.1.31.1.1.1.12.11022|70|0
1.3.6.1.2.1.31.1.1.1.12.11023|70|0
1.3.6.1.2.1.31.1.1.1.12.11024|70|0
1.3.6.1.2.1.31.1.1.1.12.11025|70|0
1.3.6.1.2.1.31.1.1.1.12.11026|70|0
1.3.6.1.2.1.31.1.1.1.12.11027|70|0
1.3.6.1.2.1.31.1.1.1.12.11028|70|0
1.3.6.1.2.1.31.1.1.1.12.11029|70|0
1.3.6.1.2.1.31.1.1.1.12.11030|70|0
1.3.6.1.2.1.31.1.1.1.12.11031|70|0
1.3.6.1.2.1.31.1.1.1.12.11032|70|0
1.3.6.1.2.1.31.1.1.1.12.11033|70|0
1.3.6.1.2.1.31.1.1.1.12.11034|70|0
1.3.6.1.2.1.31.1.1.1.12.11035|70|0
1.3.6.1.2.1.31.1.1.1.12.11036|70|0
1.3.6.1.2.1.31.1.1.1.12.11037|70|0
1.3.6.1.2.1.31.1.1.1.12.11038|70|0
1.3.6.1.2.1.31.1.1.1.12.11039|70|4313
1.3.6.1.2.1.31.1.1.1.12.11040|70|473699
1.3.6.1.2.1.31.1.1.1.12.11041|70|1723
1.3.6.1.2.1.31.1.1.1.12.11042|70|8324617
1.3.6.1.2.1.31.1.1.1.12.11043|70|10573332
1.3.6.1.2.1.31.1.1.1.12.11044|70|0
1.3.6.1.2.1.31.1.1.1.12.11045|70|1376
1.3.6.1.2.1.31.1.1.1.12.11046|70|0
1.3.6.1.2.1.31.1.1.1.12.11047|70|0
1.3.6.1.2.1.31.1.1.1.12.11048|70|35516528
1.3.6.1.2.1.31.1.1.1.12.11101|70|0
1.3.6.1.2.1.31.1.1.1.12.11102|70|0
1.3.6.1.2.1.31.1.1.1.12.11103|70|0
1.3.6.1.2.1.31.1.1.1.12.11104|70|0
1.3.6.1.2.1.31.1.1.1.13.11001|70|0
1.3.6.1.2.1.31.1.1.1.13.11002|70|0
1.3.6.1.2.1.31.1.1.1.13.11003|70|116035442
1.3.6.1.2.1.31.1.1.1.13.11004|70|0
1.3.6.1.2.1.31.1.1.1.13.11005|70|0
1.3.6.1.2.1.31.1.1.1.13.11006|70|295429
1.3.6.1.2.1.31.1.1.1.13.11007|70|169318673
1.3.6.1.2.1.31.1.1.1.13.11008|70|0
1.3.6.1.2.1.31.1.1.1.13.11009|70|158140655
1.3.6.1.2.1.31.1.1.1.13.11010|70|60185523
1.3.6.1.2.1.31.1.1.1.13.11011|70|107751373
1.3.6.1.2.1.31.1.1.1.13.11012|70|0
1.3.6.1.2.1.31.1.1.1.13.11013|70|0
1.3.6.1.2.1.31.1.1.1.13.11014|70|0
1.3.6.1.2.1.31.1.1.1.13.11015|70|0
1.3.6.1.2.1.31.1.1.1.13.11016|70|0
1.3.6.1.2.1.31.1.1.1.13.11017|70|0
1.3.6.1.2.1.31.1.1.1.13.11018|70|0
1.3.6.1.2.1.31.1.1.1.13.11019|70|0
1.3.6.1.2.1.31.1.1.1.13.11020|70|0
1.3.6.1.2.1.31.1.1.1.13.11021|70|0
1.3.6.1.2.1.31.1.1.1.13.11022|70|0
1.3.6.1.2.1.31.1.1.1.13.11023|70|0
1.3.6.1.2.1.31.1.1.1.13.11024|70|0
1.3.6.1.2.1.31.1.1.1.13.11025|70|0
1.3.6.1.2.1.31.1.1.1.13.11026|70|0
1.3.6.1.2.1.31.1.1.1.13.11027|70|0
1.3.6.1.2.1.31.1.1.1.13.11028|70|0
1.3.6.1.2.1.31.1.1.1.13.11029|70|0
1.3.6.1.2.1.31.1.1.1.13.11030|70|0
1.3.6.1.2.1.31.1.1.1.13.11031|70|0
1.3.6.1.2.1.31.1.1.1.13.11032|70|0
1.3.6.1.2.1.31.1.1.1.13.11033|70|0
1.3.6.1.2.1.31.1.1.1.13.11034|70|0
1.3.6.1.2.1.31.1.1.1.13.11035|70|0
1.3.6.1.2.1.31.1.1.1.13.11036|70|0
1.3.6.1.2.1.31.1.1.1.13.11037|70|0
1.3.6.1.2.1.31.1.1.1.13.11038|70|0
1.3.6.1.2.1.31.1.1.1.13.11039|70|11
1.3.6.1.2.1.31.1.1.1.13.11040|70|552952
1.3.6.1.2.1.31.1.1.1.13.11041|70|2324
1.3.6.1.2.1.31.1.1.1.13.11042|70|3069955
1.3.6.1.2.1.31.1.1.1.13.11043|70|4400603
1.3.6.1.2.1.31.1.1.1.13.11044|70|0
1.3.6.1.2.1.31.1.1.1.13.11045|70|6287
1.3.6.1.2.1.31.1.1.1.13.11046|70|0
1.3.6.1.2.1.31.1.1.1.13.11047|70|0
1.3.6.1.2.1.31.1.1.1.13.11048|70|17438877
1.3.6.1.2.1.31.1.1.1.13.11101|70|0
1.3.6.1.2.1.31.1.1.1.13.11102|70|0
1.3.6.1.2.1.31.1.1.1.13.11103|70|0
1.3.6.1.2.1.31.1.1.1.13.11104|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|1
1.3.6.1.2.1.31.1.1.1.14.60|2|1
1.3.6.1.2.1.31.1.1.1.14.70|2|1
1.3.6.1.2.1.31.1.1.1.14.5186|2|2
1.3.6.1.2.1.31.1.1.1.14.5187|2|2
1.3.6.1.2.1.31.1.1.1.14.11001|2|1
1.3.6.1.2.1.31.1.1.1.14.11002|2|1
1.3.6.1.2.1.31.1.1.1.14.11003|2|1
1.3.6.1.2.1.31.1.1.1.14.11004|2|1
1.3.6.1.2.1.31.1.1.1.14.11005|2|1
1.3.6.1.2.1.31.1.1.1.14.11006|2|1
1.3.6.1.2.1.31.1.1.1.14.11007|2|1
1.3.6.1.2.1.31.1.1.1.14.11008|2|1
1.3.6.1.2.1.31.1.1.1.14.11009|2|1
1.3.6.1.2.1.31.1.1.1.14.11010|2|1
1.3.6.1.2.1.31.1.1.1.14.11011|2|1
1.3.6.1.2.1.31.1.1.1.14.11012|2|1
1.3.6.1.2.1.31.1.1.1.14.11013|2|1
1.3.6.1.2.1.31.1.1.1.14.11014|2|1
1.3.6.1.2.1.31.1.1.1.14.11015|2|1
1.3.6.1.2.1.31.1.1.1.14.11016|2|1
1.3.6.1.2.1.31.1.1.1.14.11017|2|1
1.3.6.1.2.1.31.1.1.1.14.11018|2|1
1.3.6.1.2.1.31.1.1.1.14.11019|2|1
1.3.6.1.2.1.31.1.1.1.14.11020|2|1
1.3.6.1.2.1.31.1.1.1.14.11021|2|1
1.3.6.1.2.1.31.1.1.1.14.11022|2|1
1.3.6.1.2.1.31.1.1.1.14.11023|2|1
1.3.6.1.2.1.31.1.1.1.14.11024|2|1
1.3.6.1.2.1.31.1.1.1.14.11025|2|1
1.3.6.1.2.1.31.1.1.1.14.11026|2|1
1.3.6.1.2.1.31.1.1.1.14.11027|2|1
1.3.6.1.2.1.31.1.1.1.14.11028|2|1
1.3.6.1.2.1.31.1.1.1.14.11029|2|1
1.3.6.1.2.1.31.1.1.1.14.11030|2|1
1.3.6.1.2.1.31.1.1.1.14.11031|2|1
1.3.6.1.2.1.31.1.1.1.14.11032|2|1
1.3.6.1.2.1.31.1.1.1.14.11033|2|1
1.3.6.1.2.1.31.1.1.1.14.11034|2|1
1.3.6.1.2.1.31.1.1.1.14.11035|2|1
1.3.6.1.2.1.31.1.1.1.14.11036|2|1
1.3.6.1.2.1.31.1.1.1.14.11037|2|1
1.3.6.1.2.1.31.1.1.1.14.11038|2|1
1.3.6.1.2.1.31.1.1.1.14.11039|2|1
1.3.6.1.2.1.31.1.1.1.14.11040|2|1
1.3.6.1.2.1.31.1.1.1.14.11041|2|1
1.3.6.1.2.1.31.1.1.1.14.11042|2|2
1.3.6.1.2.1.31.1.1.1.14.11043|2|1
1.3.6.1.2.1.31.1.1.1.14.11044|2|1
1.3.6.1.2.1.31.1.1.1.14.11045|2|1
1.3.6.1.2.1.31.1.1.1.14.11046|2|1
1.3.6.1.2.1.31.1.1.1.14.11047|2|1
1.3.6.1.2.1.31.1.1.1.14.11048|2|1
1.3.6.1.2.1.31.1.1.1.14.11101|2|1
1.3.6.1.2.1.31.1.1.1.14.11102|2|1
1.3.6.1.2.1.31.1.1.1.14.11103|2|1
1.3.6.1.2.1.31.1.1.1.14.11104|2|1
1.3.6.1.2.1.31.1.1.1.14.14501|2|1
1.3.6.1.2.1.31.1.1.1.15.1|66|1000
1.3.6.1.2.1.31.1.1.1.15.60|66|1000
1.3.6.1.2.1.31.1.1.1.15.70|66|1000
1.3.6.1.2.1.31.1.1.1.15.5185|66|0
1.3.6.1.2.1.31.1.1.1.15.5186|66|0
1.3.6.1.2.1.31.1.1.1.15.5187|66|0
1.3.6.1.2.1.31.1.1.1.15.11001|66|10
1.3.6.1.2.1.31.1.1.1.15.11002|66|10
1.3.6.1.2.1.31.1.1.1.15.11003|66|100
1.3.6.1.2.1.31.1.1.1.15.11004|66|10
1.3.6.1.2.1.31.1.1.1.15.11005|66|10
1.3.6.1.2.1.31.1.1.1.15.11006|66|100
1.3.6.1.2.1.31.1.1.1.15.11007|66|100
1.3.6.1.2.1.31.1.1.1.15.11008|66|10
1.3.6.1.2.1.31.1.1.1.15.11009|66|100
1.3.6.1.2.1.31.1.1.1.15.11010|66|100
1.3.6.1.2.1.31.1.1.1.15.11011|66|100
1.3.6.1.2.1.31.1.1.1.15.11012|66|10
1.3.6.1.2.1.31.1.1.1.15.11013|66|10
1.3.6.1.2.1.31.1.1.1.15.11014|66|10
1.3.6.1.2.1.31.1.1.1.15.11015|66|10
1.3.6.1.2.1.31.1.1.1.15.11016|66|10
1.3.6.1.2.1.31.1.1.1.15.11017|66|10
1.3.6.1.2.1.31.1.1.1.15.11018|66|10
1.3.6.1.2.1.31.1.1.1.15.11019|66|10
1.3.6.1.2.1.31.1.1.1.15.11020|66|10
1.3.6.1.2.1.31.1.1.1.15.11021|66|10
1.3.6.1.2.1.31.1.1.1.15.11022|66|10
1.3.6.1.2.1.31.1.1.1.15.11023|66|10
1.3.6.1.2.1.31.1.1.1.15.11024|66|10
1.3.6.1.2.1.31.1.1.1.15.11025|66|10
1.3.6.1.2.1.31.1.1.1.15.11026|66|10
1.3.6.1.2.1.31.1.1.1.15.11027|66|10
1.3.6.1.2.1.31.1.1.1.15.11028|66|10
1.3.6.1.2.1.31.1.1.1.15.11029|66|10
1.3.6.1.2.1.31.1.1.1.15.11030|66|10
1.3.6.1.2.1.31.1.1.1.15.11031|66|10
1.3.6.1.2.1.31.1.1.1.15.11032|66|10
1.3.6.1.2.1.31.1.1.1.15.11033|66|10
1.3.6.1.2.1.31.1.1.1.15.11034|66|10
1.3.6.1.2.1.31.1.1.1.15.11035|66|10
1.3.6.1.2.1.31.1.1.1.15.11036|66|10
1.3.6.1.2.1.31.1.1.1.15.11037|66|10
1.3.6.1.2.1.31.1.1.1.15.11038|66|10
1.3.6.1.2.1.31.1.1.1.15.11039|66|100
1.3.6.1.2.1.31.1.1.1.15.11040|66|100
1.3.6.1.2.1.31.1.1.1.15.11041|66|100
1.3.6.1.2.1.31.1.1.1.15.11042|66|100
1.3.6.1.2.1.31.1.1.1.15.11043|66|100
1.3.6.1.2.1.31.1.1.1.15.11044|66|10
1.3.6.1.2.1.31.1.1.1.15.11045|66|100
1.3.6.1.2.1.31.1.1.1.15.11046|66|10
1.3.6.1.2.1.31.1.1.1.15.11047|66|10
1.3.6.1.2.1.31.1.1.1.15.11048|66|100
1.3.6.1.2.1.31.1.1.1.15.11101|66|10
1.3.6.1.2.1.31.1.1.1.15.11102|66|10
1.3.6.1.2.1.31.1.1.1.15.11103|66|10
1.3.6.1.2.1.31.1.1.1.15.11104|66|10
1.3.6.1.2.1.31.1.1.1.15.14501|66|10000
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.60|2|2
1.3.6.1.2.1.31.1.1.1.16.70|2|2
1.3.6.1.2.1.31.1.1.1.16.5185|2|2
1.3.6.1.2.1.31.1.1.1.16.5186|2|2
1.3.6.1.2.1.31.1.1.1.16.5187|2|2
1.3.6.1.2.1.31.1.1.1.16.11001|2|2
1.3.6.1.2.1.31.1.1.1.16.11002|2|2
1.3.6.1.2.1.31.1.1.1.16.11003|2|2
1.3.6.1.2.1.31.1.1.1.16.11004|2|2
1.3.6.1.2.1.31.1.1.1.16.11005|2|2
1.3.6.1.2.1.31.1.1.1.16.11006|2|2
1.3.6.1.2.1.31.1.1.1.16.11007|2|2
1.3.6.1.2.1.31.1.1.1.16.11008|2|2
1.3.6.1.2.1.31.1.1.1.16.11009|2|2
1.3.6.1.2.1.31.1.1.1.16.11010|2|2
1.3.6.1.2.1.31.1.1.1.16.11011|2|2
1.3.6.1.2.1.31.1.1.1.16.11012|2|2
1.3.6.1.2.1.31.1.1.1.16.11013|2|2
1.3.6.1.2.1.31.1.1.1.16.11014|2|2
1.3.6.1.2.1.31.1.1.1.16.11015|2|2
1.3.6.1.2.1.31.1.1.1.16.11016|2|2
1.3.6.1.2.1.31.1.1.1.16.11017|2|2
1.3.6.1.2.1.31.1.1.1.16.11018|2|2
1.3.6.1.2.1.31.1.1.1.16.11019|2|2
1.3.6.1.2.1.31.1.1.1.16.11020|2|2
1.3.6.1.2.1.31.1.1.1.16.11021|2|2
1.3.6.1.2.1.31.1.1.1.16.11022|2|2
1.3.6.1.2.1.31.1.1.1.16.11023|2|2
1.3.6.1.2.1.31.1.1.1.16.11024|2|2
1.3.6.1.2.1.31.1.1.1.16.11025|2|2
1.3.6.1.2.1.31.1.1.1.16.11026|2|2
1.3.6.1.2.1.31.1.1.1.16.11027|2|2
1.3.6.1.2.1.31.1.1.1.16.11028|2|2
1.3.6.1.2.1.31.1.1.1.16.11029|2|2
1.3.6.1.2.1.31.1.1.1.16.11030|2|2
1.3.6.1.2.1.31.1.1.1.16.11031|2|2
1.3.6.1.2.1.31.1.1.1.16.11032|2|2
1.3.6.1.2.1.31.1.1.1.16.11033|2|2
1.3.6.1.2.1.31.1.1.1.16.11034|2|2
1.3.6.1.2.1.31.1.1.1.16.11035|2|2
1.3.6.1.2.1.31.1.1.1.16.11036|2|2
1.3.6.1.2.1.31.1.1.1.16.11037|2|2
1.3.6.1.2.1.31.1.1.1.16.11038|2|2
1.3.6.1.2.1.31.1.1.1.16.11039|2|2
1.3.6.1.2.1.31.1.1.1.16.11040|2|2
1.3.6.1.2.1.31.1.1.1.16.11041|2|2
1.3.6.1.2.1.31.1.1.1.16.11042|2|2
1.3.6.1.2.1.31.1.1.1.16.11043|2|2
1.3.6.1.2.1.31.1.1.1.16.11044|2|2
1.3.6.1.2.1.31.1.1.1.16.11045|2|2
1.3.6.1.2.1.31.1.1.1.16.11046|2|2
1.3.6.1.2.1.31.1.1.1.16.11047|2|2
1.3.6.1.2.1.31.1.1.1.16.11048|2|2
1.3.6.1.2.1.31.1.1.1.16.11101|2|2
1.3.6.1.2.1.31.1.1.1.16.11102|2|2
1.3.6.1.2.1.31.1.1.1.16.11103|2|2
1.3.6.1.2.1.31.1.1.1.16.11104|2|2
1.3.6.1.2.1.31.1.1.1.16.14501|2|2
1.3.6.1.2.1.31.1.1.1.17.1|2|2
1.3.6.1.2.1.31.1.1.1.17.60|2|2
1.3.6.1.2.1.31.1.1.1.17.70|2|2
1.3.6.1.2.1.31.1.1.1.17.5185|2|2
1.3.6.1.2.1.31.1.1.1.17.5186|2|1
1.3.6.1.2.1.31.1.1.1.17.5187|2|1
1.3.6.1.2.1.31.1.1.1.17.11001|2|1
1.3.6.1.2.1.31.1.1.1.17.11002|2|1
1.3.6.1.2.1.31.1.1.1.17.11003|2|1
1.3.6.1.2.1.31.1.1.1.17.11004|2|1
1.3.6.1.2.1.31.1.1.1.17.11005|2|1
1.3.6.1.2.1.31.1.1.1.17.11006|2|1
1.3.6.1.2.1.31.1.1.1.17.11007|2|1
1.3.6.1.2.1.31.1.1.1.17.11008|2|1
1.3.6.1.2.1.31.1.1.1.17.11009|2|1
1.3.6.1.2.1.31.1.1.1.17.11010|2|1
1.3.6.1.2.1.31.1.1.1.17.11011|2|1
1.3.6.1.2.1.31.1.1.1.17.11012|2|1
1.3.6.1.2.1.31.1.1.1.17.11013|2|1
1.3.6.1.2.1.31.1.1.1.17.11014|2|1
1.3.6.1.2.1.31.1.1.1.17.11015|2|1
1.3.6.1.2.1.31.1.1.1.17.11016|2|1
1.3.6.1.2.1.31.1.1.1.17.11017|2|1
1.3.6.1.2.1.31.1.1.1.17.11018|2|1
1.3.6.1.2.1.31.1.1.1.17.11019|2|1
1.3.6.1.2.1.31.1.1.1.17.11020|2|1
1.3.6.1.2.1.31.1.1.1.17.11021|2|1
1.3.6.1.2.1.31.1.1.1.17.11022|2|1
1.3.6.1.2.1.31.1.1.1.17.11023|2|1
1.3.6.1.2.1.31.1.1.1.17.11024|2|1
1.3.6.1.2.1.31.1.1.1.17.11025|2|1
1.3.6.1.2.1.31.1.1.1.17.11026|2|1
1.3.6.1.2.1.31.1.1.1.17.11027|2|1
1.3.6.1.2.1.31.1.1.1.17.11028|2|1
1.3.6.1.2.1.31.1.1.1.17.11029|2|1
1.3.6.1.2.1.31.1.1.1.17.11030|2|1
1.3.6.1.2.1.31.1.1.1.17.11031|2|1
1.3.6.1.2.1.31.1.1.1.17.11032|2|1
1.3.6.1.2.1.31.1.1.1.17.11033|2|1
1.3.6.1.2.1.31.1.1.1.17.11034|2|1
1.3.6.1.2.1.31.1.1.1.17.11035|2|1
1.3.6.1.2.1.31.1.1.1.17.11036|2|1
1.3.6.1.2.1.31.1.1.1.17.11037|2|1
1.3.6.1.2.1.31.1.1.1.17.11038|2|1
1.3.6.1.2.1.31.1.1.1.17.11039|2|1
1.3.6.1.2.1.31.1.1.1.17.11040|2|1
1.3.6.1.2.1.31.1.1.1.17.11041|2|1
1.3.6.1.2.1.31.1.1.1.17.11042|2|1
1.3.6.1.2.1.31.1.1.1.17.11043|2|1
1.3.6.1.2.1.31.1.1.1.17.11044|2|1
1.3.6.1.2.1.31.1.1.1.17.11045|2|1
1.3.6.1.2.1.31.1.1.1.17.11046|2|1
1.3.6.1.2.1.31.1.1.1.17.11047|2|1
1.3.6.1.2.1.31.1.1.1.17.11048|2|1
1.3.6.1.2.1.31.1.1.1.17.11101|2|1
1.3.6.1.2.1.31.1.1.1.17.11102|2|1
1.3.6.1.2.1.31.1.1.1.17.11103|2|1
1.3.6.1.2.1.31.1.1.1.17.11104|2|1
1.3.6.1.2.1.31.1.1.1.17.14501|2|2
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.60|4|
1.3.6.1.2.1.31.1.1.1.18.70|4|
1.3.6.1.2.1.31.1.1.1.18.5185|4|
1.3.6.1.2.1.31.1.1.1.18.5186|4|
1.3.6.1.2.1.31.1.1.1.18.5187|4|
1.3.6.1.2.1.31.1.1.1.18.11001|4|
1.3.6.1.2.1.31.1.1.1.18.11002|4|
1.3.6.1.2.1.31.1.1.1.18.11003|4|
1.3.6.1.2.1.31.1.1.1.18.11004|4|
1.3.6.1.2.1.31.1.1.1.18.11005|4|
1.3.6.1.2.1.31.1.1.1.18.11006|4|
1.3.6.1.2.1.31.1.1.1.18.11007|4|
1.3.6.1.2.1.31.1.1.1.18.11008|4|
1.3.6.1.2.1.31.1.1.1.18.11009|4|
1.3.6.1.2.1.31.1.1.1.18.11010|4|
1.3.6.1.2.1.31.1.1.1.18.11011|4|
1.3.6.1.2.1.31.1.1.1.18.11012|4|
1.3.6.1.2.1.31.1.1.1.18.11013|4|
1.3.6.1.2.1.31.1.1.1.18.11014|4|
1.3.6.1.2.1.31.1.1.1.18.11015|4|
1.3.6.1.2.1.31.1.1.1.18.11016|4|
1.3.6.1.2.1.31.1.1.1.18.11017|4|
1.3.6.1.2.1.31.1.1.1.18.11018|4|
1.3.6.1.2.1.31.1.1.1.18.11019|4|
1.3.6.1.2.1.31.1.1.1.18.11020|4|
1.3.6.1.2.1.31.1.1.1.18.11021|4|
1.3.6.1.2.1.31.1.1.1.18.11022|4|
1.3.6.1.2.1.31.1.1.1.18.11023|4|
1.3.6.1.2.1.31.1.1.1.18.11024|4|
1.3.6.1.2.1.31.1.1.1.18.11025|4|
1.3.6.1.2.1.31.1.1.1.18.11026|4|
1.3.6.1.2.1.31.1.1.1.18.11027|4|
1.3.6.1.2.1.31.1.1.1.18.11028|4|
1.3.6.1.2.1.31.1.1.1.18.11029|4|
1.3.6.1.2.1.31.1.1.1.18.11030|4|
1.3.6.1.2.1.31.1.1.1.18.11031|4|
1.3.6.1.2.1.31.1.1.1.18.11032|4|
1.3.6.1.2.1.31.1.1.1.18.11033|4|
1.3.6.1.2.1.31.1.1.1.18.11034|4|
1.3.6.1.2.1.31.1.1.1.18.11035|4|
1.3.6.1.2.1.31.1.1.1.18.11036|4|
1.3.6.1.2.1.31.1.1.1.18.11037|4|
1.3.6.1.2.1.31.1.1.1.18.11038|4|
1.3.6.1.2.1.31.1.1.1.18.11039|4|
1.3.6.1.2.1.31.1.1.1.18.11040|4|
1.3.6.1.2.1.31.1.1.1.18.11041|4|
1.3.6.1.2.1.31.1.1.1.18.11042|4x|636f6e6e656374656420746f206375626520313262207275636b7573206170
1.3.6.1.2.1.31.1.1.1.18.11043|4x|636f6e6e656374656420746f207275636b757320776c6320
1.3.6.1.2.1.31.1.1.1.18.11044|4|
1.3.6.1.2.1.31.1.1.1.18.11045|4|
1.3.6.1.2.1.31.1.1.1.18.11046|4|
1.3.6.1.2.1.31.1.1.1.18.11047|4|
1.3.6.1.2.1.31.1.1.1.18.11048|4|
1.3.6.1.2.1.31.1.1.1.18.11101|4|
1.3.6.1.2.1.31.1.1.1.18.11102|4|
1.3.6.1.2.1.31.1.1.1.18.11103|4|
1.3.6.1.2.1.31.1.1.1.18.11104|4|
1.3.6.1.2.1.31.1.1.1.18.14501|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|8318
1.3.6.1.2.1.31.1.1.1.19.60|67|9141
1.3.6.1.2.1.31.1.1.1.19.70|67|9153
1.3.6.1.2.1.31.1.1.1.19.5185|67|8320
1.3.6.1.2.1.31.1.1.1.19.5186|67|8320
1.3.6.1.2.1.31.1.1.1.19.5187|67|8320
1.3.6.1.2.1.31.1.1.1.19.11001|67|8320
1.3.6.1.2.1.31.1.1.1.19.11002|67|8321
1.3.6.1.2.1.31.1.1.1.19.11003|67|8321
1.3.6.1.2.1.31.1.1.1.19.11004|67|8321
1.3.6.1.2.1.31.1.1.1.19.11005|67|8321
1.3.6.1.2.1.31.1.1.1.19.11006|67|8321
1.3.6.1.2.1.31.1.1.1.19.11007|67|8321
1.3.6.1.2.1.31.1.1.1.19.11008|67|8321
1.3.6.1.2.1.31.1.1.1.19.11009|67|8321
1.3.6.1.2.1.31.1.1.1.19.11010|67|8322
1.3.6.1.2.1.31.1.1.1.19.11011|67|8322
1.3.6.1.2.1.31.1.1.1.19.11012|67|8322
1.3.6.1.2.1.31.1.1.1.19.11013|67|8322
1.3.6.1.2.1.31.1.1.1.19.11014|67|8322
1.3.6.1.2.1.31.1.1.1.19.11015|67|8322
1.3.6.1.2.1.31.1.1.1.19.11016|67|8322
1.3.6.1.2.1.31.1.1.1.19.11017|67|8322
1.3.6.1.2.1.31.1.1.1.19.11018|67|8323
1.3.6.1.2.1.31.1.1.1.19.11019|67|8323
1.3.6.1.2.1.31.1.1.1.19.11020|67|8323
1.3.6.1.2.1.31.1.1.1.19.11021|67|8323
1.3.6.1.2.1.31.1.1.1.19.11022|67|8323
1.3.6.1.2.1.31.1.1.1.19.11023|67|8323
1.3.6.1.2.1.31.1.1.1.19.11024|67|8324
1.3.6.1.2.1.31.1.1.1.19.11025|67|8324
1.3.6.1.2.1.31.1.1.1.19.11026|67|8324
1.3.6.1.2.1.31.1.1.1.19.11027|67|8324
1.3.6.1.2.1.31.1.1.1.19.11028|67|8324
1.3.6.1.2.1.31.1.1.1.19.11029|67|8324
1.3.6.1.2.1.31.1.1.1.19.11030|67|8324
1.3.6.1.2.1.31.1.1.1.19.11031|67|8324
1.3.6.1.2.1.31.1.1.1.19.11032|67|8324
1.3.6.1.2.1.31.1.1.1.19.11033|67|8324
1.3.6.1.2.1.31.1.1.1.19.11034|67|8324
1.3.6.1.2.1.31.1.1.1.19.11035|67|8325
1.3.6.1.2.1.31.1.1.1.19.11036|67|8325
1.3.6.1.2.1.31.1.1.1.19.11037|67|8325
1.3.6.1.2.1.31.1.1.1.19.11038|67|8325
1.3.6.1.2.1.31.1.1.1.19.11039|67|8325
1.3.6.1.2.1.31.1.1.1.19.11040|67|8325
1.3.6.1.2.1.31.1.1.1.19.11041|67|8326
1.3.6.1.2.1.31.1.1.1.19.11042|67|8326
1.3.6.1.2.1.31.1.1.1.19.11043|67|8326
1.3.6.1.2.1.31.1.1.1.19.11044|67|8326
1.3.6.1.2.1.31.1.1.1.19.11045|67|8326
1.3.6.1.2.1.31.1.1.1.19.11046|67|8326
1.3.6.1.2.1.31.1.1.1.19.11047|67|8327
1.3.6.1.2.1.31.1.1.1.19.11048|67|8327
1.3.6.1.2.1.31.1.1.1.19.11101|67|8320
1.3.6.1.2.1.31.1.1.1.19.11102|67|8320
1.3.6.1.2.1.31.1.1.1.19.11103|67|8324
1.3.6.1.2.1.31.1.1.1.19.11104|67|8324
1.3.6.1.2.1.31.1.1.1.19.14501|67|8622
1.3.6.1.2.1.31.1.2.1.3.0.1|2|1
1.3.6.1.2.1.31.1.2.1.3.0.60|2|1
1.3.6.1.2.1.31.1.2.1.3.0.70|2|1
1.3.6.1.2.1.31.1.2.1.3.0.5185|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11001|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11002|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11003|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11004|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11005|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11006|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11007|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11008|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11009|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11010|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11011|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11012|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11013|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11014|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11015|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11016|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11017|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11018|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11019|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11020|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11021|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11022|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11023|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11024|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11025|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11026|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11027|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11028|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11029|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11030|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11031|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11032|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11033|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11034|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11035|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11036|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11037|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11038|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11039|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11040|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11041|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11042|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11043|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11044|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11045|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11046|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11047|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11048|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11101|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11102|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11103|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11104|2|1
1.3.6.1.2.1.31.1.2.1.3.0.14501|2|1
1.3.6.1.2.1.31.1.2.1.3.1.0|2|1
1.3.6.1.2.1.31.1.2.1.3.60.0|2|1
1.3.6.1.2.1.31.1.2.1.3.70.0|2|1
1.3.6.1.2.1.31.1.2.1.3.5185.5186|2|1
1.3.6.1.2.1.31.1.2.1.3.5185.5187|2|1
1.3.6.1.2.1.31.1.2.1.3.11001.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11002.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11003.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11004.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11005.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11006.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11007.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11008.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11009.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11010.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11011.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11012.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11013.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11014.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11015.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11016.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11017.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11018.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11019.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11020.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11021.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11022.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11023.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11024.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11025.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11026.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11027.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11028.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11029.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11030.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11031.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11032.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11033.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11034.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11035.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11036.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11037.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11038.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11039.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11040.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11041.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11042.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11043.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11044.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11045.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11046.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11047.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11048.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11101.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11102.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11103.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11104.0|2|1
1.3.6.1.2.1.31.1.2.1.3.14501.0|2|1
1.3.6.1.2.1.31.1.4.1.2.1.6.0.22.199.2.110.192|2|1
1.3.6.1.2.1.31.1.4.1.2.1.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.60.6.0.22.199.2.110.193|2|1
1.3.6.1.2.1.31.1.4.1.2.60.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.70.6.0.22.199.2.110.194|2|1
1.3.6.1.2.1.31.1.4.1.2.70.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11001.6.0.22.199.2.110.131|2|1
1.3.6.1.2.1.31.1.4.1.2.11001.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11002.6.0.22.199.2.110.132|2|1
1.3.6.1.2.1.31.1.4.1.2.11002.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11003.6.0.22.199.2.110.133|2|1
1.3.6.1.2.1.31.1.4.1.2.11003.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11004.6.0.22.199.2.110.134|2|1
1.3.6.1.2.1.31.1.4.1.2.11004.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11005.6.0.22.199.2.110.135|2|1
1.3.6.1.2.1.31.1.4.1.2.11005.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11006.6.0.22.199.2.110.136|2|1
1.3.6.1.2.1.31.1.4.1.2.11006.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11007.6.0.22.199.2.110.137|2|1
1.3.6.1.2.1.31.1.4.1.2.11007.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11008.6.0.22.199.2.110.138|2|1
1.3.6.1.2.1.31.1.4.1.2.11008.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11009.6.0.22.199.2.110.139|2|1
1.3.6.1.2.1.31.1.4.1.2.11009.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11010.6.0.22.199.2.110.140|2|1
1.3.6.1.2.1.31.1.4.1.2.11010.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11011.6.0.22.199.2.110.141|2|1
1.3.6.1.2.1.31.1.4.1.2.11011.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11012.6.0.22.199.2.110.142|2|1
1.3.6.1.2.1.31.1.4.1.2.11012.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11013.6.0.22.199.2.110.143|2|1
1.3.6.1.2.1.31.1.4.1.2.11013.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11014.6.0.22.199.2.110.144|2|1
1.3.6.1.2.1.31.1.4.1.2.11014.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11015.6.0.22.199.2.110.145|2|1
1.3.6.1.2.1.31.1.4.1.2.11015.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11016.6.0.22.199.2.110.146|2|1
1.3.6.1.2.1.31.1.4.1.2.11016.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11017.6.0.22.199.2.110.147|2|1
1.3.6.1.2.1.31.1.4.1.2.11017.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11018.6.0.22.199.2.110.148|2|1
1.3.6.1.2.1.31.1.4.1.2.11018.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11019.6.0.22.199.2.110.149|2|1
1.3.6.1.2.1.31.1.4.1.2.11019.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11020.6.0.22.199.2.110.150|2|1
1.3.6.1.2.1.31.1.4.1.2.11020.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11021.6.0.22.199.2.110.151|2|1
1.3.6.1.2.1.31.1.4.1.2.11021.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11022.6.0.22.199.2.110.152|2|1
1.3.6.1.2.1.31.1.4.1.2.11022.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11023.6.0.22.199.2.110.153|2|1
1.3.6.1.2.1.31.1.4.1.2.11023.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11024.6.0.22.199.2.110.154|2|1
1.3.6.1.2.1.31.1.4.1.2.11024.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11025.6.0.22.199.2.110.157|2|1
1.3.6.1.2.1.31.1.4.1.2.11025.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11026.6.0.22.199.2.110.158|2|1
1.3.6.1.2.1.31.1.4.1.2.11026.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11027.6.0.22.199.2.110.159|2|1
1.3.6.1.2.1.31.1.4.1.2.11027.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11028.6.0.22.199.2.110.160|2|1
1.3.6.1.2.1.31.1.4.1.2.11028.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11029.6.0.22.199.2.110.161|2|1
1.3.6.1.2.1.31.1.4.1.2.11029.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11030.6.0.22.199.2.110.162|2|1
1.3.6.1.2.1.31.1.4.1.2.11030.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11031.6.0.22.199.2.110.163|2|1
1.3.6.1.2.1.31.1.4.1.2.11031.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11032.6.0.22.199.2.110.164|2|1
1.3.6.1.2.1.31.1.4.1.2.11032.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11033.6.0.22.199.2.110.165|2|1
1.3.6.1.2.1.31.1.4.1.2.11033.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11034.6.0.22.199.2.110.166|2|1
1.3.6.1.2.1.31.1.4.1.2.11034.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11035.6.0.22.199.2.110.167|2|1
1.3.6.1.2.1.31.1.4.1.2.11035.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11036.6.0.22.199.2.110.168|2|1
1.3.6.1.2.1.31.1.4.1.2.11036.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11037.6.0.22.199.2.110.169|2|1
1.3.6.1.2.1.31.1.4.1.2.11037.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11038.6.0.22.199.2.110.170|2|1
1.3.6.1.2.1.31.1.4.1.2.11038.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11039.6.0.22.199.2.110.171|2|1
1.3.6.1.2.1.31.1.4.1.2.11039.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11040.6.0.22.199.2.110.172|2|1
1.3.6.1.2.1.31.1.4.1.2.11040.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11041.6.0.22.199.2.110.173|2|1
1.3.6.1.2.1.31.1.4.1.2.11041.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11042.6.0.22.199.2.110.174|2|1
1.3.6.1.2.1.31.1.4.1.2.11042.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11043.6.0.22.199.2.110.175|2|1
1.3.6.1.2.1.31.1.4.1.2.11043.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11044.6.0.22.199.2.110.176|2|1
1.3.6.1.2.1.31.1.4.1.2.11044.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11045.6.0.22.199.2.110.177|2|1
1.3.6.1.2.1.31.1.4.1.2.11045.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11046.6.0.22.199.2.110.178|2|1
1.3.6.1.2.1.31.1.4.1.2.11046.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11047.6.0.22.199.2.110.179|2|1
1.3.6.1.2.1.31.1.4.1.2.11047.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11048.6.0.22.199.2.110.180|2|1
1.3.6.1.2.1.31.1.4.1.2.11048.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11101.6.0.22.199.2.110.129|2|1
1.3.6.1.2.1.31.1.4.1.2.11101.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11102.6.0.22.199.2.110.130|2|1
1.3.6.1.2.1.31.1.4.1.2.11102.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11103.6.0.22.199.2.110.155|2|1
1.3.6.1.2.1.31.1.4.1.2.11103.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.2.11104.6.0.22.199.2.110.156|2|1
1.3.6.1.2.1.31.1.4.1.2.11104.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.1.6.0.22.199.2.110.192|2|1
1.3.6.1.2.1.31.1.4.1.3.1.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.60.6.0.22.199.2.110.193|2|1
1.3.6.1.2.1.31.1.4.1.3.60.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.70.6.0.22.199.2.110.194|2|1
1.3.6.1.2.1.31.1.4.1.3.70.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11001.6.0.22.199.2.110.131|2|1
1.3.6.1.2.1.31.1.4.1.3.11001.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11002.6.0.22.199.2.110.132|2|1
1.3.6.1.2.1.31.1.4.1.3.11002.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11003.6.0.22.199.2.110.133|2|1
1.3.6.1.2.1.31.1.4.1.3.11003.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11004.6.0.22.199.2.110.134|2|1
1.3.6.1.2.1.31.1.4.1.3.11004.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11005.6.0.22.199.2.110.135|2|1
1.3.6.1.2.1.31.1.4.1.3.11005.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11006.6.0.22.199.2.110.136|2|1
1.3.6.1.2.1.31.1.4.1.3.11006.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11007.6.0.22.199.2.110.137|2|1
1.3.6.1.2.1.31.1.4.1.3.11007.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11008.6.0.22.199.2.110.138|2|1
1.3.6.1.2.1.31.1.4.1.3.11008.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11009.6.0.22.199.2.110.139|2|1
1.3.6.1.2.1.31.1.4.1.3.11009.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11010.6.0.22.199.2.110.140|2|1
1.3.6.1.2.1.31.1.4.1.3.11010.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11011.6.0.22.199.2.110.141|2|1
1.3.6.1.2.1.31.1.4.1.3.11011.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11012.6.0.22.199.2.110.142|2|1
1.3.6.1.2.1.31.1.4.1.3.11012.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11013.6.0.22.199.2.110.143|2|1
1.3.6.1.2.1.31.1.4.1.3.11013.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11014.6.0.22.199.2.110.144|2|1
1.3.6.1.2.1.31.1.4.1.3.11014.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11015.6.0.22.199.2.110.145|2|1
1.3.6.1.2.1.31.1.4.1.3.11015.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11016.6.0.22.199.2.110.146|2|1
1.3.6.1.2.1.31.1.4.1.3.11016.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11017.6.0.22.199.2.110.147|2|1
1.3.6.1.2.1.31.1.4.1.3.11017.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11018.6.0.22.199.2.110.148|2|1
1.3.6.1.2.1.31.1.4.1.3.11018.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11019.6.0.22.199.2.110.149|2|1
1.3.6.1.2.1.31.1.4.1.3.11019.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11020.6.0.22.199.2.110.150|2|1
1.3.6.1.2.1.31.1.4.1.3.11020.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11021.6.0.22.199.2.110.151|2|1
1.3.6.1.2.1.31.1.4.1.3.11021.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11022.6.0.22.199.2.110.152|2|1
1.3.6.1.2.1.31.1.4.1.3.11022.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11023.6.0.22.199.2.110.153|2|1
1.3.6.1.2.1.31.1.4.1.3.11023.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11024.6.0.22.199.2.110.154|2|1
1.3.6.1.2.1.31.1.4.1.3.11024.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11025.6.0.22.199.2.110.157|2|1
1.3.6.1.2.1.31.1.4.1.3.11025.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11026.6.0.22.199.2.110.158|2|1
1.3.6.1.2.1.31.1.4.1.3.11026.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11027.6.0.22.199.2.110.159|2|1
1.3.6.1.2.1.31.1.4.1.3.11027.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11028.6.0.22.199.2.110.160|2|1
1.3.6.1.2.1.31.1.4.1.3.11028.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11029.6.0.22.199.2.110.161|2|1
1.3.6.1.2.1.31.1.4.1.3.11029.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11030.6.0.22.199.2.110.162|2|1
1.3.6.1.2.1.31.1.4.1.3.11030.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11031.6.0.22.199.2.110.163|2|1
1.3.6.1.2.1.31.1.4.1.3.11031.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11032.6.0.22.199.2.110.164|2|1
1.3.6.1.2.1.31.1.4.1.3.11032.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11033.6.0.22.199.2.110.165|2|1
1.3.6.1.2.1.31.1.4.1.3.11033.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11034.6.0.22.199.2.110.166|2|1
1.3.6.1.2.1.31.1.4.1.3.11034.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11035.6.0.22.199.2.110.167|2|1
1.3.6.1.2.1.31.1.4.1.3.11035.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11036.6.0.22.199.2.110.168|2|1
1.3.6.1.2.1.31.1.4.1.3.11036.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11037.6.0.22.199.2.110.169|2|1
1.3.6.1.2.1.31.1.4.1.3.11037.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11038.6.0.22.199.2.110.170|2|1
1.3.6.1.2.1.31.1.4.1.3.11038.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11039.6.0.22.199.2.110.171|2|1
1.3.6.1.2.1.31.1.4.1.3.11039.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11040.6.0.22.199.2.110.172|2|1
1.3.6.1.2.1.31.1.4.1.3.11040.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11041.6.0.22.199.2.110.173|2|1
1.3.6.1.2.1.31.1.4.1.3.11041.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11042.6.0.22.199.2.110.174|2|1
1.3.6.1.2.1.31.1.4.1.3.11042.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11043.6.0.22.199.2.110.175|2|1
1.3.6.1.2.1.31.1.4.1.3.11043.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11044.6.0.22.199.2.110.176|2|1
1.3.6.1.2.1.31.1.4.1.3.11044.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11045.6.0.22.199.2.110.177|2|1
1.3.6.1.2.1.31.1.4.1.3.11045.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11046.6.0.22.199.2.110.178|2|1
1.3.6.1.2.1.31.1.4.1.3.11046.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11047.6.0.22.199.2.110.179|2|1
1.3.6.1.2.1.31.1.4.1.3.11047.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11048.6.0.22.199.2.110.180|2|1
1.3.6.1.2.1.31.1.4.1.3.11048.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11101.6.0.22.199.2.110.129|2|1
1.3.6.1.2.1.31.1.4.1.3.11101.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11102.6.0.22.199.2.110.130|2|1
1.3.6.1.2.1.31.1.4.1.3.11102.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11103.6.0.22.199.2.110.155|2|1
1.3.6.1.2.1.31.1.4.1.3.11103.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.4.1.3.11104.6.0.22.199.2.110.156|2|1
1.3.6.1.2.1.31.1.4.1.3.11104.6.255.255.255.255.255.255|2|1
1.3.6.1.2.1.31.1.5.0|67|9157
1.3.6.1.2.1.31.1.6.0|67|9157
1.3.6.1.2.1.47.1.1.1.1.2.1|4x|436174616c79737420333778782053776974636820537461636b
1.3.6.1.2.1.47.1.1.1.1.2.3001|4x|57532d43333735302d343850
1.3.6.1.2.1.47.1.1.1.1.2.3002|4x|5377697463682033202d2057532d43333735302d343850202d204669786564204d6f64756c652030
1.3.6.1.2.1.47.1.1.1.1.2.3003|4x|5377697463682033202d2057532d43333735302d343850202d20506f77657220537570706c792030
1.3.6.1.2.1.47.1.1.1.1.2.3004|4x|5377697463682033202d2057532d43333735302d343850202d2046616e2030
1.3.6.1.2.1.47.1.1.1.1.2.3005|4|StackPort3
1.3.6.1.2.1.47.1.1.1.1.2.3006|4x|4769676162697445746865726e657420436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.2.3007|4x|4769676162697445746865726e657420436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.2.3008|4x|4661737445746865726e6574332f302f31
1.3.6.1.2.1.47.1.1.1.1.2.3009|4x|4661737445746865726e6574332f302f32
1.3.6.1.2.1.47.1.1.1.1.2.3010|4x|4661737445746865726e6574332f302f33
1.3.6.1.2.1.47.1.1.1.1.2.3011|4x|4661737445746865726e6574332f302f34
1.3.6.1.2.1.47.1.1.1.1.2.3012|4x|4661737445746865726e6574332f302f35
1.3.6.1.2.1.47.1.1.1.1.2.3013|4x|4661737445746865726e6574332f302f36
1.3.6.1.2.1.47.1.1.1.1.2.3014|4x|4661737445746865726e6574332f302f37
1.3.6.1.2.1.47.1.1.1.1.2.3015|4x|4661737445746865726e6574332f302f38
1.3.6.1.2.1.47.1.1.1.1.2.3016|4x|4661737445746865726e6574332f302f39
1.3.6.1.2.1.47.1.1.1.1.2.3017|4x|4661737445746865726e6574332f302f3130
1.3.6.1.2.1.47.1.1.1.1.2.3018|4x|4661737445746865726e6574332f302f3131
1.3.6.1.2.1.47.1.1.1.1.2.3019|4x|4661737445746865726e6574332f302f3132
1.3.6.1.2.1.47.1.1.1.1.2.3020|4x|4661737445746865726e6574332f302f3133
1.3.6.1.2.1.47.1.1.1.1.2.3021|4x|4661737445746865726e6574332f302f3134
1.3.6.1.2.1.47.1.1.1.1.2.3022|4x|4661737445746865726e6574332f302f3135
1.3.6.1.2.1.47.1.1.1.1.2.3023|4x|4661737445746865726e6574332f302f3136
1.3.6.1.2.1.47.1.1.1.1.2.3024|4x|4661737445746865726e6574332f302f3137
1.3.6.1.2.1.47.1.1.1.1.2.3025|4x|4661737445746865726e6574332f302f3138
1.3.6.1.2.1.47.1.1.1.1.2.3026|4x|4661737445746865726e6574332f302f3139
1.3.6.1.2.1.47.1.1.1.1.2.3027|4x|4661737445746865726e6574332f302f3230
1.3.6.1.2.1.47.1.1.1.1.2.3028|4x|4661737445746865726e6574332f302f3231
1.3.6.1.2.1.47.1.1.1.1.2.3029|4x|4661737445746865726e6574332f302f3232
1.3.6.1.2.1.47.1.1.1.1.2.3030|4x|4661737445746865726e6574332f302f3233
1.3.6.1.2.1.47.1.1.1.1.2.3031|4x|4661737445746865726e6574332f302f3234
1.3.6.1.2.1.47.1.1.1.1.2.3032|4x|4769676162697445746865726e657420436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.2.3033|4x|4769676162697445746865726e657420436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.2.3034|4x|4661737445746865726e6574332f302f3235
1.3.6.1.2.1.47.1.1.1.1.2.3035|4x|4661737445746865726e6574332f302f3236
1.3.6.1.2.1.47.1.1.1.1.2.3036|4x|4661737445746865726e6574332f302f3237
1.3.6.1.2.1.47.1.1.1.1.2.3037|4x|4661737445746865726e6574332f302f3238
1.3.6.1.2.1.47.1.1.1.1.2.3038|4x|4661737445746865726e6574332f302f3239
1.3.6.1.2.1.47.1.1.1.1.2.3039|4x|4661737445746865726e6574332f302f3330
1.3.6.1.2.1.47.1.1.1.1.2.3040|4x|4661737445746865726e6574332f302f3331
1.3.6.1.2.1.47.1.1.1.1.2.3041|4x|4661737445746865726e6574332f302f3332
1.3.6.1.2.1.47.1.1.1.1.2.3042|4x|4661737445746865726e6574332f302f3333
1.3.6.1.2.1.47.1.1.1.1.2.3043|4x|4661737445746865726e6574332f302f3334
1.3.6.1.2.1.47.1.1.1.1.2.3044|4x|4661737445746865726e6574332f302f3335
1.3.6.1.2.1.47.1.1.1.1.2.3045|4x|4661737445746865726e6574332f302f3336
1.3.6.1.2.1.47.1.1.1.1.2.3046|4x|4661737445746865726e6574332f302f3337
1.3.6.1.2.1.47.1.1.1.1.2.3047|4x|4661737445746865726e6574332f302f3338
1.3.6.1.2.1.47.1.1.1.1.2.3048|4x|4661737445746865726e6574332f302f3339
1.3.6.1.2.1.47.1.1.1.1.2.3049|4x|4661737445746865726e6574332f302f3430
1.3.6.1.2.1.47.1.1.1.1.2.3050|4x|4661737445746865726e6574332f302f3431
1.3.6.1.2.1.47.1.1.1.1.2.3051|4x|4661737445746865726e6574332f302f3432
1.3.6.1.2.1.47.1.1.1.1.2.3052|4x|4661737445746865726e6574332f302f3433
1.3.6.1.2.1.47.1.1.1.1.2.3053|4x|4661737445746865726e6574332f302f3434
1.3.6.1.2.1.47.1.1.1.1.2.3054|4x|4661737445746865726e6574332f302f3435
1.3.6.1.2.1.47.1.1.1.1.2.3055|4x|4661737445746865726e6574332f302f3436
1.3.6.1.2.1.47.1.1.1.1.2.3056|4x|4661737445746865726e6574332f302f3437
1.3.6.1.2.1.47.1.1.1.1.2.3057|4x|4661737445746865726e6574332f302f3438
1.3.6.1.2.1.47.1.1.1.1.3.1|6|1.3.6.1.4.1.9.12.3.1.11.2
1.3.6.1.2.1.47.1.1.1.1.3.3001|6|1.3.6.1.4.1.9.12.3.1.3.383
1.3.6.1.2.1.47.1.1.1.1.3.3002|6|1.3.6.1.4.1.9.12.3.1.9.50.7
1.3.6.1.2.1.47.1.1.1.1.3.3003|6|1.3.6.1.4.1.9.12.3.1.6.95
1.3.6.1.2.1.47.1.1.1.1.3.3004|6|1.3.6.1.4.1.9.12.3.1.7.34
1.3.6.1.2.1.47.1.1.1.1.3.3005|6|1.3.6.1.4.1.9.12.3.1.10.1
1.3.6.1.2.1.47.1.1.1.1.3.3006|6|1.3.6.1.4.1.9.12.3.1.5.115
1.3.6.1.2.1.47.1.1.1.1.3.3007|6|1.3.6.1.4.1.9.12.3.1.5.115
1.3.6.1.2.1.47.1.1.1.1.3.3008|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3009|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3010|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3011|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3012|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3013|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3014|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3015|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3016|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3017|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3018|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3019|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3020|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3021|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3022|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3023|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3024|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3025|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3026|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3027|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3028|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3029|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3030|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3031|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3032|6|1.3.6.1.4.1.9.12.3.1.5.115
1.3.6.1.2.1.47.1.1.1.1.3.3033|6|1.3.6.1.4.1.9.12.3.1.5.115
1.3.6.1.2.1.47.1.1.1.1.3.3034|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3035|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3036|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3037|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3038|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3039|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3040|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3041|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3042|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3043|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3044|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3045|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3046|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3047|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3048|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3049|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3050|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3051|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3052|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3053|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3054|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3055|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3056|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.3.3057|6|1.3.6.1.4.1.9.12.3.1.10.48
1.3.6.1.2.1.47.1.1.1.1.4.1|2|0
1.3.6.1.2.1.47.1.1.1.1.4.3001|2|1
1.3.6.1.2.1.47.1.1.1.1.4.3002|2|3001
1.3.6.1.2.1.47.1.1.1.1.4.3003|2|3001
1.3.6.1.2.1.47.1.1.1.1.4.3004|2|3001
1.3.6.1.2.1.47.1.1.1.1.4.3005|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3006|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3007|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3008|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3009|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3010|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3011|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3012|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3013|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3014|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3015|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3016|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3017|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3018|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3019|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3020|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3021|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3022|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3023|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3024|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3025|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3026|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3027|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3028|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3029|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3030|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3031|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3032|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3033|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3034|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3035|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3036|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3037|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3038|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3039|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3040|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3041|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3042|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3043|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3044|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3045|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3046|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3047|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3048|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3049|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3050|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3051|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3052|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3053|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3054|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3055|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3056|2|3002
1.3.6.1.2.1.47.1.1.1.1.4.3057|2|3002
1.3.6.1.2.1.47.1.1.1.1.5.1|2|11
1.3.6.1.2.1.47.1.1.1.1.5.3001|2|3
1.3.6.1.2.1.47.1.1.1.1.5.3002|2|9
1.3.6.1.2.1.47.1.1.1.1.5.3003|2|6
1.3.6.1.2.1.47.1.1.1.1.5.3004|2|7
1.3.6.1.2.1.47.1.1.1.1.5.3005|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3006|2|5
1.3.6.1.2.1.47.1.1.1.1.5.3007|2|5
1.3.6.1.2.1.47.1.1.1.1.5.3008|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3009|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3010|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3011|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3012|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3013|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3014|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3015|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3016|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3017|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3018|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3019|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3020|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3021|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3022|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3023|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3024|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3025|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3026|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3027|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3028|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3029|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3030|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3031|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3032|2|5
1.3.6.1.2.1.47.1.1.1.1.5.3033|2|5
1.3.6.1.2.1.47.1.1.1.1.5.3034|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3035|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3036|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3037|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3038|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3039|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3040|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3041|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3042|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3043|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3044|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3045|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3046|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3047|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3048|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3049|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3050|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3051|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3052|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3053|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3054|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3055|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3056|2|10
1.3.6.1.2.1.47.1.1.1.1.5.3057|2|10
1.3.6.1.2.1.47.1.1.1.1.6.1|2|-1
1.3.6.1.2.1.47.1.1.1.1.6.3001|2|0
1.3.6.1.2.1.47.1.1.1.1.6.3002|2|1
1.3.6.1.2.1.47.1.1.1.1.6.3003|2|2
1.3.6.1.2.1.47.1.1.1.1.6.3004|2|3
1.3.6.1.2.1.47.1.1.1.1.6.3005|2|0
1.3.6.1.2.1.47.1.1.1.1.6.3006|2|1
1.3.6.1.2.1.47.1.1.1.1.6.3007|2|2
1.3.6.1.2.1.47.1.1.1.1.6.3008|2|3
1.3.6.1.2.1.47.1.1.1.1.6.3009|2|4
1.3.6.1.2.1.47.1.1.1.1.6.3010|2|5
1.3.6.1.2.1.47.1.1.1.1.6.3011|2|6
1.3.6.1.2.1.47.1.1.1.1.6.3012|2|7
1.3.6.1.2.1.47.1.1.1.1.6.3013|2|8
1.3.6.1.2.1.47.1.1.1.1.6.3014|2|9
1.3.6.1.2.1.47.1.1.1.1.6.3015|2|10
1.3.6.1.2.1.47.1.1.1.1.6.3016|2|11
1.3.6.1.2.1.47.1.1.1.1.6.3017|2|12
1.3.6.1.2.1.47.1.1.1.1.6.3018|2|13
1.3.6.1.2.1.47.1.1.1.1.6.3019|2|14
1.3.6.1.2.1.47.1.1.1.1.6.3020|2|15
1.3.6.1.2.1.47.1.1.1.1.6.3021|2|16
1.3.6.1.2.1.47.1.1.1.1.6.3022|2|17
1.3.6.1.2.1.47.1.1.1.1.6.3023|2|18
1.3.6.1.2.1.47.1.1.1.1.6.3024|2|19
1.3.6.1.2.1.47.1.1.1.1.6.3025|2|20
1.3.6.1.2.1.47.1.1.1.1.6.3026|2|21
1.3.6.1.2.1.47.1.1.1.1.6.3027|2|22
1.3.6.1.2.1.47.1.1.1.1.6.3028|2|23
1.3.6.1.2.1.47.1.1.1.1.6.3029|2|24
1.3.6.1.2.1.47.1.1.1.1.6.3030|2|25
1.3.6.1.2.1.47.1.1.1.1.6.3031|2|26
1.3.6.1.2.1.47.1.1.1.1.6.3032|2|27
1.3.6.1.2.1.47.1.1.1.1.6.3033|2|28
1.3.6.1.2.1.47.1.1.1.1.6.3034|2|29
1.3.6.1.2.1.47.1.1.1.1.6.3035|2|30
1.3.6.1.2.1.47.1.1.1.1.6.3036|2|31
1.3.6.1.2.1.47.1.1.1.1.6.3037|2|32
1.3.6.1.2.1.47.1.1.1.1.6.3038|2|33
1.3.6.1.2.1.47.1.1.1.1.6.3039|2|34
1.3.6.1.2.1.47.1.1.1.1.6.3040|2|35
1.3.6.1.2.1.47.1.1.1.1.6.3041|2|36
1.3.6.1.2.1.47.1.1.1.1.6.3042|2|37
1.3.6.1.2.1.47.1.1.1.1.6.3043|2|38
1.3.6.1.2.1.47.1.1.1.1.6.3044|2|39
1.3.6.1.2.1.47.1.1.1.1.6.3045|2|40
1.3.6.1.2.1.47.1.1.1.1.6.3046|2|41
1.3.6.1.2.1.47.1.1.1.1.6.3047|2|42
1.3.6.1.2.1.47.1.1.1.1.6.3048|2|43
1.3.6.1.2.1.47.1.1.1.1.6.3049|2|44
1.3.6.1.2.1.47.1.1.1.1.6.3050|2|45
1.3.6.1.2.1.47.1.1.1.1.6.3051|2|46
1.3.6.1.2.1.47.1.1.1.1.6.3052|2|47
1.3.6.1.2.1.47.1.1.1.1.6.3053|2|48
1.3.6.1.2.1.47.1.1.1.1.6.3054|2|49
1.3.6.1.2.1.47.1.1.1.1.6.3055|2|50
1.3.6.1.2.1.47.1.1.1.1.6.3056|2|51
1.3.6.1.2.1.47.1.1.1.1.6.3057|2|52
1.3.6.1.2.1.47.1.1.1.1.7.1|4x|4361743337787820537461636b696e67
1.3.6.1.2.1.47.1.1.1.1.7.3001|4|3
1.3.6.1.2.1.47.1.1.1.1.7.3002|4x|5377697463682033202d2057532d43333735302d343850202d204669786564204d6f64756c652030
1.3.6.1.2.1.47.1.1.1.1.7.3003|4x|5377697463682033202d2057532d43333735302d343850202d20506f77657220537570706c792030
1.3.6.1.2.1.47.1.1.1.1.7.3004|4x|5377697463682033202d2057532d43333735302d343850202d2046616e2030
1.3.6.1.2.1.47.1.1.1.1.7.3005|4|StackPort3
1.3.6.1.2.1.47.1.1.1.1.7.3006|4x|4769676162697445746865726e6574332f302f3120436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.7.3007|4x|4769676162697445746865726e6574332f302f3220436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.7.3008|4x|4661737445746865726e6574332f302f31
1.3.6.1.2.1.47.1.1.1.1.7.3009|4x|4661737445746865726e6574332f302f32
1.3.6.1.2.1.47.1.1.1.1.7.3010|4x|4661737445746865726e6574332f302f33
1.3.6.1.2.1.47.1.1.1.1.7.3011|4x|4661737445746865726e6574332f302f34
1.3.6.1.2.1.47.1.1.1.1.7.3012|4x|4661737445746865726e6574332f302f35
1.3.6.1.2.1.47.1.1.1.1.7.3013|4x|4661737445746865726e6574332f302f36
1.3.6.1.2.1.47.1.1.1.1.7.3014|4x|4661737445746865726e6574332f302f37
1.3.6.1.2.1.47.1.1.1.1.7.3015|4x|4661737445746865726e6574332f302f38
1.3.6.1.2.1.47.1.1.1.1.7.3016|4x|4661737445746865726e6574332f302f39
1.3.6.1.2.1.47.1.1.1.1.7.3017|4x|4661737445746865726e6574332f302f3130
1.3.6.1.2.1.47.1.1.1.1.7.3018|4x|4661737445746865726e6574332f302f3131
1.3.6.1.2.1.47.1.1.1.1.7.3019|4x|4661737445746865726e6574332f302f3132
1.3.6.1.2.1.47.1.1.1.1.7.3020|4x|4661737445746865726e6574332f302f3133
1.3.6.1.2.1.47.1.1.1.1.7.3021|4x|4661737445746865726e6574332f302f3134
1.3.6.1.2.1.47.1.1.1.1.7.3022|4x|4661737445746865726e6574332f302f3135
1.3.6.1.2.1.47.1.1.1.1.7.3023|4x|4661737445746865726e6574332f302f3136
1.3.6.1.2.1.47.1.1.1.1.7.3024|4x|4661737445746865726e6574332f302f3137
1.3.6.1.2.1.47.1.1.1.1.7.3025|4x|4661737445746865726e6574332f302f3138
1.3.6.1.2.1.47.1.1.1.1.7.3026|4x|4661737445746865726e6574332f302f3139
1.3.6.1.2.1.47.1.1.1.1.7.3027|4x|4661737445746865726e6574332f302f3230
1.3.6.1.2.1.47.1.1.1.1.7.3028|4x|4661737445746865726e6574332f302f3231
1.3.6.1.2.1.47.1.1.1.1.7.3029|4x|4661737445746865726e6574332f302f3232
1.3.6.1.2.1.47.1.1.1.1.7.3030|4x|4661737445746865726e6574332f302f3233
1.3.6.1.2.1.47.1.1.1.1.7.3031|4x|4661737445746865726e6574332f302f3234
1.3.6.1.2.1.47.1.1.1.1.7.3032|4x|4769676162697445746865726e6574332f302f3320436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.7.3033|4x|4769676162697445746865726e6574332f302f3420436f6e7461696e6572
1.3.6.1.2.1.47.1.1.1.1.7.3034|4x|4661737445746865726e6574332f302f3235
1.3.6.1.2.1.47.1.1.1.1.7.3035|4x|4661737445746865726e6574332f302f3236
1.3.6.1.2.1.47.1.1.1.1.7.3036|4x|4661737445746865726e6574332f302f3237
1.3.6.1.2.1.47.1.1.1.1.7.3037|4x|4661737445746865726e6574332f302f3238
1.3.6.1.2.1.47.1.1.1.1.7.3038|4x|4661737445746865726e6574332f302f3239
1.3.6.1.2.1.47.1.1.1.1.7.3039|4x|4661737445746865726e6574332f302f3330
1.3.6.1.2.1.47.1.1.1.1.7.3040|4x|4661737445746865726e6574332f302f3331
1.3.6.1.2.1.47.1.1.1.1.7.3041|4x|4661737445746865726e6574332f302f3332
1.3.6.1.2.1.47.1.1.1.1.7.3042|4x|4661737445746865726e6574332f302f3333
1.3.6.1.2.1.47.1.1.1.1.7.3043|4x|4661737445746865726e6574332f302f3334
1.3.6.1.2.1.47.1.1.1.1.7.3044|4x|4661737445746865726e6574332f302f3335
1.3.6.1.2.1.47.1.1.1.1.7.3045|4x|4661737445746865726e6574332f302f3336
1.3.6.1.2.1.47.1.1.1.1.7.3046|4x|4661737445746865726e6574332f302f3337
1.3.6.1.2.1.47.1.1.1.1.7.3047|4x|4661737445746865726e6574332f302f3338
1.3.6.1.2.1.47.1.1.1.1.7.3048|4x|4661737445746865726e6574332f302f3339
1.3.6.1.2.1.47.1.1.1.1.7.3049|4x|4661737445746865726e6574332f302f3430
1.3.6.1.2.1.47.1.1.1.1.7.3050|4x|4661737445746865726e6574332f302f3431
1.3.6.1.2.1.47.1.1.1.1.7.3051|4x|4661737445746865726e6574332f302f3432
1.3.6.1.2.1.47.1.1.1.1.7.3052|4x|4661737445746865726e6574332f302f3433
1.3.6.1.2.1.47.1.1.1.1.7.3053|4x|4661737445746865726e6574332f302f3434
1.3.6.1.2.1.47.1.1.1.1.7.3054|4x|4661737445746865726e6574332f302f3435
1.3.6.1.2.1.47.1.1.1.1.7.3055|4x|4661737445746865726e6574332f302f3436
1.3.6.1.2.1.47.1.1.1.1.7.3056|4x|4661737445746865726e6574332f302f3437
1.3.6.1.2.1.47.1.1.1.1.7.3057|4x|4661737445746865726e6574332f302f3438
1.3.6.1.2.1.47.1.1.1.1.8.1|4|
1.3.6.1.2.1.47.1.1.1.1.8.3001|4|V05
1.3.6.1.2.1.47.1.1.1.1.8.3002|4|
1.3.6.1.2.1.47.1.1.1.1.8.3003|4|
1.3.6.1.2.1.47.1.1.1.1.8.3004|4|
1.3.6.1.2.1.47.1.1.1.1.8.3005|4|
1.3.6.1.2.1.47.1.1.1.1.8.3006|4|
1.3.6.1.2.1.47.1.1.1.1.8.3007|4|
1.3.6.1.2.1.47.1.1.1.1.8.3008|4|
1.3.6.1.2.1.47.1.1.1.1.8.3009|4|
1.3.6.1.2.1.47.1.1.1.1.8.3010|4|
1.3.6.1.2.1.47.1.1.1.1.8.3011|4|
1.3.6.1.2.1.47.1.1.1.1.8.3012|4|
1.3.6.1.2.1.47.1.1.1.1.8.3013|4|
1.3.6.1.2.1.47.1.1.1.1.8.3014|4|
1.3.6.1.2.1.47.1.1.1.1.8.3015|4|
1.3.6.1.2.1.47.1.1.1.1.8.3016|4|
1.3.6.1.2.1.47.1.1.1.1.8.3017|4|
1.3.6.1.2.1.47.1.1.1.1.8.3018|4|
1.3.6.1.2.1.47.1.1.1.1.8.3019|4|
1.3.6.1.2.1.47.1.1.1.1.8.3020|4|
1.3.6.1.2.1.47.1.1.1.1.8.3021|4|
1.3.6.1.2.1.47.1.1.1.1.8.3022|4|
1.3.6.1.2.1.47.1.1.1.1.8.3023|4|
1.3.6.1.2.1.47.1.1.1.1.8.3024|4|
1.3.6.1.2.1.47.1.1.1.1.8.3025|4|
1.3.6.1.2.1.47.1.1.1.1.8.3026|4|
1.3.6.1.2.1.47.1.1.1.1.8.3027|4|
1.3.6.1.2.1.47.1.1.1.1.8.3028|4|
1.3.6.1.2.1.47.1.1.1.1.8.3029|4|
1.3.6.1.2.1.47.1.1.1.1.8.3030|4|
1.3.6.1.2.1.47.1.1.1.1.8.3031|4|
1.3.6.1.2.1.47.1.1.1.1.8.3032|4|
1.3.6.1.2.1.47.1.1.1.1.8.3033|4|
1.3.6.1.2.1.47.1.1.1.1.8.3034|4|
1.3.6.1.2.1.47.1.1.1.1.8.3035|4|
1.3.6.1.2.1.47.1.1.1.1.8.3036|4|
1.3.6.1.2.1.47.1.1.1.1.8.3037|4|
1.3.6.1.2.1.47.1.1.1.1.8.3038|4|
1.3.6.1.2.1.47.1.1.1.1.8.3039|4|
1.3.6.1.2.1.47.1.1.1.1.8.3040|4|
1.3.6.1.2.1.47.1.1.1.1.8.3041|4|
1.3.6.1.2.1.47.1.1.1.1.8.3042|4|
1.3.6.1.2.1.47.1.1.1.1.8.3043|4|
1.3.6.1.2.1.47.1.1.1.1.8.3044|4|
1.3.6.1.2.1.47.1.1.1.1.8.3045|4|
1.3.6.1.2.1.47.1.1.1.1.8.3046|4|
1.3.6.1.2.1.47.1.1.1.1.8.3047|4|
1.3.6.1.2.1.47.1.1.1.1.8.3048|4|
1.3.6.1.2.1.47.1.1.1.1.8.3049|4|
1.3.6.1.2.1.47.1.1.1.1.8.3050|4|
1.3.6.1.2.1.47.1.1.1.1.8.3051|4|
1.3.6.1.2.1.47.1.1.1.1.8.3052|4|
1.3.6.1.2.1.47.1.1.1.1.8.3053|4|
1.3.6.1.2.1.47.1.1.1.1.8.3054|4|
1.3.6.1.2.1.47.1.1.1.1.8.3055|4|
1.3.6.1.2.1.47.1.1.1.1.8.3056|4|
1.3.6.1.2.1.47.1.1.1.1.8.3057|4|
1.3.6.1.2.1.47.1.1.1.1.9.1|4|
1.3.6.1.2.1.47.1.1.1.1.9.3001|4x|31322e322835352953453130
1.3.6.1.2.1.47.1.1.1.1.9.3002|4|
1.3.6.1.2.1.47.1.1.1.1.9.3003|4|
1.3.6.1.2.1.47.1.1.1.1.9.3004|4|
1.3.6.1.2.1.47.1.1.1.1.9.3005|4|
1.3.6.1.2.1.47.1.1.1.1.9.3006|4|
1.3.6.1.2.1.47.1.1.1.1.9.3007|4|
1.3.6.1.2.1.47.1.1.1.1.9.3008|4|
1.3.6.1.2.1.47.1.1.1.1.9.3009|4|
1.3.6.1.2.1.47.1.1.1.1.9.3010|4|
1.3.6.1.2.1.47.1.1.1.1.9.3011|4|
1.3.6.1.2.1.47.1.1.1.1.9.3012|4|
1.3.6.1.2.1.47.1.1.1.1.9.3013|4|
1.3.6.1.2.1.47.1.1.1.1.9.3014|4|
1.3.6.1.2.1.47.1.1.1.1.9.3015|4|
1.3.6.1.2.1.47.1.1.1.1.9.3016|4|
1.3.6.1.2.1.47.1.1.1.1.9.3017|4|
1.3.6.1.2.1.47.1.1.1.1.9.3018|4|
1.3.6.1.2.1.47.1.1.1.1.9.3019|4|
1.3.6.1.2.1.47.1.1.1.1.9.3020|4|
1.3.6.1.2.1.47.1.1.1.1.9.3021|4|
1.3.6.1.2.1.47.1.1.1.1.9.3022|4|
1.3.6.1.2.1.47.1.1.1.1.9.3023|4|
1.3.6.1.2.1.47.1.1.1.1.9.3024|4|
1.3.6.1.2.1.47.1.1.1.1.9.3025|4|
1.3.6.1.2.1.47.1.1.1.1.9.3026|4|
1.3.6.1.2.1.47.1.1.1.1.9.3027|4|
1.3.6.1.2.1.47.1.1.1.1.9.3028|4|
1.3.6.1.2.1.47.1.1.1.1.9.3029|4|
1.3.6.1.2.1.47.1.1.1.1.9.3030|4|
1.3.6.1.2.1.47.1.1.1.1.9.3031|4|
1.3.6.1.2.1.47.1.1.1.1.9.3032|4|
1.3.6.1.2.1.47.1.1.1.1.9.3033|4|
1.3.6.1.2.1.47.1.1.1.1.9.3034|4|
1.3.6.1.2.1.47.1.1.1.1.9.3035|4|
1.3.6.1.2.1.47.1.1.1.1.9.3036|4|
1.3.6.1.2.1.47.1.1.1.1.9.3037|4|
1.3.6.1.2.1.47.1.1.1.1.9.3038|4|
1.3.6.1.2.1.47.1.1.1.1.9.3039|4|
1.3.6.1.2.1.47.1.1.1.1.9.3040|4|
1.3.6.1.2.1.47.1.1.1.1.9.3041|4|
1.3.6.1.2.1.47.1.1.1.1.9.3042|4|
1.3.6.1.2.1.47.1.1.1.1.9.3043|4|
1.3.6.1.2.1.47.1.1.1.1.9.3044|4|
1.3.6.1.2.1.47.1.1.1.1.9.3045|4|
1.3.6.1.2.1.47.1.1.1.1.9.3046|4|
1.3.6.1.2.1.47.1.1.1.1.9.3047|4|
1.3.6.1.2.1.47.1.1.1.1.9.3048|4|
1.3.6.1.2.1.47.1.1.1.1.9.3049|4|
1.3.6.1.2.1.47.1.1.1.1.9.3050|4|
1.3.6.1.2.1.47.1.1.1.1.9.3051|4|
1.3.6.1.2.1.47.1.1.1.1.9.3052|4|
1.3.6.1.2.1.47.1.1.1.1.9.3053|4|
1.3.6.1.2.1.47.1.1.1.1.9.3054|4|
1.3.6.1.2.1.47.1.1.1.1.9.3055|4|
1.3.6.1.2.1.47.1.1.1.1.9.3056|4|
1.3.6.1.2.1.47.1.1.1.1.9.3057|4|
1.3.6.1.2.1.47.1.1.1.1.10.1|4|
1.3.6.1.2.1.47.1.1.1.1.10.3001|4x|31322e322835352953453130
1.3.6.1.2.1.47.1.1.1.1.10.3002|4|
1.3.6.1.2.1.47.1.1.1.1.10.3003|4|
1.3.6.1.2.1.47.1.1.1.1.10.3004|4|
1.3.6.1.2.1.47.1.1.1.1.10.3005|4|
1.3.6.1.2.1.47.1.1.1.1.10.3006|4|
1.3.6.1.2.1.47.1.1.1.1.10.3007|4|
1.3.6.1.2.1.47.1.1.1.1.10.3008|4|
1.3.6.1.2.1.47.1.1.1.1.10.3009|4|
1.3.6.1.2.1.47.1.1.1.1.10.3010|4|
1.3.6.1.2.1.47.1.1.1.1.10.3011|4|
1.3.6.1.2.1.47.1.1.1.1.10.3012|4|
1.3.6.1.2.1.47.1.1.1.1.10.3013|4|
1.3.6.1.2.1.47.1.1.1.1.10.3014|4|
1.3.6.1.2.1.47.1.1.1.1.10.3015|4|
1.3.6.1.2.1.47.1.1.1.1.10.3016|4|
1.3.6.1.2.1.47.1.1.1.1.10.3017|4|
1.3.6.1.2.1.47.1.1.1.1.10.3018|4|
1.3.6.1.2.1.47.1.1.1.1.10.3019|4|
1.3.6.1.2.1.47.1.1.1.1.10.3020|4|
1.3.6.1.2.1.47.1.1.1.1.10.3021|4|
1.3.6.1.2.1.47.1.1.1.1.10.3022|4|
1.3.6.1.2.1.47.1.1.1.1.10.3023|4|
1.3.6.1.2.1.47.1.1.1.1.10.3024|4|
1.3.6.1.2.1.47.1.1.1.1.10.3025|4|
1.3.6.1.2.1.47.1.1.1.1.10.3026|4|
1.3.6.1.2.1.47.1.1.1.1.10.3027|4|
1.3.6.1.2.1.47.1.1.1.1.10.3028|4|
1.3.6.1.2.1.47.1.1.1.1.10.3029|4|
1.3.6.1.2.1.47.1.1.1.1.10.3030|4|
1.3.6.1.2.1.47.1.1.1.1.10.3031|4|
1.3.6.1.2.1.47.1.1.1.1.10.3032|4|
1.3.6.1.2.1.47.1.1.1.1.10.3033|4|
1.3.6.1.2.1.47.1.1.1.1.10.3034|4|
1.3.6.1.2.1.47.1.1.1.1.10.3035|4|
1.3.6.1.2.1.47.1.1.1.1.10.3036|4|
1.3.6.1.2.1.47.1.1.1.1.10.3037|4|
1.3.6.1.2.1.47.1.1.1.1.10.3038|4|
1.3.6.1.2.1.47.1.1.1.1.10.3039|4|
1.3.6.1.2.1.47.1.1.1.1.10.3040|4|
1.3.6.1.2.1.47.1.1.1.1.10.3041|4|
1.3.6.1.2.1.47.1.1.1.1.10.3042|4|
1.3.6.1.2.1.47.1.1.1.1.10.3043|4|
1.3.6.1.2.1.47.1.1.1.1.10.3044|4|
1.3.6.1.2.1.47.1.1.1.1.10.3045|4|
1.3.6.1.2.1.47.1.1.1.1.10.3046|4|
1.3.6.1.2.1.47.1.1.1.1.10.3047|4|
1.3.6.1.2.1.47.1.1.1.1.10.3048|4|
1.3.6.1.2.1.47.1.1.1.1.10.3049|4|
1.3.6.1.2.1.47.1.1.1.1.10.3050|4|
1.3.6.1.2.1.47.1.1.1.1.10.3051|4|
1.3.6.1.2.1.47.1.1.1.1.10.3052|4|
1.3.6.1.2.1.47.1.1.1.1.10.3053|4|
1.3.6.1.2.1.47.1.1.1.1.10.3054|4|
1.3.6.1.2.1.47.1.1.1.1.10.3055|4|
1.3.6.1.2.1.47.1.1.1.1.10.3056|4|
1.3.6.1.2.1.47.1.1.1.1.10.3057|4|
1.3.6.1.2.1.47.1.1.1.1.11.1|4|
1.3.6.1.2.1.47.1.1.1.1.11.3001|4|CAT0952N20R
1.3.6.1.2.1.47.1.1.1.1.11.3002|4|
1.3.6.1.2.1.47.1.1.1.1.11.3003|4|LIT095000BE
1.3.6.1.2.1.47.1.1.1.1.11.3004|4|
1.3.6.1.2.1.47.1.1.1.1.11.3005|4|
1.3.6.1.2.1.47.1.1.1.1.11.3006|4|
1.3.6.1.2.1.47.1.1.1.1.11.3007|4|
1.3.6.1.2.1.47.1.1.1.1.11.3008|4|
1.3.6.1.2.1.47.1.1.1.1.11.3009|4|
1.3.6.1.2.1.47.1.1.1.1.11.3010|4|
1.3.6.1.2.1.47.1.1.1.1.11.3011|4|
1.3.6.1.2.1.47.1.1.1.1.11.3012|4|
1.3.6.1.2.1.47.1.1.1.1.11.3013|4|
1.3.6.1.2.1.47.1.1.1.1.11.3014|4|
1.3.6.1.2.1.47.1.1.1.1.11.3015|4|
1.3.6.1.2.1.47.1.1.1.1.11.3016|4|
1.3.6.1.2.1.47.1.1.1.1.11.3017|4|
1.3.6.1.2.1.47.1.1.1.1.11.3018|4|
1.3.6.1.2.1.47.1.1.1.1.11.3019|4|
1.3.6.1.2.1.47.1.1.1.1.11.3020|4|
1.3.6.1.2.1.47.1.1.1.1.11.3021|4|
1.3.6.1.2.1.47.1.1.1.1.11.3022|4|
1.3.6.1.2.1.47.1.1.1.1.11.3023|4|
1.3.6.1.2.1.47.1.1.1.1.11.3024|4|
1.3.6.1.2.1.47.1.1.1.1.11.3025|4|
1.3.6.1.2.1.47.1.1.1.1.11.3026|4|
1.3.6.1.2.1.47.1.1.1.1.11.3027|4|
1.3.6.1.2.1.47.1.1.1.1.11.3028|4|
1.3.6.1.2.1.47.1.1.1.1.11.3029|4|
1.3.6.1.2.1.47.1.1.1.1.11.3030|4|
1.3.6.1.2.1.47.1.1.1.1.11.3031|4|
1.3.6.1.2.1.47.1.1.1.1.11.3032|4|
1.3.6.1.2.1.47.1.1.1.1.11.3033|4|
1.3.6.1.2.1.47.1.1.1.1.11.3034|4|
1.3.6.1.2.1.47.1.1.1.1.11.3035|4|
1.3.6.1.2.1.47.1.1.1.1.11.3036|4|
1.3.6.1.2.1.47.1.1.1.1.11.3037|4|
1.3.6.1.2.1.47.1.1.1.1.11.3038|4|
1.3.6.1.2.1.47.1.1.1.1.11.3039|4|
1.3.6.1.2.1.47.1.1.1.1.11.3040|4|
1.3.6.1.2.1.47.1.1.1.1.11.3041|4|
1.3.6.1.2.1.47.1.1.1.1.11.3042|4|
1.3.6.1.2.1.47.1.1.1.1.11.3043|4|
1.3.6.1.2.1.47.1.1.1.1.11.3044|4|
1.3.6.1.2.1.47.1.1.1.1.11.3045|4|
1.3.6.1.2.1.47.1.1.1.1.11.3046|4|
1.3.6.1.2.1.47.1.1.1.1.11.3047|4|
1.3.6.1.2.1.47.1.1.1.1.11.3048|4|
1.3.6.1.2.1.47.1.1.1.1.11.3049|4|
1.3.6.1.2.1.47.1.1.1.1.11.3050|4|
1.3.6.1.2.1.47.1.1.1.1.11.3051|4|
1.3.6.1.2.1.47.1.1.1.1.11.3052|4|
1.3.6.1.2.1.47.1.1.1.1.11.3053|4|
1.3.6.1.2.1.47.1.1.1.1.11.3054|4|
1.3.6.1.2.1.47.1.1.1.1.11.3055|4|
1.3.6.1.2.1.47.1.1.1.1.11.3056|4|
1.3.6.1.2.1.47.1.1.1.1.11.3057|4|
1.3.6.1.2.1.47.1.1.1.1.12.1|4|
1.3.6.1.2.1.47.1.1.1.1.12.3001|4|
1.3.6.1.2.1.47.1.1.1.1.12.3002|4|
1.3.6.1.2.1.47.1.1.1.1.12.3003|4|
1.3.6.1.2.1.47.1.1.1.1.12.3004|4|
1.3.6.1.2.1.47.1.1.1.1.12.3005|4|
1.3.6.1.2.1.47.1.1.1.1.12.3006|4|
1.3.6.1.2.1.47.1.1.1.1.12.3007|4|
1.3.6.1.2.1.47.1.1.1.1.12.3008|4|
1.3.6.1.2.1.47.1.1.1.1.12.3009|4|
1.3.6.1.2.1.47.1.1.1.1.12.3010|4|
1.3.6.1.2.1.47.1.1.1.1.12.3011|4|
1.3.6.1.2.1.47.1.1.1.1.12.3012|4|
1.3.6.1.2.1.47.1.1.1.1.12.3013|4|
1.3.6.1.2.1.47.1.1.1.1.12.3014|4|
1.3.6.1.2.1.47.1.1.1.1.12.3015|4|
1.3.6.1.2.1.47.1.1.1.1.12.3016|4|
1.3.6.1.2.1.47.1.1.1.1.12.3017|4|
1.3.6.1.2.1.47.1.1.1.1.12.3018|4|
1.3.6.1.2.1.47.1.1.1.1.12.3019|4|
1.3.6.1.2.1.47.1.1.1.1.12.3020|4|
1.3.6.1.2.1.47.1.1.1.1.12.3021|4|
1.3.6.1.2.1.47.1.1.1.1.12.3022|4|
1.3.6.1.2.1.47.1.1.1.1.12.3023|4|
1.3.6.1.2.1.47.1.1.1.1.12.3024|4|
1.3.6.1.2.1.47.1.1.1.1.12.3025|4|
1.3.6.1.2.1.47.1.1.1.1.12.3026|4|
1.3.6.1.2.1.47.1.1.1.1.12.3027|4|
1.3.6.1.2.1.47.1.1.1.1.12.3028|4|
1.3.6.1.2.1.47.1.1.1.1.12.3029|4|
1.3.6.1.2.1.47.1.1.1.1.12.3030|4|
1.3.6.1.2.1.47.1.1.1.1.12.3031|4|
1.3.6.1.2.1.47.1.1.1.1.12.3032|4|
1.3.6.1.2.1.47.1.1.1.1.12.3033|4|
1.3.6.1.2.1.47.1.1.1.1.12.3034|4|
1.3.6.1.2.1.47.1.1.1.1.12.3035|4|
1.3.6.1.2.1.47.1.1.1.1.12.3036|4|
1.3.6.1.2.1.47.1.1.1.1.12.3037|4|
1.3.6.1.2.1.47.1.1.1.1.12.3038|4|
1.3.6.1.2.1.47.1.1.1.1.12.3039|4|
1.3.6.1.2.1.47.1.1.1.1.12.3040|4|
1.3.6.1.2.1.47.1.1.1.1.12.3041|4|
1.3.6.1.2.1.47.1.1.1.1.12.3042|4|
1.3.6.1.2.1.47.1.1.1.1.12.3043|4|
1.3.6.1.2.1.47.1.1.1.1.12.3044|4|
1.3.6.1.2.1.47.1.1.1.1.12.3045|4|
1.3.6.1.2.1.47.1.1.1.1.12.3046|4|
1.3.6.1.2.1.47.1.1.1.1.12.3047|4|
1.3.6.1.2.1.47.1.1.1.1.12.3048|4|
1.3.6.1.2.1.47.1.1.1.1.12.3049|4|
1.3.6.1.2.1.47.1.1.1.1.12.3050|4|
1.3.6.1.2.1.47.1.1.1.1.12.3051|4|
1.3.6.1.2.1.47.1.1.1.1.12.3052|4|
1.3.6.1.2.1.47.1.1.1.1.12.3053|4|
1.3.6.1.2.1.47.1.1.1.1.12.3054|4|
1.3.6.1.2.1.47.1.1.1.1.12.3055|4|
1.3.6.1.2.1.47.1.1.1.1.12.3056|4|
1.3.6.1.2.1.47.1.1.1.1.12.3057|4|
1.3.6.1.2.1.47.1.1.1.1.13.1|4|
1.3.6.1.2.1.47.1.1.1.1.13.3001|4x|57532d43333735302d343850532d53
1.3.6.1.2.1.47.1.1.1.1.13.3002|4|
1.3.6.1.2.1.47.1.1.1.1.13.3003|4|
1.3.6.1.2.1.47.1.1.1.1.13.3004|4|
1.3.6.1.2.1.47.1.1.1.1.13.3005|4|
1.3.6.1.2.1.47.1.1.1.1.13.3006|4|
1.3.6.1.2.1.47.1.1.1.1.13.3007|4|
1.3.6.1.2.1.47.1.1.1.1.13.3008|4|
1.3.6.1.2.1.47.1.1.1.1.13.3009|4|
1.3.6.1.2.1.47.1.1.1.1.13.3010|4|
1.3.6.1.2.1.47.1.1.1.1.13.3011|4|
1.3.6.1.2.1.47.1.1.1.1.13.3012|4|
1.3.6.1.2.1.47.1.1.1.1.13.3013|4|
1.3.6.1.2.1.47.1.1.1.1.13.3014|4|
1.3.6.1.2.1.47.1.1.1.1.13.3015|4|
1.3.6.1.2.1.47.1.1.1.1.13.3016|4|
1.3.6.1.2.1.47.1.1.1.1.13.3017|4|
1.3.6.1.2.1.47.1.1.1.1.13.3018|4|
1.3.6.1.2.1.47.1.1.1.1.13.3019|4|
1.3.6.1.2.1.47.1.1.1.1.13.3020|4|
1.3.6.1.2.1.47.1.1.1.1.13.3021|4|
1.3.6.1.2.1.47.1.1.1.1.13.3022|4|
1.3.6.1.2.1.47.1.1.1.1.13.3023|4|
1.3.6.1.2.1.47.1.1.1.1.13.3024|4|
1.3.6.1.2.1.47.1.1.1.1.13.3025|4|
1.3.6.1.2.1.47.1.1.1.1.13.3026|4|
1.3.6.1.2.1.47.1.1.1.1.13.3027|4|
1.3.6.1.2.1.47.1.1.1.1.13.3028|4|
1.3.6.1.2.1.47.1.1.1.1.13.3029|4|
1.3.6.1.2.1.47.1.1.1.1.13.3030|4|
1.3.6.1.2.1.47.1.1.1.1.13.3031|4|
1.3.6.1.2.1.47.1.1.1.1.13.3032|4|
1.3.6.1.2.1.47.1.1.1.1.13.3033|4|
1.3.6.1.2.1.47.1.1.1.1.13.3034|4|
1.3.6.1.2.1.47.1.1.1.1.13.3035|4|
1.3.6.1.2.1.47.1.1.1.1.13.3036|4|
1.3.6.1.2.1.47.1.1.1.1.13.3037|4|
1.3.6.1.2.1.47.1.1.1.1.13.3038|4|
1.3.6.1.2.1.47.1.1.1.1.13.3039|4|
1.3.6.1.2.1.47.1.1.1.1.13.3040|4|
1.3.6.1.2.1.47.1.1.1.1.13.3041|4|
1.3.6.1.2.1.47.1.1.1.1.13.3042|4|
1.3.6.1.2.1.47.1.1.1.1.13.3043|4|
1.3.6.1.2.1.47.1.1.1.1.13.3044|4|
1.3.6.1.2.1.47.1.1.1.1.13.3045|4|
1.3.6.1.2.1.47.1.1.1.1.13.3046|4|
1.3.6.1.2.1.47.1.1.1.1.13.3047|4|
1.3.6.1.2.1.47.1.1.1.1.13.3048|4|
1.3.6.1.2.1.47.1.1.1.1.13.3049|4|
1.3.6.1.2.1.47.1.1.1.1.13.3050|4|
1.3.6.1.2.1.47.1.1.1.1.13.3051|4|
1.3.6.1.2.1.47.1.1.1.1.13.3052|4|
1.3.6.1.2.1.47.1.1.1.1.13.3053|4|
1.3.6.1.2.1.47.1.1.1.1.13.3054|4|
1.3.6.1.2.1.47.1.1.1.1.13.3055|4|
1.3.6.1.2.1.47.1.1.1.1.13.3056|4|
1.3.6.1.2.1.47.1.1.1.1.13.3057|4|
1.3.6.1.2.1.47.1.1.1.1.14.1|4|
1.3.6.1.2.1.47.1.1.1.1.14.3001|4|
1.3.6.1.2.1.47.1.1.1.1.14.3002|4|
1.3.6.1.2.1.47.1.1.1.1.14.3003|4|
1.3.6.1.2.1.47.1.1.1.1.14.3004|4|
1.3.6.1.2.1.47.1.1.1.1.14.3005|4|
1.3.6.1.2.1.47.1.1.1.1.14.3006|4|
1.3.6.1.2.1.47.1.1.1.1.14.3007|4|
1.3.6.1.2.1.47.1.1.1.1.14.3008|4|11001
1.3.6.1.2.1.47.1.1.1.1.14.3009|4|11002
1.3.6.1.2.1.47.1.1.1.1.14.3010|4|11003
1.3.6.1.2.1.47.1.1.1.1.14.3011|4|11004
1.3.6.1.2.1.47.1.1.1.1.14.3012|4|11005
1.3.6.1.2.1.47.1.1.1.1.14.3013|4|11006
1.3.6.1.2.1.47.1.1.1.1.14.3014|4|11007
1.3.6.1.2.1.47.1.1.1.1.14.3015|4|11008
1.3.6.1.2.1.47.1.1.1.1.14.3016|4|11009
1.3.6.1.2.1.47.1.1.1.1.14.3017|4|11010
1.3.6.1.2.1.47.1.1.1.1.14.3018|4|11011
1.3.6.1.2.1.47.1.1.1.1.14.3019|4|11012
1.3.6.1.2.1.47.1.1.1.1.14.3020|4|11013
1.3.6.1.2.1.47.1.1.1.1.14.3021|4|11014
1.3.6.1.2.1.47.1.1.1.1.14.3022|4|11015
1.3.6.1.2.1.47.1.1.1.1.14.3023|4|11016
1.3.6.1.2.1.47.1.1.1.1.14.3024|4|11017
1.3.6.1.2.1.47.1.1.1.1.14.3025|4|11018
1.3.6.1.2.1.47.1.1.1.1.14.3026|4|11019
1.3.6.1.2.1.47.1.1.1.1.14.3027|4|11020
1.3.6.1.2.1.47.1.1.1.1.14.3028|4|11021
1.3.6.1.2.1.47.1.1.1.1.14.3029|4|11022
1.3.6.1.2.1.47.1.1.1.1.14.3030|4|11023
1.3.6.1.2.1.47.1.1.1.1.14.3031|4|11024
1.3.6.1.2.1.47.1.1.1.1.14.3032|4|
1.3.6.1.2.1.47.1.1.1.1.14.3033|4|
1.3.6.1.2.1.47.1.1.1.1.14.3034|4|11025
1.3.6.1.2.1.47.1.1.1.1.14.3035|4|11026
1.3.6.1.2.1.47.1.1.1.1.14.3036|4|11027
1.3.6.1.2.1.47.1.1.1.1.14.3037|4|11028
1.3.6.1.2.1.47.1.1.1.1.14.3038|4|11029
1.3.6.1.2.1.47.1.1.1.1.14.3039|4|11030
1.3.6.1.2.1.47.1.1.1.1.14.3040|4|11031
1.3.6.1.2.1.47.1.1.1.1.14.3041|4|11032
1.3.6.1.2.1.47.1.1.1.1.14.3042|4|11033
1.3.6.1.2.1.47.1.1.1.1.14.3043|4|11034
1.3.6.1.2.1.47.1.1.1.1.14.3044|4|11035
1.3.6.1.2.1.47.1.1.1.1.14.3045|4|11036
1.3.6.1.2.1.47.1.1.1.1.14.3046|4|11037
1.3.6.1.2.1.47.1.1.1.1.14.3047|4|11038
1.3.6.1.2.1.47.1.1.1.1.14.3048|4|11039
1.3.6.1.2.1.47.1.1.1.1.14.3049|4|11040
1.3.6.1.2.1.47.1.1.1.1.14.3050|4|11041
1.3.6.1.2.1.47.1.1.1.1.14.3051|4|11042
1.3.6.1.2.1.47.1.1.1.1.14.3052|4|11043
1.3.6.1.2.1.47.1.1.1.1.14.3053|4|11044
1.3.6.1.2.1.47.1.1.1.1.14.3054|4|11045
1.3.6.1.2.1.47.1.1.1.1.14.3055|4|11046
1.3.6.1.2.1.47.1.1.1.1.14.3056|4|11047
1.3.6.1.2.1.47.1.1.1.1.14.3057|4|11048
1.3.6.1.2.1.47.1.1.1.1.15.1|4|
1.3.6.1.2.1.47.1.1.1.1.15.3001|4|
1.3.6.1.2.1.47.1.1.1.1.15.3002|4|
1.3.6.1.2.1.47.1.1.1.1.15.3003|4|
1.3.6.1.2.1.47.1.1.1.1.15.3004|4|
1.3.6.1.2.1.47.1.1.1.1.15.3005|4|
1.3.6.1.2.1.47.1.1.1.1.15.3006|4|
1.3.6.1.2.1.47.1.1.1.1.15.3007|4|
1.3.6.1.2.1.47.1.1.1.1.15.3008|4|
1.3.6.1.2.1.47.1.1.1.1.15.3009|4|
1.3.6.1.2.1.47.1.1.1.1.15.3010|4|
1.3.6.1.2.1.47.1.1.1.1.15.3011|4|
1.3.6.1.2.1.47.1.1.1.1.15.3012|4|
1.3.6.1.2.1.47.1.1.1.1.15.3013|4|
1.3.6.1.2.1.47.1.1.1.1.15.3014|4|
1.3.6.1.2.1.47.1.1.1.1.15.3015|4|
1.3.6.1.2.1.47.1.1.1.1.15.3016|4|
1.3.6.1.2.1.47.1.1.1.1.15.3017|4|
1.3.6.1.2.1.47.1.1.1.1.15.3018|4|
1.3.6.1.2.1.47.1.1.1.1.15.3019|4|
1.3.6.1.2.1.47.1.1.1.1.15.3020|4|
1.3.6.1.2.1.47.1.1.1.1.15.3021|4|
1.3.6.1.2.1.47.1.1.1.1.15.3022|4|
1.3.6.1.2.1.47.1.1.1.1.15.3023|4|
1.3.6.1.2.1.47.1.1.1.1.15.3024|4|
1.3.6.1.2.1.47.1.1.1.1.15.3025|4|
1.3.6.1.2.1.47.1.1.1.1.15.3026|4|
1.3.6.1.2.1.47.1.1.1.1.15.3027|4|
1.3.6.1.2.1.47.1.1.1.1.15.3028|4|
1.3.6.1.2.1.47.1.1.1.1.15.3029|4|
1.3.6.1.2.1.47.1.1.1.1.15.3030|4|
1.3.6.1.2.1.47.1.1.1.1.15.3031|4|
1.3.6.1.2.1.47.1.1.1.1.15.3032|4|
1.3.6.1.2.1.47.1.1.1.1.15.3033|4|
1.3.6.1.2.1.47.1.1.1.1.15.3034|4|
1.3.6.1.2.1.47.1.1.1.1.15.3035|4|
1.3.6.1.2.1.47.1.1.1.1.15.3036|4|
1.3.6.1.2.1.47.1.1.1.1.15.3037|4|
1.3.6.1.2.1.47.1.1.1.1.15.3038|4|
1.3.6.1.2.1.47.1.1.1.1.15.3039|4|
1.3.6.1.2.1.47.1.1.1.1.15.3040|4|
1.3.6.1.2.1.47.1.1.1.1.15.3041|4|
1.3.6.1.2.1.47.1.1.1.1.15.3042|4|
1.3.6.1.2.1.47.1.1.1.1.15.3043|4|
1.3.6.1.2.1.47.1.1.1.1.15.3044|4|
1.3.6.1.2.1.47.1.1.1.1.15.3045|4|
1.3.6.1.2.1.47.1.1.1.1.15.3046|4|
1.3.6.1.2.1.47.1.1.1.1.15.3047|4|
1.3.6.1.2.1.47.1.1.1.1.15.3048|4|
1.3.6.1.2.1.47.1.1.1.1.15.3049|4|
1.3.6.1.2.1.47.1.1.1.1.15.3050|4|
1.3.6.1.2.1.47.1.1.1.1.15.3051|4|
1.3.6.1.2.1.47.1.1.1.1.15.3052|4|
1.3.6.1.2.1.47.1.1.1.1.15.3053|4|
1.3.6.1.2.1.47.1.1.1.1.15.3054|4|
1.3.6.1.2.1.47.1.1.1.1.15.3055|4|
1.3.6.1.2.1.47.1.1.1.1.15.3056|4|
1.3.6.1.2.1.47.1.1.1.1.15.3057|4|
1.3.6.1.2.1.47.1.1.1.1.16.1|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3001|2|1
1.3.6.1.2.1.47.1.1.1.1.16.3002|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3003|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3004|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3005|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3006|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3007|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3008|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3009|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3010|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3011|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3012|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3013|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3014|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3015|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3016|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3017|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3018|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3019|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3020|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3021|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3022|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3023|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3024|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3025|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3026|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3027|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3028|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3029|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3030|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3031|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3032|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3033|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3034|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3035|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3036|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3037|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3038|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3039|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3040|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3041|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3042|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3043|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3044|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3045|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3046|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3047|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3048|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3049|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3050|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3051|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3052|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3053|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3054|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3055|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3056|2|2
1.3.6.1.2.1.47.1.1.1.1.16.3057|2|2
1.3.6.1.2.1.47.1.2.1.1.2.1|4|vlan1
1.3.6.1.2.1.47.1.2.1.1.2.2|4|vlan1002
1.3.6.1.2.1.47.1.2.1.1.2.3|4|vlan1004
1.3.6.1.2.1.47.1.2.1.1.2.4|4|vlan1005
1.3.6.1.2.1.47.1.2.1.1.2.5|4|vlan1003
1.3.6.1.2.1.47.1.2.1.1.2.6|4|vlan4
1.3.6.1.2.1.47.1.2.1.1.2.7|4|vlan10
1.3.6.1.2.1.47.1.2.1.1.2.8|4|vlan35
1.3.6.1.2.1.47.1.2.1.1.2.9|4|vlan60
1.3.6.1.2.1.47.1.2.1.1.2.10|4|vlan63
1.3.6.1.2.1.47.1.2.1.1.2.11|4|vlan65
1.3.6.1.2.1.47.1.2.1.1.2.12|4|vlan70
1.3.6.1.2.1.47.1.2.1.1.2.13|4|vlan73
1.3.6.1.2.1.47.1.2.1.1.2.14|4|vlan74
1.3.6.1.2.1.47.1.2.1.1.2.15|4|vlan80
1.3.6.1.2.1.47.1.2.1.1.2.16|4|vlan201
1.3.6.1.2.1.47.1.2.1.1.2.17|4|vlan250
1.3.6.1.2.1.47.1.2.1.1.2.18|4|vlan255
1.3.6.1.2.1.47.1.2.1.1.2.19|4|vlan998
1.3.6.1.2.1.47.1.2.1.1.2.20|4|vlan200
1.3.6.1.2.1.47.1.2.1.1.3.1|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.2|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.3|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.4|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.5|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.6|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.7|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.8|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.9|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.10|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.11|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.12|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.13|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.14|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.15|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.16|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.17|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.18|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.19|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.3.20|6|1.3.6.1.2.1.17
1.3.6.1.2.1.47.1.2.1.1.4.1|4x|50726f664031
1.3.6.1.2.1.47.1.2.1.1.4.2|4x|50726f664031303032
1.3.6.1.2.1.47.1.2.1.1.4.3|4x|50726f664031303034
1.3.6.1.2.1.47.1.2.1.1.4.4|4x|50726f664031303035
1.3.6.1.2.1.47.1.2.1.1.4.5|4x|50726f664031303033
1.3.6.1.2.1.47.1.2.1.1.4.6|4x|50726f664034
1.3.6.1.2.1.47.1.2.1.1.4.7|4x|50726f66403130
1.3.6.1.2.1.47.1.2.1.1.4.8|4x|50726f66403335
1.3.6.1.2.1.47.1.2.1.1.4.9|4x|50726f66403630
1.3.6.1.2.1.47.1.2.1.1.4.10|4x|50726f66403633
1.3.6.1.2.1.47.1.2.1.1.4.11|4x|50726f66403635
1.3.6.1.2.1.47.1.2.1.1.4.12|4x|50726f66403730
1.3.6.1.2.1.47.1.2.1.1.4.13|4x|50726f66403733
1.3.6.1.2.1.47.1.2.1.1.4.14|4x|50726f66403734
1.3.6.1.2.1.47.1.2.1.1.4.15|4x|50726f66403830
1.3.6.1.2.1.47.1.2.1.1.4.16|4x|50726f6640323031
1.3.6.1.2.1.47.1.2.1.1.4.17|4x|50726f6640323530
1.3.6.1.2.1.47.1.2.1.1.4.18|4x|50726f6640323535
1.3.6.1.2.1.47.1.2.1.1.4.19|4x|50726f6640393938
1.3.6.1.2.1.47.1.2.1.1.4.20|4x|50726f6640323030
1.3.6.1.2.1.47.1.2.1.1.5.1|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.2|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.3|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.4|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.5|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.6|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.7|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.8|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.9|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.10|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.11|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.12|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.13|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.14|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.15|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.16|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.17|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.18|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.19|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.5.20|4x|0acc581000a1
1.3.6.1.2.1.47.1.2.1.1.6.1|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.2|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.3|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.4|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.5|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.6|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.7|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.8|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.9|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.10|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.11|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.12|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.13|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.14|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.15|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.16|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.17|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.18|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.19|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.6.20|6|1.3.6.1.6.1.1
1.3.6.1.2.1.47.1.2.1.1.7.1|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.2|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.3|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.4|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.5|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.6|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.7|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.8|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.9|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.10|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.11|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.12|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.13|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.14|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.15|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.16|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.17|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.18|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.19|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.7.20|4x|8000000903000016c7026e83
1.3.6.1.2.1.47.1.2.1.1.8.1|4x|766c616e2d31
1.3.6.1.2.1.47.1.2.1.1.8.2|4x|766c616e2d31303032
1.3.6.1.2.1.47.1.2.1.1.8.3|4x|766c616e2d31303034
1.3.6.1.2.1.47.1.2.1.1.8.4|4x|766c616e2d31303035
1.3.6.1.2.1.47.1.2.1.1.8.5|4x|766c616e2d31303033
1.3.6.1.2.1.47.1.2.1.1.8.6|4x|766c616e2d34
1.3.6.1.2.1.47.1.2.1.1.8.7|4x|766c616e2d3130
1.3.6.1.2.1.47.1.2.1.1.8.8|4x|766c616e2d3335
1.3.6.1.2.1.47.1.2.1.1.8.9|4x|766c616e2d3630
1.3.6.1.2.1.47.1.2.1.1.8.10|4x|766c616e2d3633
1.3.6.1.2.1.47.1.2.1.1.8.11|4x|766c616e2d3635
1.3.6.1.2.1.47.1.2.1.1.8.12|4x|766c616e2d3730
1.3.6.1.2.1.47.1.2.1.1.8.13|4x|766c616e2d3733
1.3.6.1.2.1.47.1.2.1.1.8.14|4x|766c616e2d3734
1.3.6.1.2.1.47.1.2.1.1.8.15|4x|766c616e2d3830
1.3.6.1.2.1.47.1.2.1.1.8.16|4x|766c616e2d323031
1.3.6.1.2.1.47.1.2.1.1.8.17|4x|766c616e2d323530
1.3.6.1.2.1.47.1.2.1.1.8.18|4x|766c616e2d323535
1.3.6.1.2.1.47.1.2.1.1.8.19|4x|766c616e2d393938
1.3.6.1.2.1.47.1.2.1.1.8.20|4x|766c616e2d323030
1.3.6.1.2.1.47.1.3.2.1.2.3005.0|6|1.3.6.1.2.1.2.2.1.1.5185
1.3.6.1.2.1.47.1.3.2.1.2.3008.0|6|1.3.6.1.2.1.2.2.1.1.11001
1.3.6.1.2.1.47.1.3.2.1.2.3009.0|6|1.3.6.1.2.1.2.2.1.1.11002
1.3.6.1.2.1.47.1.3.2.1.2.3010.0|6|1.3.6.1.2.1.2.2.1.1.11003
1.3.6.1.2.1.47.1.3.2.1.2.3011.0|6|1.3.6.1.2.1.2.2.1.1.11004
1.3.6.1.2.1.47.1.3.2.1.2.3012.0|6|1.3.6.1.2.1.2.2.1.1.11005
1.3.6.1.2.1.47.1.3.2.1.2.3013.0|6|1.3.6.1.2.1.2.2.1.1.11006
1.3.6.1.2.1.47.1.3.2.1.2.3014.0|6|1.3.6.1.2.1.2.2.1.1.11007
1.3.6.1.2.1.47.1.3.2.1.2.3015.0|6|1.3.6.1.2.1.2.2.1.1.11008
1.3.6.1.2.1.47.1.3.2.1.2.3016.0|6|1.3.6.1.2.1.2.2.1.1.11009
1.3.6.1.2.1.47.1.3.2.1.2.3017.0|6|1.3.6.1.2.1.2.2.1.1.11010
1.3.6.1.2.1.47.1.3.2.1.2.3018.0|6|1.3.6.1.2.1.2.2.1.1.11011
1.3.6.1.2.1.47.1.3.2.1.2.3019.0|6|1.3.6.1.2.1.2.2.1.1.11012
1.3.6.1.2.1.47.1.3.2.1.2.3020.0|6|1.3.6.1.2.1.2.2.1.1.11013
1.3.6.1.2.1.47.1.3.2.1.2.3021.0|6|1.3.6.1.2.1.2.2.1.1.11014
1.3.6.1.2.1.47.1.3.2.1.2.3022.0|6|1.3.6.1.2.1.2.2.1.1.11015
1.3.6.1.2.1.47.1.3.2.1.2.3023.0|6|1.3.6.1.2.1.2.2.1.1.11016
1.3.6.1.2.1.47.1.3.2.1.2.3024.0|6|1.3.6.1.2.1.2.2.1.1.11017
1.3.6.1.2.1.47.1.3.2.1.2.3025.0|6|1.3.6.1.2.1.2.2.1.1.11018
1.3.6.1.2.1.47.1.3.2.1.2.3026.0|6|1.3.6.1.2.1.2.2.1.1.11019
1.3.6.1.2.1.47.1.3.2.1.2.3027.0|6|1.3.6.1.2.1.2.2.1.1.11020
1.3.6.1.2.1.47.1.3.2.1.2.3028.0|6|1.3.6.1.2.1.2.2.1.1.11021
1.3.6.1.2.1.47.1.3.2.1.2.3029.0|6|1.3.6.1.2.1.2.2.1.1.11022
1.3.6.1.2.1.47.1.3.2.1.2.3030.0|6|1.3.6.1.2.1.2.2.1.1.11023
1.3.6.1.2.1.47.1.3.2.1.2.3031.0|6|1.3.6.1.2.1.2.2.1.1.11024
1.3.6.1.2.1.47.1.3.2.1.2.3034.0|6|1.3.6.1.2.1.2.2.1.1.11025
1.3.6.1.2.1.47.1.3.2.1.2.3035.0|6|1.3.6.1.2.1.2.2.1.1.11026
1.3.6.1.2.1.47.1.3.2.1.2.3036.0|6|1.3.6.1.2.1.2.2.1.1.11027
1.3.6.1.2.1.47.1.3.2.1.2.3037.0|6|1.3.6.1.2.1.2.2.1.1.11028
1.3.6.1.2.1.47.1.3.2.1.2.3038.0|6|1.3.6.1.2.1.2.2.1.1.11029
1.3.6.1.2.1.47.1.3.2.1.2.3039.0|6|1.3.6.1.2.1.2.2.1.1.11030
1.3.6.1.2.1.47.1.3.2.1.2.3040.0|6|1.3.6.1.2.1.2.2.1.1.11031
1.3.6.1.2.1.47.1.3.2.1.2.3041.0|6|1.3.6.1.2.1.2.2.1.1.11032
1.3.6.1.2.1.47.1.3.2.1.2.3042.0|6|1.3.6.1.2.1.2.2.1.1.11033
1.3.6.1.2.1.47.1.3.2.1.2.3043.0|6|1.3.6.1.2.1.2.2.1.1.11034
1.3.6.1.2.1.47.1.3.2.1.2.3044.0|6|1.3.6.1.2.1.2.2.1.1.11035
1.3.6.1.2.1.47.1.3.2.1.2.3045.0|6|1.3.6.1.2.1.2.2.1.1.11036
1.3.6.1.2.1.47.1.3.2.1.2.3046.0|6|1.3.6.1.2.1.2.2.1.1.11037
1.3.6.1.2.1.47.1.3.2.1.2.3047.0|6|1.3.6.1.2.1.2.2.1.1.11038
1.3.6.1.2.1.47.1.3.2.1.2.3048.0|6|1.3.6.1.2.1.2.2.1.1.11039
1.3.6.1.2.1.47.1.3.2.1.2.3049.0|6|1.3.6.1.2.1.2.2.1.1.11040
1.3.6.1.2.1.47.1.3.2.1.2.3050.0|6|1.3.6.1.2.1.2.2.1.1.11041
1.3.6.1.2.1.47.1.3.2.1.2.3051.0|6|1.3.6.1.2.1.2.2.1.1.11042
1.3.6.1.2.1.47.1.3.2.1.2.3052.0|6|1.3.6.1.2.1.2.2.1.1.11043
1.3.6.1.2.1.47.1.3.2.1.2.3053.0|6|1.3.6.1.2.1.2.2.1.1.11044
1.3.6.1.2.1.47.1.3.2.1.2.3054.0|6|1.3.6.1.2.1.2.2.1.1.11045
1.3.6.1.2.1.47.1.3.2.1.2.3055.0|6|1.3.6.1.2.1.2.2.1.1.11046
1.3.6.1.2.1.47.1.3.2.1.2.3056.0|6|1.3.6.1.2.1.2.2.1.1.11047
1.3.6.1.2.1.47.1.3.2.1.2.3057.0|6|1.3.6.1.2.1.2.2.1.1.11048
1.3.6.1.2.1.47.1.3.3.1.1.1.3001|2|3001
1.3.6.1.2.1.47.1.3.3.1.1.3001.3002|2|3002
1.3.6.1.2.1.47.1.3.3.1.1.3001.3003|2|3003
1.3.6.1.2.1.47.1.3.3.1.1.3001.3004|2|3004
1.3.6.1.2.1.47.1.3.3.1.1.3002.3005|2|3005
1.3.6.1.2.1.47.1.3.3.1.1.3002.3006|2|3006
1.3.6.1.2.1.47.1.3.3.1.1.3002.3007|2|3007
1.3.6.1.2.1.47.1.3.3.1.1.3002.3008|2|3008
1.3.6.1.2.1.47.1.3.3.1.1.3002.3009|2|3009
1.3.6.1.2.1.47.1.3.3.1.1.3002.3010|2|3010
1.3.6.1.2.1.47.1.3.3.1.1.3002.3011|2|3011
1.3.6.1.2.1.47.1.3.3.1.1.3002.3012|2|3012
1.3.6.1.2.1.47.1.3.3.1.1.3002.3013|2|3013
1.3.6.1.2.1.47.1.3.3.1.1.3002.3014|2|3014
1.3.6.1.2.1.47.1.3.3.1.1.3002.3015|2|3015
1.3.6.1.2.1.47.1.3.3.1.1.3002.3016|2|3016
1.3.6.1.2.1.47.1.3.3.1.1.3002.3017|2|3017
1.3.6.1.2.1.47.1.3.3.1.1.3002.3018|2|3018
1.3.6.1.2.1.47.1.3.3.1.1.3002.3019|2|3019
1.3.6.1.2.1.47.1.3.3.1.1.3002.3020|2|3020
1.3.6.1.2.1.47.1.3.3.1.1.3002.3021|2|3021
1.3.6.1.2.1.47.1.3.3.1.1.3002.3022|2|3022
1.3.6.1.2.1.47.1.3.3.1.1.3002.3023|2|3023
1.3.6.1.2.1.47.1.3.3.1.1.3002.3024|2|3024
1.3.6.1.2.1.47.1.3.3.1.1.3002.3025|2|3025
1.3.6.1.2.1.47.1.3.3.1.1.3002.3026|2|3026
1.3.6.1.2.1.47.1.3.3.1.1.3002.3027|2|3027
1.3.6.1.2.1.47.1.3.3.1.1.3002.3028|2|3028
1.3.6.1.2.1.47.1.3.3.1.1.3002.3029|2|3029
1.3.6.1.2.1.47.1.3.3.1.1.3002.3030|2|3030
1.3.6.1.2.1.47.1.3.3.1.1.3002.3031|2|3031
1.3.6.1.2.1.47.1.3.3.1.1.3002.3032|2|3032
1.3.6.1.2.1.47.1.3.3.1.1.3002.3033|2|3033
1.3.6.1.2.1.47.1.3.3.1.1.3002.3034|2|3034
1.3.6.1.2.1.47.1.3.3.1.1.3002.3035|2|3035
1.3.6.1.2.1.47.1.3.3.1.1.3002.3036|2|3036
1.3.6.1.2.1.47.1.3.3.1.1.3002.3037|2|3037
1.3.6.1.2.1.47.1.3.3.1.1.3002.3038|2|3038
1.3.6.1.2.1.47.1.3.3.1.1.3002.3039|2|3039
1.3.6.1.2.1.47.1.3.3.1.1.3002.3040|2|3040
1.3.6.1.2.1.47.1.3.3.1.1.3002.3041|2|3041
1.3.6.1.2.1.47.1.3.3.1.1.3002.3042|2|3042
1.3.6.1.2.1.47.1.3.3.1.1.3002.3043|2|3043
1.3.6.1.2.1.47.1.3.3.1.1.3002.3044|2|3044
1.3.6.1.2.1.47.1.3.3.1.1.3002.3045|2|3045
1.3.6.1.2.1.47.1.3.3.1.1.3002.3046|2|3046
1.3.6.1.2.1.47.1.3.3.1.1.3002.3047|2|3047
1.3.6.1.2.1.47.1.3.3.1.1.3002.3048|2|3048
1.3.6.1.2.1.47.1.3.3.1.1.3002.3049|2|3049
1.3.6.1.2.1.47.1.3.3.1.1.3002.3050|2|3050
1.3.6.1.2.1.47.1.3.3.1.1.3002.3051|2|3051
1.3.6.1.2.1.47.1.3.3.1.1.3002.3052|2|3052
1.3.6.1.2.1.47.1.3.3.1.1.3002.3053|2|3053
1.3.6.1.2.1.47.1.3.3.1.1.3002.3054|2|3054
1.3.6.1.2.1.47.1.3.3.1.1.3002.3055|2|3055
1.3.6.1.2.1.47.1.3.3.1.1.3002.3056|2|3056
1.3.6.1.2.1.47.1.3.3.1.1.3002.3057|2|3057
1.3.6.1.2.1.47.1.4.1.0|67|9899
1.3.6.1.2.1.83.1.1.1.0|2|2
1.3.6.1.2.1.83.1.1.7.0|66|0
1.3.6.1.2.1.92.1.1.1.0|66|500
1.3.6.1.2.1.92.1.1.2.0|66|15
1.3.6.1.2.1.92.1.2.1.0|65|0
1.3.6.1.2.1.92.1.2.2.0|65|0
1.3.6.1.2.1.105.1.1.1.3.3.3|2|1
1.3.6.1.2.1.105.1.1.1.3.3.4|2|1
1.3.6.1.2.1.105.1.1.1.3.3.5|2|1
1.3.6.1.2.1.105.1.1.1.3.3.6|2|1
1.3.6.1.2.1.105.1.1.1.3.3.7|2|1
1.3.6.1.2.1.105.1.1.1.3.3.8|2|1
1.3.6.1.2.1.105.1.1.1.3.3.9|2|1
1.3.6.1.2.1.105.1.1.1.3.3.10|2|1
1.3.6.1.2.1.105.1.1.1.3.3.11|2|1
1.3.6.1.2.1.105.1.1.1.3.3.12|2|1
1.3.6.1.2.1.105.1.1.1.3.3.13|2|1
1.3.6.1.2.1.105.1.1.1.3.3.14|2|1
1.3.6.1.2.1.105.1.1.1.3.3.15|2|1
1.3.6.1.2.1.105.1.1.1.3.3.16|2|1
1.3.6.1.2.1.105.1.1.1.3.3.17|2|1
1.3.6.1.2.1.105.1.1.1.3.3.18|2|1
1.3.6.1.2.1.105.1.1.1.3.3.19|2|1
1.3.6.1.2.1.105.1.1.1.3.3.20|2|1
1.3.6.1.2.1.105.1.1.1.3.3.21|2|1
1.3.6.1.2.1.105.1.1.1.3.3.22|2|1
1.3.6.1.2.1.105.1.1.1.3.3.23|2|1
1.3.6.1.2.1.105.1.1.1.3.3.24|2|1
1.3.6.1.2.1.105.1.1.1.3.3.25|2|1
1.3.6.1.2.1.105.1.1.1.3.3.26|2|1
1.3.6.1.2.1.105.1.1.1.3.3.29|2|1
1.3.6.1.2.1.105.1.1.1.3.3.30|2|1
1.3.6.1.2.1.105.1.1.1.3.3.31|2|1
1.3.6.1.2.1.105.1.1.1.3.3.32|2|1
1.3.6.1.2.1.105.1.1.1.3.3.33|2|1
1.3.6.1.2.1.105.1.1.1.3.3.34|2|1
1.3.6.1.2.1.105.1.1.1.3.3.35|2|1
1.3.6.1.2.1.105.1.1.1.3.3.36|2|1
1.3.6.1.2.1.105.1.1.1.3.3.37|2|1
1.3.6.1.2.1.105.1.1.1.3.3.38|2|1
1.3.6.1.2.1.105.1.1.1.3.3.39|2|1
1.3.6.1.2.1.105.1.1.1.3.3.40|2|1
1.3.6.1.2.1.105.1.1.1.3.3.41|2|1
1.3.6.1.2.1.105.1.1.1.3.3.42|2|1
1.3.6.1.2.1.105.1.1.1.3.3.43|2|1
1.3.6.1.2.1.105.1.1.1.3.3.44|2|1
1.3.6.1.2.1.105.1.1.1.3.3.45|2|1
1.3.6.1.2.1.105.1.1.1.3.3.46|2|1
1.3.6.1.2.1.105.1.1.1.3.3.47|2|1
1.3.6.1.2.1.105.1.1.1.3.3.48|2|1
1.3.6.1.2.1.105.1.1.1.3.3.49|2|1
1.3.6.1.2.1.105.1.1.1.3.3.50|2|1
1.3.6.1.2.1.105.1.1.1.3.3.51|2|1
1.3.6.1.2.1.105.1.1.1.3.3.52|2|1
1.3.6.1.2.1.105.1.1.1.4.3.3|2|2
1.3.6.1.2.1.105.1.1.1.4.3.4|2|2
1.3.6.1.2.1.105.1.1.1.4.3.5|2|2
1.3.6.1.2.1.105.1.1.1.4.3.6|2|2
1.3.6.1.2.1.105.1.1.1.4.3.7|2|2
1.3.6.1.2.1.105.1.1.1.4.3.8|2|2
1.3.6.1.2.1.105.1.1.1.4.3.9|2|2
1.3.6.1.2.1.105.1.1.1.4.3.10|2|2
1.3.6.1.2.1.105.1.1.1.4.3.11|2|2
1.3.6.1.2.1.105.1.1.1.4.3.12|2|2
1.3.6.1.2.1.105.1.1.1.4.3.13|2|2
1.3.6.1.2.1.105.1.1.1.4.3.14|2|2
1.3.6.1.2.1.105.1.1.1.4.3.15|2|2
1.3.6.1.2.1.105.1.1.1.4.3.16|2|2
1.3.6.1.2.1.105.1.1.1.4.3.17|2|2
1.3.6.1.2.1.105.1.1.1.4.3.18|2|2
1.3.6.1.2.1.105.1.1.1.4.3.19|2|2
1.3.6.1.2.1.105.1.1.1.4.3.20|2|2
1.3.6.1.2.1.105.1.1.1.4.3.21|2|2
1.3.6.1.2.1.105.1.1.1.4.3.22|2|2
1.3.6.1.2.1.105.1.1.1.4.3.23|2|2
1.3.6.1.2.1.105.1.1.1.4.3.24|2|2
1.3.6.1.2.1.105.1.1.1.4.3.25|2|2
1.3.6.1.2.1.105.1.1.1.4.3.26|2|2
1.3.6.1.2.1.105.1.1.1.4.3.29|2|2
1.3.6.1.2.1.105.1.1.1.4.3.30|2|2
1.3.6.1.2.1.105.1.1.1.4.3.31|2|2
1.3.6.1.2.1.105.1.1.1.4.3.32|2|2
1.3.6.1.2.1.105.1.1.1.4.3.33|2|2
1.3.6.1.2.1.105.1.1.1.4.3.34|2|2
1.3.6.1.2.1.105.1.1.1.4.3.35|2|2
1.3.6.1.2.1.105.1.1.1.4.3.36|2|2
1.3.6.1.2.1.105.1.1.1.4.3.37|2|2
1.3.6.1.2.1.105.1.1.1.4.3.38|2|2
1.3.6.1.2.1.105.1.1.1.4.3.39|2|2
1.3.6.1.2.1.105.1.1.1.4.3.40|2|2
1.3.6.1.2.1.105.1.1.1.4.3.41|2|2
1.3.6.1.2.1.105.1.1.1.4.3.42|2|2
1.3.6.1.2.1.105.1.1.1.4.3.43|2|2
1.3.6.1.2.1.105.1.1.1.4.3.44|2|2
1.3.6.1.2.1.105.1.1.1.4.3.45|2|2
1.3.6.1.2.1.105.1.1.1.4.3.46|2|2
1.3.6.1.2.1.105.1.1.1.4.3.47|2|2
1.3.6.1.2.1.105.1.1.1.4.3.48|2|2
1.3.6.1.2.1.105.1.1.1.4.3.49|2|2
1.3.6.1.2.1.105.1.1.1.4.3.50|2|2
1.3.6.1.2.1.105.1.1.1.4.3.51|2|2
1.3.6.1.2.1.105.1.1.1.4.3.52|2|2
1.3.6.1.2.1.105.1.1.1.5.3.3|2|1
1.3.6.1.2.1.105.1.1.1.5.3.4|2|1
1.3.6.1.2.1.105.1.1.1.5.3.5|2|1
1.3.6.1.2.1.105.1.1.1.5.3.6|2|1
1.3.6.1.2.1.105.1.1.1.5.3.7|2|1
1.3.6.1.2.1.105.1.1.1.5.3.8|2|1
1.3.6.1.2.1.105.1.1.1.5.3.9|2|1
1.3.6.1.2.1.105.1.1.1.5.3.10|2|1
1.3.6.1.2.1.105.1.1.1.5.3.11|2|1
1.3.6.1.2.1.105.1.1.1.5.3.12|2|1
1.3.6.1.2.1.105.1.1.1.5.3.13|2|1
1.3.6.1.2.1.105.1.1.1.5.3.14|2|1
1.3.6.1.2.1.105.1.1.1.5.3.15|2|1
1.3.6.1.2.1.105.1.1.1.5.3.16|2|1
1.3.6.1.2.1.105.1.1.1.5.3.17|2|1
1.3.6.1.2.1.105.1.1.1.5.3.18|2|1
1.3.6.1.2.1.105.1.1.1.5.3.19|2|1
1.3.6.1.2.1.105.1.1.1.5.3.20|2|1
1.3.6.1.2.1.105.1.1.1.5.3.21|2|1
1.3.6.1.2.1.105.1.1.1.5.3.22|2|1
1.3.6.1.2.1.105.1.1.1.5.3.23|2|1
1.3.6.1.2.1.105.1.1.1.5.3.24|2|1
1.3.6.1.2.1.105.1.1.1.5.3.25|2|1
1.3.6.1.2.1.105.1.1.1.5.3.26|2|1
1.3.6.1.2.1.105.1.1.1.5.3.29|2|1
1.3.6.1.2.1.105.1.1.1.5.3.30|2|1
1.3.6.1.2.1.105.1.1.1.5.3.31|2|1
1.3.6.1.2.1.105.1.1.1.5.3.32|2|1
1.3.6.1.2.1.105.1.1.1.5.3.33|2|1
1.3.6.1.2.1.105.1.1.1.5.3.34|2|1
1.3.6.1.2.1.105.1.1.1.5.3.35|2|1
1.3.6.1.2.1.105.1.1.1.5.3.36|2|1
1.3.6.1.2.1.105.1.1.1.5.3.37|2|1
1.3.6.1.2.1.105.1.1.1.5.3.38|2|1
1.3.6.1.2.1.105.1.1.1.5.3.39|2|1
1.3.6.1.2.1.105.1.1.1.5.3.40|2|1
1.3.6.1.2.1.105.1.1.1.5.3.41|2|1
1.3.6.1.2.1.105.1.1.1.5.3.42|2|1
1.3.6.1.2.1.105.1.1.1.5.3.43|2|1
1.3.6.1.2.1.105.1.1.1.5.3.44|2|1
1.3.6.1.2.1.105.1.1.1.5.3.45|2|1
1.3.6.1.2.1.105.1.1.1.5.3.46|2|1
1.3.6.1.2.1.105.1.1.1.5.3.47|2|1
1.3.6.1.2.1.105.1.1.1.5.3.48|2|1
1.3.6.1.2.1.105.1.1.1.5.3.49|2|1
1.3.6.1.2.1.105.1.1.1.5.3.50|2|1
1.3.6.1.2.1.105.1.1.1.5.3.51|2|1
1.3.6.1.2.1.105.1.1.1.5.3.52|2|1
1.3.6.1.2.1.105.1.1.1.6.3.3|2|2
1.3.6.1.2.1.105.1.1.1.6.3.4|2|2
1.3.6.1.2.1.105.1.1.1.6.3.5|2|3
1.3.6.1.2.1.105.1.1.1.6.3.6|2|2
1.3.6.1.2.1.105.1.1.1.6.3.7|2|2
1.3.6.1.2.1.105.1.1.1.6.3.8|2|2
1.3.6.1.2.1.105.1.1.1.6.3.9|2|2
1.3.6.1.2.1.105.1.1.1.6.3.10|2|2
1.3.6.1.2.1.105.1.1.1.6.3.11|2|2
1.3.6.1.2.1.105.1.1.1.6.3.12|2|2
1.3.6.1.2.1.105.1.1.1.6.3.13|2|2
1.3.6.1.2.1.105.1.1.1.6.3.14|2|2
1.3.6.1.2.1.105.1.1.1.6.3.15|2|2
1.3.6.1.2.1.105.1.1.1.6.3.16|2|2
1.3.6.1.2.1.105.1.1.1.6.3.17|2|2
1.3.6.1.2.1.105.1.1.1.6.3.18|2|2
1.3.6.1.2.1.105.1.1.1.6.3.19|2|2
1.3.6.1.2.1.105.1.1.1.6.3.20|2|2
1.3.6.1.2.1.105.1.1.1.6.3.21|2|2
1.3.6.1.2.1.105.1.1.1.6.3.22|2|2
1.3.6.1.2.1.105.1.1.1.6.3.23|2|2
1.3.6.1.2.1.105.1.1.1.6.3.24|2|2
1.3.6.1.2.1.105.1.1.1.6.3.25|2|2
1.3.6.1.2.1.105.1.1.1.6.3.26|2|2
1.3.6.1.2.1.105.1.1.1.6.3.29|2|2
1.3.6.1.2.1.105.1.1.1.6.3.30|2|2
1.3.6.1.2.1.105.1.1.1.6.3.31|2|2
1.3.6.1.2.1.105.1.1.1.6.3.32|2|2
1.3.6.1.2.1.105.1.1.1.6.3.33|2|2
1.3.6.1.2.1.105.1.1.1.6.3.34|2|2
1.3.6.1.2.1.105.1.1.1.6.3.35|2|2
1.3.6.1.2.1.105.1.1.1.6.3.36|2|2
1.3.6.1.2.1.105.1.1.1.6.3.37|2|2
1.3.6.1.2.1.105.1.1.1.6.3.38|2|2
1.3.6.1.2.1.105.1.1.1.6.3.39|2|2
1.3.6.1.2.1.105.1.1.1.6.3.40|2|2
1.3.6.1.2.1.105.1.1.1.6.3.41|2|2
1.3.6.1.2.1.105.1.1.1.6.3.42|2|2
1.3.6.1.2.1.105.1.1.1.6.3.43|2|2
1.3.6.1.2.1.105.1.1.1.6.3.44|2|2
1.3.6.1.2.1.105.1.1.1.6.3.45|2|2
1.3.6.1.2.1.105.1.1.1.6.3.46|2|3
1.3.6.1.2.1.105.1.1.1.6.3.47|2|2
1.3.6.1.2.1.105.1.1.1.6.3.48|2|2
1.3.6.1.2.1.105.1.1.1.6.3.49|2|2
1.3.6.1.2.1.105.1.1.1.6.3.50|2|2
1.3.6.1.2.1.105.1.1.1.6.3.51|2|2
1.3.6.1.2.1.105.1.1.1.6.3.52|2|2
1.3.6.1.2.1.105.1.1.1.7.3.3|2|3
1.3.6.1.2.1.105.1.1.1.7.3.4|2|3
1.3.6.1.2.1.105.1.1.1.7.3.5|2|3
1.3.6.1.2.1.105.1.1.1.7.3.6|2|3
1.3.6.1.2.1.105.1.1.1.7.3.7|2|3
1.3.6.1.2.1.105.1.1.1.7.3.8|2|3
1.3.6.1.2.1.105.1.1.1.7.3.9|2|3
1.3.6.1.2.1.105.1.1.1.7.3.10|2|3
1.3.6.1.2.1.105.1.1.1.7.3.11|2|3
1.3.6.1.2.1.105.1.1.1.7.3.12|2|3
1.3.6.1.2.1.105.1.1.1.7.3.13|2|3
1.3.6.1.2.1.105.1.1.1.7.3.14|2|3
1.3.6.1.2.1.105.1.1.1.7.3.15|2|3
1.3.6.1.2.1.105.1.1.1.7.3.16|2|3
1.3.6.1.2.1.105.1.1.1.7.3.17|2|3
1.3.6.1.2.1.105.1.1.1.7.3.18|2|3
1.3.6.1.2.1.105.1.1.1.7.3.19|2|3
1.3.6.1.2.1.105.1.1.1.7.3.20|2|3
1.3.6.1.2.1.105.1.1.1.7.3.21|2|3
1.3.6.1.2.1.105.1.1.1.7.3.22|2|3
1.3.6.1.2.1.105.1.1.1.7.3.23|2|3
1.3.6.1.2.1.105.1.1.1.7.3.24|2|3
1.3.6.1.2.1.105.1.1.1.7.3.25|2|3
1.3.6.1.2.1.105.1.1.1.7.3.26|2|3
1.3.6.1.2.1.105.1.1.1.7.3.29|2|3
1.3.6.1.2.1.105.1.1.1.7.3.30|2|3
1.3.6.1.2.1.105.1.1.1.7.3.31|2|3
1.3.6.1.2.1.105.1.1.1.7.3.32|2|3
1.3.6.1.2.1.105.1.1.1.7.3.33|2|3
1.3.6.1.2.1.105.1.1.1.7.3.34|2|3
1.3.6.1.2.1.105.1.1.1.7.3.35|2|3
1.3.6.1.2.1.105.1.1.1.7.3.36|2|3
1.3.6.1.2.1.105.1.1.1.7.3.37|2|3
1.3.6.1.2.1.105.1.1.1.7.3.38|2|3
1.3.6.1.2.1.105.1.1.1.7.3.39|2|3
1.3.6.1.2.1.105.1.1.1.7.3.40|2|3
1.3.6.1.2.1.105.1.1.1.7.3.41|2|3
1.3.6.1.2.1.105.1.1.1.7.3.42|2|3
1.3.6.1.2.1.105.1.1.1.7.3.43|2|3
1.3.6.1.2.1.105.1.1.1.7.3.44|2|3
1.3.6.1.2.1.105.1.1.1.7.3.45|2|3
1.3.6.1.2.1.105.1.1.1.7.3.46|2|3
1.3.6.1.2.1.105.1.1.1.7.3.47|2|3
1.3.6.1.2.1.105.1.1.1.7.3.48|2|3
1.3.6.1.2.1.105.1.1.1.7.3.49|2|3
1.3.6.1.2.1.105.1.1.1.7.3.50|2|3
1.3.6.1.2.1.105.1.1.1.7.3.51|2|3
1.3.6.1.2.1.105.1.1.1.7.3.52|2|3
1.3.6.1.2.1.105.1.1.1.8.3.3|65|0
1.3.6.1.2.1.105.1.1.1.8.3.4|65|0
1.3.6.1.2.1.105.1.1.1.8.3.5|65|0
1.3.6.1.2.1.105.1.1.1.8.3.6|65|0
1.3.6.1.2.1.105.1.1.1.8.3.7|65|0
1.3.6.1.2.1.105.1.1.1.8.3.8|65|0
1.3.6.1.2.1.105.1.1.1.8.3.9|65|0
1.3.6.1.2.1.105.1.1.1.8.3.10|65|0
1.3.6.1.2.1.105.1.1.1.8.3.11|65|0
1.3.6.1.2.1.105.1.1.1.8.3.12|65|0
1.3.6.1.2.1.105.1.1.1.8.3.13|65|0
1.3.6.1.2.1.105.1.1.1.8.3.14|65|0
1.3.6.1.2.1.105.1.1.1.8.3.15|65|0
1.3.6.1.2.1.105.1.1.1.8.3.16|65|0
1.3.6.1.2.1.105.1.1.1.8.3.17|65|0
1.3.6.1.2.1.105.1.1.1.8.3.18|65|0
1.3.6.1.2.1.105.1.1.1.8.3.19|65|0
1.3.6.1.2.1.105.1.1.1.8.3.20|65|0
1.3.6.1.2.1.105.1.1.1.8.3.21|65|0
1.3.6.1.2.1.105.1.1.1.8.3.22|65|0
1.3.6.1.2.1.105.1.1.1.8.3.23|65|0
1.3.6.1.2.1.105.1.1.1.8.3.24|65|0
1.3.6.1.2.1.105.1.1.1.8.3.25|65|0
1.3.6.1.2.1.105.1.1.1.8.3.26|65|0
1.3.6.1.2.1.105.1.1.1.8.3.29|65|0
1.3.6.1.2.1.105.1.1.1.8.3.30|65|0
1.3.6.1.2.1.105.1.1.1.8.3.31|65|0
1.3.6.1.2.1.105.1.1.1.8.3.32|65|0
1.3.6.1.2.1.105.1.1.1.8.3.33|65|0
1.3.6.1.2.1.105.1.1.1.8.3.34|65|0
1.3.6.1.2.1.105.1.1.1.8.3.35|65|0
1.3.6.1.2.1.105.1.1.1.8.3.36|65|0
1.3.6.1.2.1.105.1.1.1.8.3.37|65|0
1.3.6.1.2.1.105.1.1.1.8.3.38|65|0
1.3.6.1.2.1.105.1.1.1.8.3.39|65|0
1.3.6.1.2.1.105.1.1.1.8.3.40|65|0
1.3.6.1.2.1.105.1.1.1.8.3.41|65|0
1.3.6.1.2.1.105.1.1.1.8.3.42|65|0
1.3.6.1.2.1.105.1.1.1.8.3.43|65|0
1.3.6.1.2.1.105.1.1.1.8.3.44|65|0
1.3.6.1.2.1.105.1.1.1.8.3.45|65|0
1.3.6.1.2.1.105.1.1.1.8.3.46|65|0
1.3.6.1.2.1.105.1.1.1.8.3.47|65|0
1.3.6.1.2.1.105.1.1.1.8.3.48|65|0
1.3.6.1.2.1.105.1.1.1.8.3.49|65|0
1.3.6.1.2.1.105.1.1.1.8.3.50|65|0
1.3.6.1.2.1.105.1.1.1.8.3.51|65|0
1.3.6.1.2.1.105.1.1.1.8.3.52|65|0
1.3.6.1.2.1.105.1.1.1.9.3.3|4|
1.3.6.1.2.1.105.1.1.1.9.3.4|4|
1.3.6.1.2.1.105.1.1.1.9.3.5|4x|49656565205044
1.3.6.1.2.1.105.1.1.1.9.3.6|4|
1.3.6.1.2.1.105.1.1.1.9.3.7|4|
1.3.6.1.2.1.105.1.1.1.9.3.8|4|
1.3.6.1.2.1.105.1.1.1.9.3.9|4|
1.3.6.1.2.1.105.1.1.1.9.3.10|4|
1.3.6.1.2.1.105.1.1.1.9.3.11|4|
1.3.6.1.2.1.105.1.1.1.9.3.12|4|
1.3.6.1.2.1.105.1.1.1.9.3.13|4|
1.3.6.1.2.1.105.1.1.1.9.3.14|4|
1.3.6.1.2.1.105.1.1.1.9.3.15|4|
1.3.6.1.2.1.105.1.1.1.9.3.16|4|
1.3.6.1.2.1.105.1.1.1.9.3.17|4|
1.3.6.1.2.1.105.1.1.1.9.3.18|4|
1.3.6.1.2.1.105.1.1.1.9.3.19|4|
1.3.6.1.2.1.105.1.1.1.9.3.20|4|
1.3.6.1.2.1.105.1.1.1.9.3.21|4|
1.3.6.1.2.1.105.1.1.1.9.3.22|4|
1.3.6.1.2.1.105.1.1.1.9.3.23|4|
1.3.6.1.2.1.105.1.1.1.9.3.24|4|
1.3.6.1.2.1.105.1.1.1.9.3.25|4|
1.3.6.1.2.1.105.1.1.1.9.3.26|4|
1.3.6.1.2.1.105.1.1.1.9.3.29|4|
1.3.6.1.2.1.105.1.1.1.9.3.30|4|
1.3.6.1.2.1.105.1.1.1.9.3.31|4|
1.3.6.1.2.1.105.1.1.1.9.3.32|4|
1.3.6.1.2.1.105.1.1.1.9.3.33|4|
1.3.6.1.2.1.105.1.1.1.9.3.34|4|
1.3.6.1.2.1.105.1.1.1.9.3.35|4|
1.3.6.1.2.1.105.1.1.1.9.3.36|4|
1.3.6.1.2.1.105.1.1.1.9.3.37|4|
1.3.6.1.2.1.105.1.1.1.9.3.38|4|
1.3.6.1.2.1.105.1.1.1.9.3.39|4|
1.3.6.1.2.1.105.1.1.1.9.3.40|4|
1.3.6.1.2.1.105.1.1.1.9.3.41|4|
1.3.6.1.2.1.105.1.1.1.9.3.42|4|
1.3.6.1.2.1.105.1.1.1.9.3.43|4|
1.3.6.1.2.1.105.1.1.1.9.3.44|4|
1.3.6.1.2.1.105.1.1.1.9.3.45|4|
1.3.6.1.2.1.105.1.1.1.9.3.46|4x|49656565205044
1.3.6.1.2.1.105.1.1.1.9.3.47|4|
1.3.6.1.2.1.105.1.1.1.9.3.48|4|
1.3.6.1.2.1.105.1.1.1.9.3.49|4|
1.3.6.1.2.1.105.1.1.1.9.3.50|4|
1.3.6.1.2.1.105.1.1.1.9.3.51|4|
1.3.6.1.2.1.105.1.1.1.9.3.52|4|
1.3.6.1.2.1.105.1.1.1.10.3.3|2|1
1.3.6.1.2.1.105.1.1.1.10.3.4|2|1
1.3.6.1.2.1.105.1.1.1.10.3.5|2|5
1.3.6.1.2.1.105.1.1.1.10.3.6|2|1
1.3.6.1.2.1.105.1.1.1.10.3.7|2|1
1.3.6.1.2.1.105.1.1.1.10.3.8|2|1
1.3.6.1.2.1.105.1.1.1.10.3.9|2|1
1.3.6.1.2.1.105.1.1.1.10.3.10|2|1
1.3.6.1.2.1.105.1.1.1.10.3.11|2|1
1.3.6.1.2.1.105.1.1.1.10.3.12|2|1
1.3.6.1.2.1.105.1.1.1.10.3.13|2|1
1.3.6.1.2.1.105.1.1.1.10.3.14|2|1
1.3.6.1.2.1.105.1.1.1.10.3.15|2|1
1.3.6.1.2.1.105.1.1.1.10.3.16|2|1
1.3.6.1.2.1.105.1.1.1.10.3.17|2|1
1.3.6.1.2.1.105.1.1.1.10.3.18|2|1
1.3.6.1.2.1.105.1.1.1.10.3.19|2|1
1.3.6.1.2.1.105.1.1.1.10.3.20|2|1
1.3.6.1.2.1.105.1.1.1.10.3.21|2|1
1.3.6.1.2.1.105.1.1.1.10.3.22|2|1
1.3.6.1.2.1.105.1.1.1.10.3.23|2|1
1.3.6.1.2.1.105.1.1.1.10.3.24|2|1
1.3.6.1.2.1.105.1.1.1.10.3.25|2|1
1.3.6.1.2.1.105.1.1.1.10.3.26|2|1
1.3.6.1.2.1.105.1.1.1.10.3.29|2|1
1.3.6.1.2.1.105.1.1.1.10.3.30|2|1
1.3.6.1.2.1.105.1.1.1.10.3.31|2|1
1.3.6.1.2.1.105.1.1.1.10.3.32|2|1
1.3.6.1.2.1.105.1.1.1.10.3.33|2|1
1.3.6.1.2.1.105.1.1.1.10.3.34|2|1
1.3.6.1.2.1.105.1.1.1.10.3.35|2|1
1.3.6.1.2.1.105.1.1.1.10.3.36|2|1
1.3.6.1.2.1.105.1.1.1.10.3.37|2|1
1.3.6.1.2.1.105.1.1.1.10.3.38|2|1
1.3.6.1.2.1.105.1.1.1.10.3.39|2|1
1.3.6.1.2.1.105.1.1.1.10.3.40|2|1
1.3.6.1.2.1.105.1.1.1.10.3.41|2|1
1.3.6.1.2.1.105.1.1.1.10.3.42|2|1
1.3.6.1.2.1.105.1.1.1.10.3.43|2|1
1.3.6.1.2.1.105.1.1.1.10.3.44|2|1
1.3.6.1.2.1.105.1.1.1.10.3.45|2|1
1.3.6.1.2.1.105.1.1.1.10.3.46|2|4
1.3.6.1.2.1.105.1.1.1.10.3.47|2|1
1.3.6.1.2.1.105.1.1.1.10.3.48|2|1
1.3.6.1.2.1.105.1.1.1.10.3.49|2|1
1.3.6.1.2.1.105.1.1.1.10.3.50|2|1
1.3.6.1.2.1.105.1.1.1.10.3.51|2|1
1.3.6.1.2.1.105.1.1.1.10.3.52|2|1
1.3.6.1.2.1.105.1.1.1.11.3.3|65|0
1.3.6.1.2.1.105.1.1.1.11.3.4|65|0
1.3.6.1.2.1.105.1.1.1.11.3.5|65|0
1.3.6.1.2.1.105.1.1.1.11.3.6|65|0
1.3.6.1.2.1.105.1.1.1.11.3.7|65|0
1.3.6.1.2.1.105.1.1.1.11.3.8|65|0
1.3.6.1.2.1.105.1.1.1.11.3.9|65|0
1.3.6.1.2.1.105.1.1.1.11.3.10|65|0
1.3.6.1.2.1.105.1.1.1.11.3.11|65|0
1.3.6.1.2.1.105.1.1.1.11.3.12|65|0
1.3.6.1.2.1.105.1.1.1.11.3.13|65|0
1.3.6.1.2.1.105.1.1.1.11.3.14|65|0
1.3.6.1.2.1.105.1.1.1.11.3.15|65|0
1.3.6.1.2.1.105.1.1.1.11.3.16|65|0
1.3.6.1.2.1.105.1.1.1.11.3.17|65|0
1.3.6.1.2.1.105.1.1.1.11.3.18|65|0
1.3.6.1.2.1.105.1.1.1.11.3.19|65|0
1.3.6.1.2.1.105.1.1.1.11.3.20|65|0
1.3.6.1.2.1.105.1.1.1.11.3.21|65|0
1.3.6.1.2.1.105.1.1.1.11.3.22|65|0
1.3.6.1.2.1.105.1.1.1.11.3.23|65|0
1.3.6.1.2.1.105.1.1.1.11.3.24|65|0
1.3.6.1.2.1.105.1.1.1.11.3.25|65|0
1.3.6.1.2.1.105.1.1.1.11.3.26|65|0
1.3.6.1.2.1.105.1.1.1.11.3.29|65|0
1.3.6.1.2.1.105.1.1.1.11.3.30|65|0
1.3.6.1.2.1.105.1.1.1.11.3.31|65|0
1.3.6.1.2.1.105.1.1.1.11.3.32|65|0
1.3.6.1.2.1.105.1.1.1.11.3.33|65|0
1.3.6.1.2.1.105.1.1.1.11.3.34|65|0
1.3.6.1.2.1.105.1.1.1.11.3.35|65|0
1.3.6.1.2.1.105.1.1.1.11.3.36|65|0
1.3.6.1.2.1.105.1.1.1.11.3.37|65|0
1.3.6.1.2.1.105.1.1.1.11.3.38|65|0
1.3.6.1.2.1.105.1.1.1.11.3.39|65|0
1.3.6.1.2.1.105.1.1.1.11.3.40|65|0
1.3.6.1.2.1.105.1.1.1.11.3.41|65|0
1.3.6.1.2.1.105.1.1.1.11.3.42|65|0
1.3.6.1.2.1.105.1.1.1.11.3.43|65|0
1.3.6.1.2.1.105.1.1.1.11.3.44|65|0
1.3.6.1.2.1.105.1.1.1.11.3.45|65|0
1.3.6.1.2.1.105.1.1.1.11.3.46|65|0
1.3.6.1.2.1.105.1.1.1.11.3.47|65|0
1.3.6.1.2.1.105.1.1.1.11.3.48|65|0
1.3.6.1.2.1.105.1.1.1.11.3.49|65|0
1.3.6.1.2.1.105.1.1.1.11.3.50|65|0
1.3.6.1.2.1.105.1.1.1.11.3.51|65|0
1.3.6.1.2.1.105.1.1.1.11.3.52|65|0
1.3.6.1.2.1.105.1.1.1.12.3.3|65|0
1.3.6.1.2.1.105.1.1.1.12.3.4|65|0
1.3.6.1.2.1.105.1.1.1.12.3.5|65|0
1.3.6.1.2.1.105.1.1.1.12.3.6|65|0
1.3.6.1.2.1.105.1.1.1.12.3.7|65|0
1.3.6.1.2.1.105.1.1.1.12.3.8|65|0
1.3.6.1.2.1.105.1.1.1.12.3.9|65|0
1.3.6.1.2.1.105.1.1.1.12.3.10|65|0
1.3.6.1.2.1.105.1.1.1.12.3.11|65|0
1.3.6.1.2.1.105.1.1.1.12.3.12|65|0
1.3.6.1.2.1.105.1.1.1.12.3.13|65|0
1.3.6.1.2.1.105.1.1.1.12.3.14|65|0
1.3.6.1.2.1.105.1.1.1.12.3.15|65|0
1.3.6.1.2.1.105.1.1.1.12.3.16|65|0
1.3.6.1.2.1.105.1.1.1.12.3.17|65|0
1.3.6.1.2.1.105.1.1.1.12.3.18|65|0
1.3.6.1.2.1.105.1.1.1.12.3.19|65|0
1.3.6.1.2.1.105.1.1.1.12.3.20|65|0
1.3.6.1.2.1.105.1.1.1.12.3.21|65|0
1.3.6.1.2.1.105.1.1.1.12.3.22|65|0
1.3.6.1.2.1.105.1.1.1.12.3.23|65|0
1.3.6.1.2.1.105.1.1.1.12.3.24|65|0
1.3.6.1.2.1.105.1.1.1.12.3.25|65|0
1.3.6.1.2.1.105.1.1.1.12.3.26|65|0
1.3.6.1.2.1.105.1.1.1.12.3.29|65|0
1.3.6.1.2.1.105.1.1.1.12.3.30|65|0
1.3.6.1.2.1.105.1.1.1.12.3.31|65|0
1.3.6.1.2.1.105.1.1.1.12.3.32|65|0
1.3.6.1.2.1.105.1.1.1.12.3.33|65|0
1.3.6.1.2.1.105.1.1.1.12.3.34|65|0
1.3.6.1.2.1.105.1.1.1.12.3.35|65|0
1.3.6.1.2.1.105.1.1.1.12.3.36|65|0
1.3.6.1.2.1.105.1.1.1.12.3.37|65|0
1.3.6.1.2.1.105.1.1.1.12.3.38|65|0
1.3.6.1.2.1.105.1.1.1.12.3.39|65|0
1.3.6.1.2.1.105.1.1.1.12.3.40|65|0
1.3.6.1.2.1.105.1.1.1.12.3.41|65|0
1.3.6.1.2.1.105.1.1.1.12.3.42|65|0
1.3.6.1.2.1.105.1.1.1.12.3.43|65|0
1.3.6.1.2.1.105.1.1.1.12.3.44|65|0
1.3.6.1.2.1.105.1.1.1.12.3.45|65|0
1.3.6.1.2.1.105.1.1.1.12.3.46|65|0
1.3.6.1.2.1.105.1.1.1.12.3.47|65|0
1.3.6.1.2.1.105.1.1.1.12.3.48|65|0
1.3.6.1.2.1.105.1.1.1.12.3.49|65|0
1.3.6.1.2.1.105.1.1.1.12.3.50|65|0
1.3.6.1.2.1.105.1.1.1.12.3.51|65|0
1.3.6.1.2.1.105.1.1.1.12.3.52|65|0
1.3.6.1.2.1.105.1.1.1.13.3.3|65|0
1.3.6.1.2.1.105.1.1.1.13.3.4|65|0
1.3.6.1.2.1.105.1.1.1.13.3.5|65|0
1.3.6.1.2.1.105.1.1.1.13.3.6|65|0
1.3.6.1.2.1.105.1.1.1.13.3.7|65|0
1.3.6.1.2.1.105.1.1.1.13.3.8|65|0
1.3.6.1.2.1.105.1.1.1.13.3.9|65|0
1.3.6.1.2.1.105.1.1.1.13.3.10|65|0
1.3.6.1.2.1.105.1.1.1.13.3.11|65|0
1.3.6.1.2.1.105.1.1.1.13.3.12|65|0
1.3.6.1.2.1.105.1.1.1.13.3.13|65|0
1.3.6.1.2.1.105.1.1.1.13.3.14|65|0
1.3.6.1.2.1.105.1.1.1.13.3.15|65|0
1.3.6.1.2.1.105.1.1.1.13.3.16|65|0
1.3.6.1.2.1.105.1.1.1.13.3.17|65|0
1.3.6.1.2.1.105.1.1.1.13.3.18|65|0
1.3.6.1.2.1.105.1.1.1.13.3.19|65|0
1.3.6.1.2.1.105.1.1.1.13.3.20|65|0
1.3.6.1.2.1.105.1.1.1.13.3.21|65|0
1.3.6.1.2.1.105.1.1.1.13.3.22|65|0
1.3.6.1.2.1.105.1.1.1.13.3.23|65|0
1.3.6.1.2.1.105.1.1.1.13.3.24|65|0
1.3.6.1.2.1.105.1.1.1.13.3.25|65|0
1.3.6.1.2.1.105.1.1.1.13.3.26|65|0
1.3.6.1.2.1.105.1.1.1.13.3.29|65|0
1.3.6.1.2.1.105.1.1.1.13.3.30|65|0
1.3.6.1.2.1.105.1.1.1.13.3.31|65|0
1.3.6.1.2.1.105.1.1.1.13.3.32|65|0
1.3.6.1.2.1.105.1.1.1.13.3.33|65|0
1.3.6.1.2.1.105.1.1.1.13.3.34|65|0
1.3.6.1.2.1.105.1.1.1.13.3.35|65|0
1.3.6.1.2.1.105.1.1.1.13.3.36|65|0
1.3.6.1.2.1.105.1.1.1.13.3.37|65|0
1.3.6.1.2.1.105.1.1.1.13.3.38|65|0
1.3.6.1.2.1.105.1.1.1.13.3.39|65|0
1.3.6.1.2.1.105.1.1.1.13.3.40|65|0
1.3.6.1.2.1.105.1.1.1.13.3.41|65|0
1.3.6.1.2.1.105.1.1.1.13.3.42|65|0
1.3.6.1.2.1.105.1.1.1.13.3.43|65|0
1.3.6.1.2.1.105.1.1.1.13.3.44|65|0
1.3.6.1.2.1.105.1.1.1.13.3.45|65|0
1.3.6.1.2.1.105.1.1.1.13.3.46|65|0
1.3.6.1.2.1.105.1.1.1.13.3.47|65|0
1.3.6.1.2.1.105.1.1.1.13.3.48|65|0
1.3.6.1.2.1.105.1.1.1.13.3.49|65|0
1.3.6.1.2.1.105.1.1.1.13.3.50|65|0
1.3.6.1.2.1.105.1.1.1.13.3.51|65|0
1.3.6.1.2.1.105.1.1.1.13.3.52|65|0
1.3.6.1.2.1.105.1.1.1.14.3.3|65|0
1.3.6.1.2.1.105.1.1.1.14.3.4|65|0
1.3.6.1.2.1.105.1.1.1.14.3.5|65|2
1.3.6.1.2.1.105.1.1.1.14.3.6|65|0
1.3.6.1.2.1.105.1.1.1.14.3.7|65|0
1.3.6.1.2.1.105.1.1.1.14.3.8|65|1
1.3.6.1.2.1.105.1.1.1.14.3.9|65|1
1.3.6.1.2.1.105.1.1.1.14.3.10|65|0
1.3.6.1.2.1.105.1.1.1.14.3.11|65|1
1.3.6.1.2.1.105.1.1.1.14.3.12|65|32
1.3.6.1.2.1.105.1.1.1.14.3.13|65|15
1.3.6.1.2.1.105.1.1.1.14.3.14|65|0
1.3.6.1.2.1.105.1.1.1.14.3.15|65|0
1.3.6.1.2.1.105.1.1.1.14.3.16|65|0
1.3.6.1.2.1.105.1.1.1.14.3.17|65|0
1.3.6.1.2.1.105.1.1.1.14.3.18|65|0
1.3.6.1.2.1.105.1.1.1.14.3.19|65|0
1.3.6.1.2.1.105.1.1.1.14.3.20|65|0
1.3.6.1.2.1.105.1.1.1.14.3.21|65|0
1.3.6.1.2.1.105.1.1.1.14.3.22|65|0
1.3.6.1.2.1.105.1.1.1.14.3.23|65|0
1.3.6.1.2.1.105.1.1.1.14.3.24|65|0
1.3.6.1.2.1.105.1.1.1.14.3.25|65|0
1.3.6.1.2.1.105.1.1.1.14.3.26|65|0
1.3.6.1.2.1.105.1.1.1.14.3.29|65|0
1.3.6.1.2.1.105.1.1.1.14.3.30|65|0
1.3.6.1.2.1.105.1.1.1.14.3.31|65|0
1.3.6.1.2.1.105.1.1.1.14.3.32|65|0
1.3.6.1.2.1.105.1.1.1.14.3.33|65|0
1.3.6.1.2.1.105.1.1.1.14.3.34|65|0
1.3.6.1.2.1.105.1.1.1.14.3.35|65|0
1.3.6.1.2.1.105.1.1.1.14.3.36|65|0
1.3.6.1.2.1.105.1.1.1.14.3.37|65|0
1.3.6.1.2.1.105.1.1.1.14.3.38|65|0
1.3.6.1.2.1.105.1.1.1.14.3.39|65|0
1.3.6.1.2.1.105.1.1.1.14.3.40|65|0
1.3.6.1.2.1.105.1.1.1.14.3.41|65|0
1.3.6.1.2.1.105.1.1.1.14.3.42|65|0
1.3.6.1.2.1.105.1.1.1.14.3.43|65|0
1.3.6.1.2.1.105.1.1.1.14.3.44|65|0
1.3.6.1.2.1.105.1.1.1.14.3.45|65|0
1.3.6.1.2.1.105.1.1.1.14.3.46|65|0
1.3.6.1.2.1.105.1.1.1.14.3.47|65|0
1.3.6.1.2.1.105.1.1.1.14.3.48|65|0
1.3.6.1.2.1.105.1.1.1.14.3.49|65|40
1.3.6.1.2.1.105.1.1.1.14.3.50|65|0
1.3.6.1.2.1.105.1.1.1.14.3.51|65|0
1.3.6.1.2.1.105.1.1.1.14.3.52|65|0
1.3.6.1.2.1.105.1.3.1.1.2.3|66|370
1.3.6.1.2.1.105.1.3.1.1.3.3|2|1
1.3.6.1.2.1.105.1.3.1.1.4.3|66|30
1.3.6.1.2.1.105.1.3.1.1.5.3|2|0
1.3.6.1.2.1.105.1.4.1.1.2.3|2|2
1.3.6.1.3.61.1.1.1.0|2|60
1.3.6.1.3.61.1.1.12.1.2.1|64x|00000000
1.3.6.1.3.61.1.1.12.1.3.1|67|0
1.3.6.1.3.61.1.1.12.1.4.1|2|0
1.3.6.1.3.61.1.1.12.1.5.1|2|2
1.3.6.1.3.92.1.1.1.0|2|2
1.3.6.1.3.92.1.1.2.0|67|36000
1.3.6.1.3.92.1.1.3.0|66|0
1.3.6.1.3.92.1.1.9.0|2|30
1.3.6.1.4.1.9.2.1.1.0|4x|0d0a426f6f7473747261702070726f6772616d20697320433337353020626f6f74206c6f616465720d0a
1.3.6.1.4.1.9.2.1.2.0|4x|706f7765722d6f6e
1.3.6.1.4.1.9.2.1.3.0|4|Profiler3750
1.3.6.1.4.1.9.2.1.4.0|4|
1.3.6.1.4.1.9.2.1.5.0|64x|0acc58e3
1.3.6.1.4.1.9.2.1.6.0|64x|00000000
1.3.6.1.4.1.9.2.1.8.0|2|33190824
1.3.6.1.4.1.9.2.1.9.0|2|1158
1.3.6.1.4.1.9.2.1.10.0|2|500
1.3.6.1.4.1.9.2.1.11.0|2|846316970
1.3.6.1.4.1.9.2.1.12.0|2|0
1.3.6.1.4.1.9.2.1.13.0|2|1024
1.3.6.1.4.1.9.2.1.14.0|2|104
1.3.6.1.4.1.9.2.1.15.0|2|50
1.3.6.1.4.1.9.2.1.16.0|2|49
1.3.6.1.4.1.9.2.1.17.0|2|150
1.3.6.1.4.1.9.2.1.18.0|2|260631741
1.3.6.1.4.1.9.2.1.19.0|2|46
1.3.6.1.4.1.9.2.1.20.0|2|138
1.3.6.1.4.1.9.2.1.21.0|2|138
1.3.6.1.4.1.9.2.1.22.0|2|600
1.3.6.1.4.1.9.2.1.23.0|2|40
1.3.6.1.4.1.9.2.1.24.0|2|40
1.3.6.1.4.1.9.2.1.25.0|2|150
1.3.6.1.4.1.9.2.1.26.0|2|27719041
1.3.6.1.4.1.9.2.1.27.0|2|1914
1.3.6.1.4.1.9.2.1.28.0|2|5726
1.3.6.1.4.1.9.2.1.29.0|2|5741
1.3.6.1.4.1.9.2.1.30.0|2|1536
1.3.6.1.4.1.9.2.1.31.0|2|61
1.3.6.1.4.1.9.2.1.32.0|2|60
1.3.6.1.4.1.9.2.1.33.0|2|150
1.3.6.1.4.1.9.2.1.34.0|2|229489854
1.3.6.1.4.1.9.2.1.35.0|2|1922
1.3.6.1.4.1.9.2.1.36.0|2|5785
1.3.6.1.4.1.9.2.1.37.0|2|5796
1.3.6.1.4.1.9.2.1.38.0|2|5024
1.3.6.1.4.1.9.2.1.39.0|2|0
1.3.6.1.4.1.9.2.1.40.0|2|0
1.3.6.1.4.1.9.2.1.41.0|2|10
1.3.6.1.4.1.9.2.1.42.0|2|0
1.3.6.1.4.1.9.2.1.43.0|2|0
1.3.6.1.4.1.9.2.1.44.0|2|0
1.3.6.1.4.1.9.2.1.45.0|2|0
1.3.6.1.4.1.9.2.1.46.0|2|0
1.3.6.1.4.1.9.2.1.47.0|2|0
1.3.6.1.4.1.9.2.1.48.0|64x|00000000
1.3.6.1.4.1.9.2.1.49.0|4|
1.3.6.1.4.1.9.2.1.51.0|64x|00000000
1.3.6.1.4.1.9.2.1.52.0|4|
1.3.6.1.4.1.9.2.1.56.0|2|22
1.3.6.1.4.1.9.2.1.57.0|2|14
1.3.6.1.4.1.9.2.1.58.0|2|14
1.3.6.1.4.1.9.2.1.59.0|2|3880
1.3.6.1.4.1.9.2.1.60.0|2|0
1.3.6.1.4.1.9.2.1.61.0|4x|636973636f2053797374656d732c20496e632e0a3137302057657374205461736d616e2044722e0a53616e204a6f73652c204341202039353133342d313730360a552e532e412e0a5068202b312d3430382d3532362d343030300a437573746f6d6572207365727669636520312d3830302d3535332d36333837206f72202b312d3430382d3532362d373230380a3234485220456d657267656e637920312d3830302d3535332d32343437206f72202b312d3430382d3532362d373230390a456d61696c20416464726573732074616340636973636f2e636f6d0a576f726c6420576964652057656220687474703a2f2f7777772e636973636f2e636f6d
1.3.6.1.4.1.9.2.1.62.0|2|18024
1.3.6.1.4.1.9.2.1.63.0|2|0
1.3.6.1.4.1.9.2.1.64.0|2|0
1.3.6.1.4.1.9.2.1.65.0|2|4
1.3.6.1.4.1.9.2.1.66.0|2|0
1.3.6.1.4.1.9.2.1.67.0|2|0
1.3.6.1.4.1.9.2.1.68.0|2|0
1.3.6.1.4.1.9.2.1.69.0|2|0
1.3.6.1.4.1.9.2.1.70.0|2|0
1.3.6.1.4.1.9.2.1.71.0|2|0
1.3.6.1.4.1.9.2.1.72.0|64x|00000000
1.3.6.1.4.1.9.2.1.73.0|4x|666c6173683a2f63333735302d697073657276696365736b392d6d7a2e3132322d35352e534531302e62696e
1.3.6.1.4.1.9.2.1.74.0|2|3
1.3.6.1.4.1.9.2.2.1.1.1.1|4|EtherSVI
1.3.6.1.4.1.9.2.2.1.1.1.60|4|EtherSVI
1.3.6.1.4.1.9.2.2.1.1.1.70|4|EtherSVI
1.3.6.1.4.1.9.2.2.1.1.1.11001|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11002|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11003|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11004|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11005|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11006|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11007|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11008|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11009|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11010|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11011|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11012|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11013|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11014|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11015|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11016|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11017|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11018|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11019|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11020|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11021|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11022|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11023|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11024|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11025|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11026|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11027|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11028|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11029|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11030|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11031|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11032|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11033|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11034|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11035|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11036|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11037|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11038|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11039|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11040|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11041|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11042|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11043|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11044|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11045|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11046|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11047|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11048|4x|466173742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11101|4x|476967616269742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11102|4x|476967616269742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11103|4x|476967616269742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.11104|4x|476967616269742045746865726e6574
1.3.6.1.4.1.9.2.2.1.1.1.14501|4|Unknown
1.3.6.1.4.1.9.2.2.1.1.2.1|2|1
1.3.6.1.4.1.9.2.2.1.1.2.60|2|1
1.3.6.1.4.1.9.2.2.1.1.2.70|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11003|2|1
1.3.6.1.4.1.9.2.2.1.1.2.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11007|2|1
1.3.6.1.4.1.9.2.2.1.1.2.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11009|2|1
1.3.6.1.4.1.9.2.2.1.1.2.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11011|2|1
1.3.6.1.4.1.9.2.2.1.1.2.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11043|2|1
1.3.6.1.4.1.9.2.2.1.1.2.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11048|2|1
1.3.6.1.4.1.9.2.2.1.1.2.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.2.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.2.14501|2|1
1.3.6.1.4.1.9.2.2.1.1.3.1|2|350623749
1.3.6.1.4.1.9.2.2.1.1.3.60|2|8
1.3.6.1.4.1.9.2.2.1.1.3.70|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11001|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11002|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11003|2|23312
1.3.6.1.4.1.9.2.2.1.1.3.11004|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11005|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11006|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11007|2|-1527769150
1.3.6.1.4.1.9.2.2.1.1.3.11008|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11009|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11010|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11011|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11012|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11013|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11014|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11015|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11016|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11017|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11018|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11019|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11020|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11021|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11022|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11023|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11024|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11025|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11026|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11027|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11028|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11029|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11030|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11031|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11032|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11033|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11034|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11035|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11036|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11037|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11038|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11039|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11040|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11041|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11042|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11043|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11044|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11045|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11046|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11047|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11048|2|377
1.3.6.1.4.1.9.2.2.1.1.3.11101|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11102|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11103|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.11104|2|-1
1.3.6.1.4.1.9.2.2.1.1.3.14501|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.1|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.60|2|8
1.3.6.1.4.1.9.2.2.1.1.4.70|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11001|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11002|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11003|2|1267
1.3.6.1.4.1.9.2.2.1.1.4.11004|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11005|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11006|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11007|2|1267
1.3.6.1.4.1.9.2.2.1.1.4.11008|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11009|2|1267
1.3.6.1.4.1.9.2.2.1.1.4.11010|2|1551206787
1.3.6.1.4.1.9.2.2.1.1.4.11011|2|1267
1.3.6.1.4.1.9.2.2.1.1.4.11012|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11013|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11014|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11015|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11016|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11017|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11018|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11019|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11020|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11021|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11022|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11023|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11024|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11025|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11026|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11027|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11028|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11029|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11030|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11031|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11032|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11033|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11034|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11035|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11036|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11037|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11038|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11039|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11040|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11041|2|-1871868390
1.3.6.1.4.1.9.2.2.1.1.4.11042|2|3951
1.3.6.1.4.1.9.2.2.1.1.4.11043|2|1947
1.3.6.1.4.1.9.2.2.1.1.4.11044|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11045|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11046|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11047|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11048|2|1535
1.3.6.1.4.1.9.2.2.1.1.4.11101|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11102|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11103|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.11104|2|-1
1.3.6.1.4.1.9.2.2.1.1.4.14501|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.1|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.60|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.70|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11001|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11002|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11003|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11004|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11005|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11006|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11007|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11008|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11009|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11010|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11011|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11012|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11013|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11014|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11015|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11016|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11017|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11018|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11019|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11020|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11021|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11022|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11023|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11024|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11025|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11026|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11027|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11028|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11029|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11030|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11031|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11032|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11033|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11034|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11035|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11036|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11037|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11038|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11039|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11040|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11041|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11042|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11043|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11044|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11045|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11046|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11047|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11048|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11101|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11102|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11103|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.11104|2|-1
1.3.6.1.4.1.9.2.2.1.1.5.14501|2|-1
1.3.6.1.4.1.9.2.2.1.1.6.1|2|0
1.3.6.1.4.1.9.2.2.1.1.6.60|2|10000
1.3.6.1.4.1.9.2.2.1.1.6.70|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11048|2|58000
1.3.6.1.4.1.9.2.2.1.1.6.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.6.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.6.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.7.1|2|0
1.3.6.1.4.1.9.2.2.1.1.7.60|2|19
1.3.6.1.4.1.9.2.2.1.1.7.70|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11009|2|1
1.3.6.1.4.1.9.2.2.1.1.7.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11048|2|85
1.3.6.1.4.1.9.2.2.1.1.7.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.7.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.7.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.8.1|2|0
1.3.6.1.4.1.9.2.2.1.1.8.60|2|24000
1.3.6.1.4.1.9.2.2.1.1.8.70|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11003|2|15000
1.3.6.1.4.1.9.2.2.1.1.8.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11007|2|14000
1.3.6.1.4.1.9.2.2.1.1.8.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11009|2|13000
1.3.6.1.4.1.9.2.2.1.1.8.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11011|2|14000
1.3.6.1.4.1.9.2.2.1.1.8.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11043|2|2000
1.3.6.1.4.1.9.2.2.1.1.8.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11048|2|60000
1.3.6.1.4.1.9.2.2.1.1.8.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.8.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.8.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.9.1|2|0
1.3.6.1.4.1.9.2.2.1.1.9.60|2|26
1.3.6.1.4.1.9.2.2.1.1.9.70|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11003|2|25
1.3.6.1.4.1.9.2.2.1.1.9.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11007|2|23
1.3.6.1.4.1.9.2.2.1.1.9.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11009|2|21
1.3.6.1.4.1.9.2.2.1.1.9.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11011|2|24
1.3.6.1.4.1.9.2.2.1.1.9.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11043|2|3
1.3.6.1.4.1.9.2.2.1.1.9.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11048|2|35
1.3.6.1.4.1.9.2.2.1.1.9.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.9.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.9.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.10.1|2|0
1.3.6.1.4.1.9.2.2.1.1.10.60|2|0
1.3.6.1.4.1.9.2.2.1.1.10.70|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.10.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.10.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.11.1|2|0
1.3.6.1.4.1.9.2.2.1.1.11.60|2|0
1.3.6.1.4.1.9.2.2.1.1.11.70|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11040|2|595
1.3.6.1.4.1.9.2.2.1.1.11.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.11.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.11.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.12.1|2|0
1.3.6.1.4.1.9.2.2.1.1.12.60|2|0
1.3.6.1.4.1.9.2.2.1.1.12.70|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11042|2|1
1.3.6.1.4.1.9.2.2.1.1.12.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.12.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.12.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.13.1|2|0
1.3.6.1.4.1.9.2.2.1.1.13.60|2|0
1.3.6.1.4.1.9.2.2.1.1.13.70|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.13.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.13.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.14.1|2|0
1.3.6.1.4.1.9.2.2.1.1.14.60|2|0
1.3.6.1.4.1.9.2.2.1.1.14.70|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.14.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.14.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.15.1|2|0
1.3.6.1.4.1.9.2.2.1.1.15.60|2|0
1.3.6.1.4.1.9.2.2.1.1.15.70|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.15.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.15.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.16.1|2|0
1.3.6.1.4.1.9.2.2.1.1.16.60|2|0
1.3.6.1.4.1.9.2.2.1.1.16.70|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.16.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.16.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.17.1|2|2
1.3.6.1.4.1.9.2.2.1.1.17.60|2|2
1.3.6.1.4.1.9.2.2.1.1.17.70|2|2
1.3.6.1.4.1.9.2.2.1.1.17.11001|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11002|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11003|2|3
1.3.6.1.4.1.9.2.2.1.1.17.11004|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11005|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11006|2|3
1.3.6.1.4.1.9.2.2.1.1.17.11007|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11008|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11009|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11010|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11011|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11012|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11013|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11014|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11015|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11016|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11017|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11018|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11019|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11020|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11021|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11022|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11023|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11024|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11025|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11026|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11027|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11028|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11029|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11030|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11031|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11032|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11033|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11034|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11035|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11036|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11037|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11038|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11039|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11040|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11041|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11042|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11043|2|25
1.3.6.1.4.1.9.2.2.1.1.17.11044|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11045|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.17.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.17.11048|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11101|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11102|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11103|2|1
1.3.6.1.4.1.9.2.2.1.1.17.11104|2|1
1.3.6.1.4.1.9.2.2.1.1.17.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.18.1|2|0
1.3.6.1.4.1.9.2.2.1.1.18.60|2|0
1.3.6.1.4.1.9.2.2.1.1.18.70|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.18.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.18.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.19.1|2|1
1.3.6.1.4.1.9.2.2.1.1.19.60|2|1
1.3.6.1.4.1.9.2.2.1.1.19.70|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11001|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11002|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11003|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11004|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11005|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11006|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11007|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11008|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11009|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11010|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11011|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11012|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11013|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11014|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11015|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11016|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11017|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11018|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11019|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11020|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11021|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11022|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11023|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11024|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11025|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11026|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11027|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11028|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11029|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11030|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11031|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11032|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11033|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11034|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11035|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11036|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11037|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11038|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11039|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11040|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11041|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11042|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11043|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11044|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11045|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11046|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11047|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11048|2|1
1.3.6.1.4.1.9.2.2.1.1.19.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.19.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.19.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.19.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.19.14501|2|1
1.3.6.1.4.1.9.2.2.1.1.20.1|4|up
1.3.6.1.4.1.9.2.2.1.1.20.60|4|up
1.3.6.1.4.1.9.2.2.1.1.20.70|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11001|4|
1.3.6.1.4.1.9.2.2.1.1.20.11002|4|
1.3.6.1.4.1.9.2.2.1.1.20.11003|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11004|4|
1.3.6.1.4.1.9.2.2.1.1.20.11005|4|
1.3.6.1.4.1.9.2.2.1.1.20.11006|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11007|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11008|4|
1.3.6.1.4.1.9.2.2.1.1.20.11009|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11010|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11011|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11012|4|
1.3.6.1.4.1.9.2.2.1.1.20.11013|4|
1.3.6.1.4.1.9.2.2.1.1.20.11014|4|
1.3.6.1.4.1.9.2.2.1.1.20.11015|4|
1.3.6.1.4.1.9.2.2.1.1.20.11016|4|
1.3.6.1.4.1.9.2.2.1.1.20.11017|4|
1.3.6.1.4.1.9.2.2.1.1.20.11018|4|
1.3.6.1.4.1.9.2.2.1.1.20.11019|4|
1.3.6.1.4.1.9.2.2.1.1.20.11020|4|
1.3.6.1.4.1.9.2.2.1.1.20.11021|4|
1.3.6.1.4.1.9.2.2.1.1.20.11022|4|
1.3.6.1.4.1.9.2.2.1.1.20.11023|4|
1.3.6.1.4.1.9.2.2.1.1.20.11024|4|
1.3.6.1.4.1.9.2.2.1.1.20.11025|4|
1.3.6.1.4.1.9.2.2.1.1.20.11026|4|
1.3.6.1.4.1.9.2.2.1.1.20.11027|4|
1.3.6.1.4.1.9.2.2.1.1.20.11028|4|
1.3.6.1.4.1.9.2.2.1.1.20.11029|4|
1.3.6.1.4.1.9.2.2.1.1.20.11030|4|
1.3.6.1.4.1.9.2.2.1.1.20.11031|4|
1.3.6.1.4.1.9.2.2.1.1.20.11032|4|
1.3.6.1.4.1.9.2.2.1.1.20.11033|4|
1.3.6.1.4.1.9.2.2.1.1.20.11034|4|
1.3.6.1.4.1.9.2.2.1.1.20.11035|4|
1.3.6.1.4.1.9.2.2.1.1.20.11036|4|
1.3.6.1.4.1.9.2.2.1.1.20.11037|4|
1.3.6.1.4.1.9.2.2.1.1.20.11038|4|
1.3.6.1.4.1.9.2.2.1.1.20.11039|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11040|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11041|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11042|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11043|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11044|4|
1.3.6.1.4.1.9.2.2.1.1.20.11045|4|down
1.3.6.1.4.1.9.2.2.1.1.20.11046|4x|61646d696e6973747261746976656c7920646f776e
1.3.6.1.4.1.9.2.2.1.1.20.11047|4x|61646d696e6973747261746976656c7920646f776e
1.3.6.1.4.1.9.2.2.1.1.20.11048|4|up
1.3.6.1.4.1.9.2.2.1.1.20.11101|4|
1.3.6.1.4.1.9.2.2.1.1.20.11102|4|
1.3.6.1.4.1.9.2.2.1.1.20.11103|4|
1.3.6.1.4.1.9.2.2.1.1.20.11104|4|
1.3.6.1.4.1.9.2.2.1.1.20.14501|4|
1.3.6.1.4.1.9.2.2.1.1.21.1|2|0
1.3.6.1.4.1.9.2.2.1.1.21.60|2|0
1.3.6.1.4.1.9.2.2.1.1.21.70|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.21.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.21.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.22.1|2|255
1.3.6.1.4.1.9.2.2.1.1.22.60|2|255
1.3.6.1.4.1.9.2.2.1.1.22.70|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11001|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11002|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11003|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11004|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11005|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11006|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11007|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11008|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11009|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11010|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11011|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11012|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11013|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11014|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11015|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11016|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11017|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11018|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11019|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11020|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11021|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11022|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11023|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11024|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11025|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11026|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11027|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11028|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11029|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11030|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11031|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11032|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11033|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11034|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11035|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11036|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11037|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11038|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11039|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11040|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11041|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11042|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11043|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11044|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11045|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11046|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11047|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11048|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11101|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11102|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11103|2|255
1.3.6.1.4.1.9.2.2.1.1.22.11104|2|255
1.3.6.1.4.1.9.2.2.1.1.22.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.23.1|2|10
1.3.6.1.4.1.9.2.2.1.1.23.60|2|10
1.3.6.1.4.1.9.2.2.1.1.23.70|2|10
1.3.6.1.4.1.9.2.2.1.1.23.11001|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11002|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11003|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11004|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11005|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11006|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11007|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11008|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11009|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11010|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11011|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11012|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11013|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11014|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11015|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11016|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11017|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11018|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11019|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11020|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11021|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11022|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11023|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11024|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11025|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11026|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11027|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11028|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11029|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11030|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11031|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11032|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11033|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11034|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11035|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11036|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11037|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11038|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11039|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11040|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11041|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11042|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11043|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11044|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11045|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11046|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11047|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11048|2|100
1.3.6.1.4.1.9.2.2.1.1.23.11101|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11102|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11103|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.11104|2|1000
1.3.6.1.4.1.9.2.2.1.1.23.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.24.1|2|1
1.3.6.1.4.1.9.2.2.1.1.24.60|2|1
1.3.6.1.4.1.9.2.2.1.1.24.70|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11001|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11002|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11003|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11004|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11005|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11006|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11007|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11008|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11009|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11010|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11011|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11012|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11013|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11014|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11015|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11016|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11017|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11018|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11019|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11020|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11021|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11022|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11023|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11024|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11025|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11026|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11027|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11028|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11029|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11030|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11031|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11032|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11033|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11034|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11035|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11036|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11037|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11038|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11039|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11040|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11041|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11042|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11043|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11044|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11045|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11046|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11047|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11048|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11101|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11102|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11103|2|1
1.3.6.1.4.1.9.2.2.1.1.24.11104|2|1
1.3.6.1.4.1.9.2.2.1.1.24.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.25.1|2|0
1.3.6.1.4.1.9.2.2.1.1.25.60|2|0
1.3.6.1.4.1.9.2.2.1.1.25.70|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11010|2|1675
1.3.6.1.4.1.9.2.2.1.1.25.11011|2|2674
1.3.6.1.4.1.9.2.2.1.1.25.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.25.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.25.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.26.1|2|0
1.3.6.1.4.1.9.2.2.1.1.26.60|2|168915
1.3.6.1.4.1.9.2.2.1.1.26.70|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11010|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11011|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11042|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11048|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.26.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.26.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.27.1|2|0
1.3.6.1.4.1.9.2.2.1.1.27.60|2|0
1.3.6.1.4.1.9.2.2.1.1.27.70|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11001|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11002|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11003|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11004|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11005|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11006|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11007|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11008|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11009|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11010|2|1429
1.3.6.1.4.1.9.2.2.1.1.27.11011|2|1076
1.3.6.1.4.1.9.2.2.1.1.27.11012|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11013|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11014|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11015|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11016|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11017|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11018|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11019|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11020|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11021|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11022|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11023|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11024|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11025|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11026|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11027|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11028|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11029|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11030|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11031|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11032|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11033|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11034|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11035|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11036|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11037|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11038|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11039|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11040|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11041|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11042|2|358
1.3.6.1.4.1.9.2.2.1.1.27.11043|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11044|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11045|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11046|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11047|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11048|2|24692
1.3.6.1.4.1.9.2.2.1.1.27.11101|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11102|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11103|2|0
1.3.6.1.4.1.9.2.2.1.1.27.11104|2|0
1.3.6.1.4.1.9.2.2.1.1.27.14501|2|0
1.3.6.1.4.1.9.2.2.1.1.28.1|4|
1.3.6.1.4.1.9.2.2.1.1.28.60|4|
1.3.6.1.4.1.9.2.2.1.1.28.70|4|
1.3.6.1.4.1.9.2.2.1.1.28.11001|4|
1.3.6.1.4.1.9.2.2.1.1.28.11002|4|
1.3.6.1.4.1.9.2.2.1.1.28.11003|4|
1.3.6.1.4.1.9.2.2.1.1.28.11004|4|
1.3.6.1.4.1.9.2.2.1.1.28.11005|4|
1.3.6.1.4.1.9.2.2.1.1.28.11006|4|
1.3.6.1.4.1.9.2.2.1.1.28.11007|4|
1.3.6.1.4.1.9.2.2.1.1.28.11008|4|
1.3.6.1.4.1.9.2.2.1.1.28.11009|4|
1.3.6.1.4.1.9.2.2.1.1.28.11010|4|
1.3.6.1.4.1.9.2.2.1.1.28.11011|4|
1.3.6.1.4.1.9.2.2.1.1.28.11012|4|
1.3.6.1.4.1.9.2.2.1.1.28.11013|4|
1.3.6.1.4.1.9.2.2.1.1.28.11014|4|
1.3.6.1.4.1.9.2.2.1.1.28.11015|4|
1.3.6.1.4.1.9.2.2.1.1.28.11016|4|
1.3.6.1.4.1.9.2.2.1.1.28.11017|4|
1.3.6.1.4.1.9.2.2.1.1.28.11018|4|
1.3.6.1.4.1.9.2.2.1.1.28.11019|4|
1.3.6.1.4.1.9.2.2.1.1.28.11020|4|
1.3.6.1.4.1.9.2.2.1.1.28.11021|4|
1.3.6.1.4.1.9.2.2.1.1.28.11022|4|
1.3.6.1.4.1.9.2.2.1.1.28.11023|4|
1.3.6.1.4.1.9.2.2.1.1.28.11024|4|
1.3.6.1.4.1.9.2.2.1.1.28.11025|4|
1.3.6.1.4.1.9.2.2.1.1.28.11026|4|
1.3.6.1.4.1.9.2.2.1.1.28.11027|4|
1.3.6.1.4.1.9.2.2.1.1.28.11028|4|
1.3.6.1.4.1.9.2.2.1.1.28.11029|4|
1.3.6.1.4.1.9.2.2.1.1.28.11030|4|
1.3.6.1.4.1.9.2.2.1.1.28.11031|4|
1.3.6.1.4.1.9.2.2.1.1.28.11032|4|
1.3.6.1.4.1.9.2.2.1.1.28.11033|4|
1.3.6.1.4.1.9.2.2.1.1.28.11034|4|
1.3.6.1.4.1.9.2.2.1.1.28.11035|4|
1.3.6.1.4.1.9.2.2.1.1.28.11036|4|
1.3.6.1.4.1.9.2.2.1.1.28.11037|4|
1.3.6.1.4.1.9.2.2.1.1.28.11038|4|
1.3.6.1.4.1.9.2.2.1.1.28.11039|4|
1.3.6.1.4.1.9.2.2.1.1.28.11040|4|
1.3.6.1.4.1.9.2.2.1.1.28.11041|4|
1.3.6.1.4.1.9.2.2.1.1.28.11042|4x|636f6e6e656374656420746f206375626520313262207275636b7573206170
1.3.6.1.4.1.9.2.2.1.1.28.11043|4x|636f6e6e656374656420746f207275636b757320776c6320
1.3.6.1.4.1.9.2.2.1.1.28.11044|4|
1.3.6.1.4.1.9.2.2.1.1.28.11045|4|
1.3.6.1.4.1.9.2.2.1.1.28.11046|4|
1.3.6.1.4.1.9.2.2.1.1.28.11047|4|
1.3.6.1.4.1.9.2.2.1.1.28.11048|4|
1.3.6.1.4.1.9.2.2.1.1.28.11101|4|
1.3.6.1.4.1.9.2.2.1.1.28.11102|4|
1.3.6.1.4.1.9.2.2.1.1.28.11103|4|
1.3.6.1.4.1.9.2.2.1.1.28.11104|4|
1.3.6.1.4.1.9.2.2.1.1.28.14501|4|
1.3.6.1.4.1.9.2.2.1.1.30.1|65|225085
1.3.6.1.4.1.9.2.2.1.1.30.60|65|356458606
1.3.6.1.4.1.9.2.2.1.1.30.70|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.30.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.30.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.31.1|65|0
1.3.6.1.4.1.9.2.2.1.1.31.60|65|373746908
1.3.6.1.4.1.9.2.2.1.1.31.70|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11003|65|3210435
1.3.6.1.4.1.9.2.2.1.1.31.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11006|65|8543
1.3.6.1.4.1.9.2.2.1.1.31.11007|65|4711396
1.3.6.1.4.1.9.2.2.1.1.31.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11009|65|4711396
1.3.6.1.4.1.9.2.2.1.1.31.11010|65|1623286
1.3.6.1.4.1.9.2.2.1.1.31.11011|65|3022925
1.3.6.1.4.1.9.2.2.1.1.31.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11039|65|5055
1.3.6.1.4.1.9.2.2.1.1.31.11040|65|48712
1.3.6.1.4.1.9.2.2.1.1.31.11041|65|343
1.3.6.1.4.1.9.2.2.1.1.31.11042|65|4080151
1.3.6.1.4.1.9.2.2.1.1.31.11043|65|4524479
1.3.6.1.4.1.9.2.2.1.1.31.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11045|65|244
1.3.6.1.4.1.9.2.2.1.1.31.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11048|65|35783083
1.3.6.1.4.1.9.2.2.1.1.31.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.31.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.31.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.32.1|65|39857997
1.3.6.1.4.1.9.2.2.1.1.32.60|65|3146102937
1.3.6.1.4.1.9.2.2.1.1.32.70|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.32.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.32.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.33.1|65|0
1.3.6.1.4.1.9.2.2.1.1.33.60|65|1116190256
1.3.6.1.4.1.9.2.2.1.1.33.70|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11003|65|309589621
1.3.6.1.4.1.9.2.2.1.1.33.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11006|65|851758
1.3.6.1.4.1.9.2.2.1.1.33.11007|65|417823602
1.3.6.1.4.1.9.2.2.1.1.33.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11009|65|417823602
1.3.6.1.4.1.9.2.2.1.1.33.11010|65|144252193
1.3.6.1.4.1.9.2.2.1.1.33.11011|65|268596194
1.3.6.1.4.1.9.2.2.1.1.33.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11039|65|462278
1.3.6.1.4.1.9.2.2.1.1.33.11040|65|4379616
1.3.6.1.4.1.9.2.2.1.1.33.11041|65|43547
1.3.6.1.4.1.9.2.2.1.1.33.11042|65|462166894
1.3.6.1.4.1.9.2.2.1.1.33.11043|65|406488676
1.3.6.1.4.1.9.2.2.1.1.33.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11045|65|27380
1.3.6.1.4.1.9.2.2.1.1.33.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11048|65|2544998808
1.3.6.1.4.1.9.2.2.1.1.33.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.33.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.33.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.34.1|65|0
1.3.6.1.4.1.9.2.2.1.1.34.60|65|0
1.3.6.1.4.1.9.2.2.1.1.34.70|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.34.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.34.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.35.1|65|0
1.3.6.1.4.1.9.2.2.1.1.35.60|65|0
1.3.6.1.4.1.9.2.2.1.1.35.70|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.35.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.35.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.36.1|65|0
1.3.6.1.4.1.9.2.2.1.1.36.60|65|0
1.3.6.1.4.1.9.2.2.1.1.36.70|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.36.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.36.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.37.1|65|0
1.3.6.1.4.1.9.2.2.1.1.37.60|65|0
1.3.6.1.4.1.9.2.2.1.1.37.70|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.37.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.37.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.38.1|65|0
1.3.6.1.4.1.9.2.2.1.1.38.60|65|71543
1.3.6.1.4.1.9.2.2.1.1.38.70|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.38.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.38.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.39.1|65|0
1.3.6.1.4.1.9.2.2.1.1.39.60|65|0
1.3.6.1.4.1.9.2.2.1.1.39.70|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11003|65|633612
1.3.6.1.4.1.9.2.2.1.1.39.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11006|65|1669
1.3.6.1.4.1.9.2.2.1.1.39.11007|65|930211
1.3.6.1.4.1.9.2.2.1.1.39.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11009|65|930211
1.3.6.1.4.1.9.2.2.1.1.39.11010|65|320378
1.3.6.1.4.1.9.2.2.1.1.39.11011|65|596739
1.3.6.1.4.1.9.2.2.1.1.39.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11039|65|989
1.3.6.1.4.1.9.2.2.1.1.39.11040|65|9601
1.3.6.1.4.1.9.2.2.1.1.39.11041|65|56
1.3.6.1.4.1.9.2.2.1.1.39.11042|65|765730
1.3.6.1.4.1.9.2.2.1.1.39.11043|65|930105
1.3.6.1.4.1.9.2.2.1.1.39.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11045|65|43
1.3.6.1.4.1.9.2.2.1.1.39.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11048|65|1162532
1.3.6.1.4.1.9.2.2.1.1.39.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.39.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.39.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.40.1|65|0
1.3.6.1.4.1.9.2.2.1.1.40.60|65|4292580
1.3.6.1.4.1.9.2.2.1.1.40.70|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.40.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.40.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.41.1|65|0
1.3.6.1.4.1.9.2.2.1.1.41.60|65|0
1.3.6.1.4.1.9.2.2.1.1.41.70|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11003|65|110236342
1.3.6.1.4.1.9.2.2.1.1.41.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11006|65|287930
1.3.6.1.4.1.9.2.2.1.1.41.11007|65|126104588
1.3.6.1.4.1.9.2.2.1.1.41.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11009|65|126104588
1.3.6.1.4.1.9.2.2.1.1.41.11010|65|43589637
1.3.6.1.4.1.9.2.2.1.1.41.11011|65|81189498
1.3.6.1.4.1.9.2.2.1.1.41.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11039|65|134181
1.3.6.1.4.1.9.2.2.1.1.41.11040|65|1339079
1.3.6.1.4.1.9.2.2.1.1.41.11041|65|6693
1.3.6.1.4.1.9.2.2.1.1.41.11042|65|101230185
1.3.6.1.4.1.9.2.2.1.1.41.11043|65|126552558
1.3.6.1.4.1.9.2.2.1.1.41.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11045|65|5610
1.3.6.1.4.1.9.2.2.1.1.41.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11048|65|140500907
1.3.6.1.4.1.9.2.2.1.1.41.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.41.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.41.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.42.1|65|0
1.3.6.1.4.1.9.2.2.1.1.42.60|65|222523590
1.3.6.1.4.1.9.2.2.1.1.42.70|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.42.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.42.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.43.1|65|0
1.3.6.1.4.1.9.2.2.1.1.43.60|65|368491986
1.3.6.1.4.1.9.2.2.1.1.43.70|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11048|65|31
1.3.6.1.4.1.9.2.2.1.1.43.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.43.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.43.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.44.1|65|0
1.3.6.1.4.1.9.2.2.1.1.44.60|65|3645221161
1.3.6.1.4.1.9.2.2.1.1.44.70|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.44.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.44.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.45.1|65|0
1.3.6.1.4.1.9.2.2.1.1.45.60|65|3600888594
1.3.6.1.4.1.9.2.2.1.1.45.70|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11048|65|1860
1.3.6.1.4.1.9.2.2.1.1.45.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.45.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.45.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.46.1|65|0
1.3.6.1.4.1.9.2.2.1.1.46.60|65|0
1.3.6.1.4.1.9.2.2.1.1.46.70|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.46.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.46.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.47.1|65|0
1.3.6.1.4.1.9.2.2.1.1.47.60|65|0
1.3.6.1.4.1.9.2.2.1.1.47.70|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.47.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.47.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.48.1|65|0
1.3.6.1.4.1.9.2.2.1.1.48.60|65|0
1.3.6.1.4.1.9.2.2.1.1.48.70|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.48.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.48.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.49.1|65|0
1.3.6.1.4.1.9.2.2.1.1.49.60|65|0
1.3.6.1.4.1.9.2.2.1.1.49.70|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.49.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.49.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.50.1|65|0
1.3.6.1.4.1.9.2.2.1.1.50.60|65|0
1.3.6.1.4.1.9.2.2.1.1.50.70|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.50.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.50.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.51.1|65|0
1.3.6.1.4.1.9.2.2.1.1.51.60|65|0
1.3.6.1.4.1.9.2.2.1.1.51.70|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.51.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.51.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.52.1|65|0
1.3.6.1.4.1.9.2.2.1.1.52.60|65|0
1.3.6.1.4.1.9.2.2.1.1.52.70|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.52.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.52.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.53.1|65|0
1.3.6.1.4.1.9.2.2.1.1.53.60|65|0
1.3.6.1.4.1.9.2.2.1.1.53.70|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.53.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.53.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.54.1|65|0
1.3.6.1.4.1.9.2.2.1.1.54.60|65|0
1.3.6.1.4.1.9.2.2.1.1.54.70|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.54.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.54.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.55.1|65|0
1.3.6.1.4.1.9.2.2.1.1.55.60|65|0
1.3.6.1.4.1.9.2.2.1.1.55.70|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.55.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.55.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.56.1|65|0
1.3.6.1.4.1.9.2.2.1.1.56.60|65|0
1.3.6.1.4.1.9.2.2.1.1.56.70|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.56.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.56.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.57.1|65|0
1.3.6.1.4.1.9.2.2.1.1.57.60|65|0
1.3.6.1.4.1.9.2.2.1.1.57.70|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.57.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.57.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.58.1|65|0
1.3.6.1.4.1.9.2.2.1.1.58.60|65|0
1.3.6.1.4.1.9.2.2.1.1.58.70|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.58.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.58.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.59.1|65|0
1.3.6.1.4.1.9.2.2.1.1.59.60|65|0
1.3.6.1.4.1.9.2.2.1.1.59.70|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.59.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.59.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.60.1|65|0
1.3.6.1.4.1.9.2.2.1.1.60.60|65|0
1.3.6.1.4.1.9.2.2.1.1.60.70|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.60.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.60.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.61.1|65|0
1.3.6.1.4.1.9.2.2.1.1.61.60|65|0
1.3.6.1.4.1.9.2.2.1.1.61.70|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.61.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.61.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.62.1|65|0
1.3.6.1.4.1.9.2.2.1.1.62.60|65|0
1.3.6.1.4.1.9.2.2.1.1.62.70|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.62.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.62.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.63.1|65|0
1.3.6.1.4.1.9.2.2.1.1.63.60|65|0
1.3.6.1.4.1.9.2.2.1.1.63.70|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.63.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.63.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.64.1|65|0
1.3.6.1.4.1.9.2.2.1.1.64.60|65|0
1.3.6.1.4.1.9.2.2.1.1.64.70|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.64.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.64.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.65.1|65|0
1.3.6.1.4.1.9.2.2.1.1.65.60|65|0
1.3.6.1.4.1.9.2.2.1.1.65.70|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.65.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.65.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.66.1|65|0
1.3.6.1.4.1.9.2.2.1.1.66.60|65|0
1.3.6.1.4.1.9.2.2.1.1.66.70|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.66.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.66.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.67.1|65|0
1.3.6.1.4.1.9.2.2.1.1.67.60|65|0
1.3.6.1.4.1.9.2.2.1.1.67.70|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.67.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.67.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.68.1|65|0
1.3.6.1.4.1.9.2.2.1.1.68.60|65|0
1.3.6.1.4.1.9.2.2.1.1.68.70|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.68.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.68.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.69.1|65|0
1.3.6.1.4.1.9.2.2.1.1.69.60|65|0
1.3.6.1.4.1.9.2.2.1.1.69.70|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.69.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.69.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.70.1|65|0
1.3.6.1.4.1.9.2.2.1.1.70.60|65|0
1.3.6.1.4.1.9.2.2.1.1.70.70|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.70.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.70.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.71.1|65|0
1.3.6.1.4.1.9.2.2.1.1.71.60|65|0
1.3.6.1.4.1.9.2.2.1.1.71.70|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.71.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.71.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.72.1|65|0
1.3.6.1.4.1.9.2.2.1.1.72.60|65|0
1.3.6.1.4.1.9.2.2.1.1.72.70|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.72.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.72.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.73.1|65|0
1.3.6.1.4.1.9.2.2.1.1.73.60|65|0
1.3.6.1.4.1.9.2.2.1.1.73.70|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.73.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.73.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.74.1|65|0
1.3.6.1.4.1.9.2.2.1.1.74.60|65|0
1.3.6.1.4.1.9.2.2.1.1.74.70|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.74.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.74.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.75.1|65|0
1.3.6.1.4.1.9.2.2.1.1.75.60|65|0
1.3.6.1.4.1.9.2.2.1.1.75.70|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.75.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.75.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.76.1|65|0
1.3.6.1.4.1.9.2.2.1.1.76.60|65|0
1.3.6.1.4.1.9.2.2.1.1.76.70|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.76.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.76.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.77.1|65|0
1.3.6.1.4.1.9.2.2.1.1.77.60|65|0
1.3.6.1.4.1.9.2.2.1.1.77.70|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.77.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.77.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.78.1|65|0
1.3.6.1.4.1.9.2.2.1.1.78.60|65|0
1.3.6.1.4.1.9.2.2.1.1.78.70|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.78.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.78.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.79.1|65|0
1.3.6.1.4.1.9.2.2.1.1.79.60|65|0
1.3.6.1.4.1.9.2.2.1.1.79.70|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.79.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.79.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.80.1|65|0
1.3.6.1.4.1.9.2.2.1.1.80.60|65|0
1.3.6.1.4.1.9.2.2.1.1.80.70|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.80.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.80.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.81.1|65|0
1.3.6.1.4.1.9.2.2.1.1.81.60|65|0
1.3.6.1.4.1.9.2.2.1.1.81.70|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.81.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.81.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.82.1|65|0
1.3.6.1.4.1.9.2.2.1.1.82.60|65|0
1.3.6.1.4.1.9.2.2.1.1.82.70|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.82.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.82.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.83.1|65|0
1.3.6.1.4.1.9.2.2.1.1.83.60|65|0
1.3.6.1.4.1.9.2.2.1.1.83.70|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.83.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.83.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.84.1|65|0
1.3.6.1.4.1.9.2.2.1.1.84.60|65|0
1.3.6.1.4.1.9.2.2.1.1.84.70|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.84.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.84.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.85.1|65|0
1.3.6.1.4.1.9.2.2.1.1.85.60|65|0
1.3.6.1.4.1.9.2.2.1.1.85.70|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.85.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.85.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.86.1|65|0
1.3.6.1.4.1.9.2.2.1.1.86.60|65|0
1.3.6.1.4.1.9.2.2.1.1.86.70|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.86.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.86.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.87.1|65|0
1.3.6.1.4.1.9.2.2.1.1.87.60|65|0
1.3.6.1.4.1.9.2.2.1.1.87.70|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.87.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.87.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.88.1|65|0
1.3.6.1.4.1.9.2.2.1.1.88.60|65|0
1.3.6.1.4.1.9.2.2.1.1.88.70|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.88.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.88.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.89.1|65|0
1.3.6.1.4.1.9.2.2.1.1.89.60|65|0
1.3.6.1.4.1.9.2.2.1.1.89.70|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.89.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.89.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.90.1|65|0
1.3.6.1.4.1.9.2.2.1.1.90.60|65|0
1.3.6.1.4.1.9.2.2.1.1.90.70|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.90.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.90.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.91.1|65|0
1.3.6.1.4.1.9.2.2.1.1.91.60|65|0
1.3.6.1.4.1.9.2.2.1.1.91.70|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.91.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.91.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.92.1|65|0
1.3.6.1.4.1.9.2.2.1.1.92.60|65|0
1.3.6.1.4.1.9.2.2.1.1.92.70|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.92.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.92.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.93.1|65|0
1.3.6.1.4.1.9.2.2.1.1.93.60|65|0
1.3.6.1.4.1.9.2.2.1.1.93.70|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.93.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.93.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.94.1|65|0
1.3.6.1.4.1.9.2.2.1.1.94.60|65|0
1.3.6.1.4.1.9.2.2.1.1.94.70|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.94.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.94.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.95.1|65|0
1.3.6.1.4.1.9.2.2.1.1.95.60|65|0
1.3.6.1.4.1.9.2.2.1.1.95.70|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.95.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.95.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.96.1|65|0
1.3.6.1.4.1.9.2.2.1.1.96.60|65|0
1.3.6.1.4.1.9.2.2.1.1.96.70|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.96.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.96.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.97.1|65|0
1.3.6.1.4.1.9.2.2.1.1.97.60|65|0
1.3.6.1.4.1.9.2.2.1.1.97.70|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.97.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.97.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.98.1|65|0
1.3.6.1.4.1.9.2.2.1.1.98.60|65|0
1.3.6.1.4.1.9.2.2.1.1.98.70|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.98.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.98.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.99.1|65|0
1.3.6.1.4.1.9.2.2.1.1.99.60|65|0
1.3.6.1.4.1.9.2.2.1.1.99.70|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.99.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.99.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.100.1|65|0
1.3.6.1.4.1.9.2.2.1.1.100.60|65|0
1.3.6.1.4.1.9.2.2.1.1.100.70|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.100.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.100.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.101.1|65|0
1.3.6.1.4.1.9.2.2.1.1.101.60|65|0
1.3.6.1.4.1.9.2.2.1.1.101.70|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.101.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.101.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.102.1|65|0
1.3.6.1.4.1.9.2.2.1.1.102.60|65|0
1.3.6.1.4.1.9.2.2.1.1.102.70|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11048|65|29172437
1.3.6.1.4.1.9.2.2.1.1.102.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.102.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.102.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.103.1|65|0
1.3.6.1.4.1.9.2.2.1.1.103.60|65|0
1.3.6.1.4.1.9.2.2.1.1.103.70|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11003|65|2496262
1.3.6.1.4.1.9.2.2.1.1.103.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11006|65|2108
1.3.6.1.4.1.9.2.2.1.1.103.11007|65|1166906
1.3.6.1.4.1.9.2.2.1.1.103.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11009|65|450
1.3.6.1.4.1.9.2.2.1.1.103.11010|65|270
1.3.6.1.4.1.9.2.2.1.1.103.11011|65|301
1.3.6.1.4.1.9.2.2.1.1.103.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11039|65|3905
1.3.6.1.4.1.9.2.2.1.1.103.11040|65|37854
1.3.6.1.4.1.9.2.2.1.1.103.11041|65|241
1.3.6.1.4.1.9.2.2.1.1.103.11042|65|2947291
1.3.6.1.4.1.9.2.2.1.1.103.11043|65|532838
1.3.6.1.4.1.9.2.2.1.1.103.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11045|65|2
1.3.6.1.4.1.9.2.2.1.1.103.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11048|65|34504353
1.3.6.1.4.1.9.2.2.1.1.103.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.103.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.103.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.104.1|65|0
1.3.6.1.4.1.9.2.2.1.1.104.60|65|0
1.3.6.1.4.1.9.2.2.1.1.104.70|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11048|65|1852453012
1.3.6.1.4.1.9.2.2.1.1.104.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.104.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.104.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.105.1|65|0
1.3.6.1.4.1.9.2.2.1.1.105.60|65|0
1.3.6.1.4.1.9.2.2.1.1.105.70|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11003|65|149775720
1.3.6.1.4.1.9.2.2.1.1.105.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11006|65|126480
1.3.6.1.4.1.9.2.2.1.1.105.11007|65|70014360
1.3.6.1.4.1.9.2.2.1.1.105.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11009|65|27000
1.3.6.1.4.1.9.2.2.1.1.105.11010|65|16200
1.3.6.1.4.1.9.2.2.1.1.105.11011|65|18060
1.3.6.1.4.1.9.2.2.1.1.105.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11039|65|234300
1.3.6.1.4.1.9.2.2.1.1.105.11040|65|2271240
1.3.6.1.4.1.9.2.2.1.1.105.11041|65|14460
1.3.6.1.4.1.9.2.2.1.1.105.11042|65|176837460
1.3.6.1.4.1.9.2.2.1.1.105.11043|65|31970280
1.3.6.1.4.1.9.2.2.1.1.105.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11045|65|120
1.3.6.1.4.1.9.2.2.1.1.105.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11048|65|2208271640
1.3.6.1.4.1.9.2.2.1.1.105.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.105.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.105.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.106.1|65|721
1.3.6.1.4.1.9.2.2.1.1.106.60|65|133865588
1.3.6.1.4.1.9.2.2.1.1.106.70|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.106.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.106.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.107.1|65|0
1.3.6.1.4.1.9.2.2.1.1.107.60|65|5254949
1.3.6.1.4.1.9.2.2.1.1.107.70|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.107.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.107.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.108.1|65|43260
1.3.6.1.4.1.9.2.2.1.1.108.60|65|3788488676
1.3.6.1.4.1.9.2.2.1.1.108.70|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.108.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.108.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.109.1|65|0
1.3.6.1.4.1.9.2.2.1.1.109.60|65|315296940
1.3.6.1.4.1.9.2.2.1.1.109.70|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.109.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.109.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.110.1|65|0
1.3.6.1.4.1.9.2.2.1.1.110.60|65|0
1.3.6.1.4.1.9.2.2.1.1.110.70|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.110.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.110.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.111.1|65|0
1.3.6.1.4.1.9.2.2.1.1.111.60|65|0
1.3.6.1.4.1.9.2.2.1.1.111.70|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.111.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.111.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.112.1|65|0
1.3.6.1.4.1.9.2.2.1.1.112.60|65|0
1.3.6.1.4.1.9.2.2.1.1.112.70|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.112.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.112.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.113.1|65|0
1.3.6.1.4.1.9.2.2.1.1.113.60|65|0
1.3.6.1.4.1.9.2.2.1.1.113.70|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.113.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.113.14501|65|0
1.3.6.1.4.1.9.2.2.1.1.114.1|65|0
1.3.6.1.4.1.9.2.2.1.1.114.60|65|0
1.3.6.1.4.1.9.2.2.1.1.114.70|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11001|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11002|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11003|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11004|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11005|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11006|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11007|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11008|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11009|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11010|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11011|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11012|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11013|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11014|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11015|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11016|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11017|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11018|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11019|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11020|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11021|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11022|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11023|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11024|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11025|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11026|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11027|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11028|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11029|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11030|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11031|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11032|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11033|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11034|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11035|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11036|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11037|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11038|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11039|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11040|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11041|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11042|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11043|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11044|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11045|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11046|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11047|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11048|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11101|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11102|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11103|65|0
1.3.6.1.4.1.9.2.2.1.1.114.11104|65|0
1.3.6.1.4.1.9.2.2.1.1.114.14501|65|0
1.3.6.1.4.1.9.2.4.1.1.1.10.204.88.16|4x|6e6f6e2d766f6c6174696c65206d656d6f7279
1.3.6.1.4.1.9.2.4.1.1.2.10.204.88.16|64x|00000000
1.3.6.1.4.1.9.2.4.1.1.3.10.204.88.16|64x|0ad17002
1.3.6.1.4.1.9.2.4.1.1.4.10.204.88.16|2|0
1.3.6.1.4.1.9.2.4.1.1.5.10.204.88.16|2|1
1.3.6.1.4.1.9.2.4.1.1.6.10.204.88.16|2|1
1.3.6.1.4.1.9.2.4.2.1.1.0.0.0.0|64x|00000000
1.3.6.1.4.1.9.2.4.2.1.1.10.204.88.0|64x|fffffc00
1.3.6.1.4.1.9.2.4.2.1.2.0.0.0.0|2|1
1.3.6.1.4.1.9.2.4.2.1.2.10.204.88.0|2|1
1.3.6.1.4.1.9.2.4.2.1.3.0.0.0.0|2|0
1.3.6.1.4.1.9.2.4.2.1.3.10.204.88.0|2|0
1.3.6.1.4.1.9.2.4.4.0|2|512
1.3.6.1.4.1.9.2.4.5.0|2|0
1.3.6.1.4.1.9.2.4.6.0|2|0
1.3.6.1.4.1.9.2.4.8.0|67|429496729
1.3.6.1.4.1.9.2.4.10.0|67|0
1.3.6.1.4.1.9.2.4.11.0|2|0
1.3.6.1.4.1.9.2.4.12.0|65|0
1.3.6.1.4.1.9.2.9.1.0|2|17
1.3.6.1.4.1.9.2.9.2.1.1.0|2|0
1.3.6.1.4.1.9.2.9.2.1.1.1|2|0
1.3.6.1.4.1.9.2.9.2.1.1.2|2|0
1.3.6.1.4.1.9.2.9.2.1.1.3|2|0
1.3.6.1.4.1.9.2.9.2.1.1.4|2|0
1.3.6.1.4.1.9.2.9.2.1.1.5|2|0
1.3.6.1.4.1.9.2.9.2.1.1.6|2|0
1.3.6.1.4.1.9.2.9.2.1.1.7|2|0
1.3.6.1.4.1.9.2.9.2.1.1.8|2|0
1.3.6.1.4.1.9.2.9.2.1.1.9|2|0
1.3.6.1.4.1.9.2.9.2.1.1.10|2|0
1.3.6.1.4.1.9.2.9.2.1.1.11|2|0
1.3.6.1.4.1.9.2.9.2.1.1.12|2|0
1.3.6.1.4.1.9.2.9.2.1.1.13|2|0
1.3.6.1.4.1.9.2.9.2.1.1.14|2|0
1.3.6.1.4.1.9.2.9.2.1.1.15|2|0
1.3.6.1.4.1.9.2.9.2.1.1.16|2|0
1.3.6.1.4.1.9.2.9.2.1.2.0|2|2
1.3.6.1.4.1.9.2.9.2.1.2.1|2|5
1.3.6.1.4.1.9.2.9.2.1.2.2|2|5
1.3.6.1.4.1.9.2.9.2.1.2.3|2|5
1.3.6.1.4.1.9.2.9.2.1.2.4|2|5
1.3.6.1.4.1.9.2.9.2.1.2.5|2|5
1.3.6.1.4.1.9.2.9.2.1.2.6|2|5
1.3.6.1.4.1.9.2.9.2.1.2.7|2|5
1.3.6.1.4.1.9.2.9.2.1.2.8|2|5
1.3.6.1.4.1.9.2.9.2.1.2.9|2|5
1.3.6.1.4.1.9.2.9.2.1.2.10|2|5
1.3.6.1.4.1.9.2.9.2.1.2.11|2|5
1.3.6.1.4.1.9.2.9.2.1.2.12|2|5
1.3.6.1.4.1.9.2.9.2.1.2.13|2|5
1.3.6.1.4.1.9.2.9.2.1.2.14|2|5
1.3.6.1.4.1.9.2.9.2.1.2.15|2|5
1.3.6.1.4.1.9.2.9.2.1.2.16|2|5
1.3.6.1.4.1.9.2.9.2.1.3.0|2|0
1.3.6.1.4.1.9.2.9.2.1.3.1|2|0
1.3.6.1.4.1.9.2.9.2.1.3.2|2|0
1.3.6.1.4.1.9.2.9.2.1.3.3|2|0
1.3.6.1.4.1.9.2.9.2.1.3.4|2|0
1.3.6.1.4.1.9.2.9.2.1.3.5|2|0
1.3.6.1.4.1.9.2.9.2.1.3.6|2|0
1.3.6.1.4.1.9.2.9.2.1.3.7|2|0
1.3.6.1.4.1.9.2.9.2.1.3.8|2|0
1.3.6.1.4.1.9.2.9.2.1.3.9|2|0
1.3.6.1.4.1.9.2.9.2.1.3.10|2|0
1.3.6.1.4.1.9.2.9.2.1.3.11|2|0
1.3.6.1.4.1.9.2.9.2.1.3.12|2|0
1.3.6.1.4.1.9.2.9.2.1.3.13|2|0
1.3.6.1.4.1.9.2.9.2.1.3.14|2|0
1.3.6.1.4.1.9.2.9.2.1.3.15|2|0
1.3.6.1.4.1.9.2.9.2.1.3.16|2|0
1.3.6.1.4.1.9.2.9.2.1.4.0|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.1|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.2|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.3|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.4|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.5|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.6|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.7|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.8|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.9|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.10|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.11|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.12|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.13|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.14|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.15|2|9600
1.3.6.1.4.1.9.2.9.2.1.4.16|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.0|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.1|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.2|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.3|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.4|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.5|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.6|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.7|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.8|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.9|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.10|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.11|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.12|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.13|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.14|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.15|2|9600
1.3.6.1.4.1.9.2.9.2.1.5.16|2|9600
1.3.6.1.4.1.9.2.9.2.1.6.0|2|2
1.3.6.1.4.1.9.2.9.2.1.6.1|2|2
1.3.6.1.4.1.9.2.9.2.1.6.2|2|2
1.3.6.1.4.1.9.2.9.2.1.6.3|2|2
1.3.6.1.4.1.9.2.9.2.1.6.4|2|2
1.3.6.1.4.1.9.2.9.2.1.6.5|2|2
1.3.6.1.4.1.9.2.9.2.1.6.6|2|2
1.3.6.1.4.1.9.2.9.2.1.6.7|2|2
1.3.6.1.4.1.9.2.9.2.1.6.8|2|2
1.3.6.1.4.1.9.2.9.2.1.6.9|2|2
1.3.6.1.4.1.9.2.9.2.1.6.10|2|2
1.3.6.1.4.1.9.2.9.2.1.6.11|2|2
1.3.6.1.4.1.9.2.9.2.1.6.12|2|2
1.3.6.1.4.1.9.2.9.2.1.6.13|2|2
1.3.6.1.4.1.9.2.9.2.1.6.14|2|2
1.3.6.1.4.1.9.2.9.2.1.6.15|2|2
1.3.6.1.4.1.9.2.9.2.1.6.16|2|2
1.3.6.1.4.1.9.2.9.2.1.7.0|2|2
1.3.6.1.4.1.9.2.9.2.1.7.1|2|2
1.3.6.1.4.1.9.2.9.2.1.7.2|2|2
1.3.6.1.4.1.9.2.9.2.1.7.3|2|2
1.3.6.1.4.1.9.2.9.2.1.7.4|2|2
1.3.6.1.4.1.9.2.9.2.1.7.5|2|2
1.3.6.1.4.1.9.2.9.2.1.7.6|2|2
1.3.6.1.4.1.9.2.9.2.1.7.7|2|2
1.3.6.1.4.1.9.2.9.2.1.7.8|2|2
1.3.6.1.4.1.9.2.9.2.1.7.9|2|2
1.3.6.1.4.1.9.2.9.2.1.7.10|2|2
1.3.6.1.4.1.9.2.9.2.1.7.11|2|2
1.3.6.1.4.1.9.2.9.2.1.7.12|2|2
1.3.6.1.4.1.9.2.9.2.1.7.13|2|2
1.3.6.1.4.1.9.2.9.2.1.7.14|2|2
1.3.6.1.4.1.9.2.9.2.1.7.15|2|2
1.3.6.1.4.1.9.2.9.2.1.7.16|2|2
1.3.6.1.4.1.9.2.9.2.1.8.0|4|
1.3.6.1.4.1.9.2.9.2.1.8.1|4|
1.3.6.1.4.1.9.2.9.2.1.8.2|4|
1.3.6.1.4.1.9.2.9.2.1.8.3|4|
1.3.6.1.4.1.9.2.9.2.1.8.4|4|
1.3.6.1.4.1.9.2.9.2.1.8.5|4|
1.3.6.1.4.1.9.2.9.2.1.8.6|4|
1.3.6.1.4.1.9.2.9.2.1.8.7|4|
1.3.6.1.4.1.9.2.9.2.1.8.8|4|
1.3.6.1.4.1.9.2.9.2.1.8.9|4|
1.3.6.1.4.1.9.2.9.2.1.8.10|4|
1.3.6.1.4.1.9.2.9.2.1.8.11|4|
1.3.6.1.4.1.9.2.9.2.1.8.12|4|
1.3.6.1.4.1.9.2.9.2.1.8.13|4|
1.3.6.1.4.1.9.2.9.2.1.8.14|4|
1.3.6.1.4.1.9.2.9.2.1.8.15|4|
1.3.6.1.4.1.9.2.9.2.1.8.16|4|
1.3.6.1.4.1.9.2.9.2.1.9.0|4|
1.3.6.1.4.1.9.2.9.2.1.9.1|4|
1.3.6.1.4.1.9.2.9.2.1.9.2|4|
1.3.6.1.4.1.9.2.9.2.1.9.3|4|
1.3.6.1.4.1.9.2.9.2.1.9.4|4|
1.3.6.1.4.1.9.2.9.2.1.9.5|4|
1.3.6.1.4.1.9.2.9.2.1.9.6|4|
1.3.6.1.4.1.9.2.9.2.1.9.7|4|
1.3.6.1.4.1.9.2.9.2.1.9.8|4|
1.3.6.1.4.1.9.2.9.2.1.9.9|4|
1.3.6.1.4.1.9.2.9.2.1.9.10|4|
1.3.6.1.4.1.9.2.9.2.1.9.11|4|
1.3.6.1.4.1.9.2.9.2.1.9.12|4|
1.3.6.1.4.1.9.2.9.2.1.9.13|4|
1.3.6.1.4.1.9.2.9.2.1.9.14|4|
1.3.6.1.4.1.9.2.9.2.1.9.15|4|
1.3.6.1.4.1.9.2.9.2.1.9.16|4|
1.3.6.1.4.1.9.2.9.2.1.10.0|2|24
1.3.6.1.4.1.9.2.9.2.1.10.1|2|24
1.3.6.1.4.1.9.2.9.2.1.10.2|2|24
1.3.6.1.4.1.9.2.9.2.1.10.3|2|24
1.3.6.1.4.1.9.2.9.2.1.10.4|2|24
1.3.6.1.4.1.9.2.9.2.1.10.5|2|24
1.3.6.1.4.1.9.2.9.2.1.10.6|2|24
1.3.6.1.4.1.9.2.9.2.1.10.7|2|24
1.3.6.1.4.1.9.2.9.2.1.10.8|2|24
1.3.6.1.4.1.9.2.9.2.1.10.9|2|24
1.3.6.1.4.1.9.2.9.2.1.10.10|2|24
1.3.6.1.4.1.9.2.9.2.1.10.11|2|24
1.3.6.1.4.1.9.2.9.2.1.10.12|2|24
1.3.6.1.4.1.9.2.9.2.1.10.13|2|24
1.3.6.1.4.1.9.2.9.2.1.10.14|2|24
1.3.6.1.4.1.9.2.9.2.1.10.15|2|24
1.3.6.1.4.1.9.2.9.2.1.10.16|2|24
1.3.6.1.4.1.9.2.9.2.1.11.0|2|80
1.3.6.1.4.1.9.2.9.2.1.11.1|2|80
1.3.6.1.4.1.9.2.9.2.1.11.2|2|80
1.3.6.1.4.1.9.2.9.2.1.11.3|2|80
1.3.6.1.4.1.9.2.9.2.1.11.4|2|80
1.3.6.1.4.1.9.2.9.2.1.11.5|2|80
1.3.6.1.4.1.9.2.9.2.1.11.6|2|80
1.3.6.1.4.1.9.2.9.2.1.11.7|2|80
1.3.6.1.4.1.9.2.9.2.1.11.8|2|80
1.3.6.1.4.1.9.2.9.2.1.11.9|2|80
1.3.6.1.4.1.9.2.9.2.1.11.10|2|80
1.3.6.1.4.1.9.2.9.2.1.11.11|2|80
1.3.6.1.4.1.9.2.9.2.1.11.12|2|80
1.3.6.1.4.1.9.2.9.2.1.11.13|2|80
1.3.6.1.4.1.9.2.9.2.1.11.14|2|80
1.3.6.1.4.1.9.2.9.2.1.11.15|2|80
1.3.6.1.4.1.9.2.9.2.1.11.16|2|80
1.3.6.1.4.1.9.2.9.2.1.12.0|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.1|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.2|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.3|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.4|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.5|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.6|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.7|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.8|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.9|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.10|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.11|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.12|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.13|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.14|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.15|4x|1e
1.3.6.1.4.1.9.2.9.2.1.12.16|4x|1e
1.3.6.1.4.1.9.2.9.2.1.13.0|2|600
1.3.6.1.4.1.9.2.9.2.1.13.1|2|600
1.3.6.1.4.1.9.2.9.2.1.13.2|2|600
1.3.6.1.4.1.9.2.9.2.1.13.3|2|600
1.3.6.1.4.1.9.2.9.2.1.13.4|2|600
1.3.6.1.4.1.9.2.9.2.1.13.5|2|600
1.3.6.1.4.1.9.2.9.2.1.13.6|2|600
1.3.6.1.4.1.9.2.9.2.1.13.7|2|600
1.3.6.1.4.1.9.2.9.2.1.13.8|2|600
1.3.6.1.4.1.9.2.9.2.1.13.9|2|600
1.3.6.1.4.1.9.2.9.2.1.13.10|2|600
1.3.6.1.4.1.9.2.9.2.1.13.11|2|600
1.3.6.1.4.1.9.2.9.2.1.13.12|2|600
1.3.6.1.4.1.9.2.9.2.1.13.13|2|600
1.3.6.1.4.1.9.2.9.2.1.13.14|2|600
1.3.6.1.4.1.9.2.9.2.1.13.15|2|600
1.3.6.1.4.1.9.2.9.2.1.13.16|2|600
1.3.6.1.4.1.9.2.9.2.1.14.0|2|0
1.3.6.1.4.1.9.2.9.2.1.14.1|2|0
1.3.6.1.4.1.9.2.9.2.1.14.2|2|0
1.3.6.1.4.1.9.2.9.2.1.14.3|2|0
1.3.6.1.4.1.9.2.9.2.1.14.4|2|0
1.3.6.1.4.1.9.2.9.2.1.14.5|2|0
1.3.6.1.4.1.9.2.9.2.1.14.6|2|0
1.3.6.1.4.1.9.2.9.2.1.14.7|2|0
1.3.6.1.4.1.9.2.9.2.1.14.8|2|0
1.3.6.1.4.1.9.2.9.2.1.14.9|2|0
1.3.6.1.4.1.9.2.9.2.1.14.10|2|0
1.3.6.1.4.1.9.2.9.2.1.14.11|2|0
1.3.6.1.4.1.9.2.9.2.1.14.12|2|0
1.3.6.1.4.1.9.2.9.2.1.14.13|2|0
1.3.6.1.4.1.9.2.9.2.1.14.14|2|0
1.3.6.1.4.1.9.2.9.2.1.14.15|2|0
1.3.6.1.4.1.9.2.9.2.1.14.16|2|0
1.3.6.1.4.1.9.2.9.2.1.15.0|2|0
1.3.6.1.4.1.9.2.9.2.1.15.1|2|0
1.3.6.1.4.1.9.2.9.2.1.15.2|2|0
1.3.6.1.4.1.9.2.9.2.1.15.3|2|0
1.3.6.1.4.1.9.2.9.2.1.15.4|2|0
1.3.6.1.4.1.9.2.9.2.1.15.5|2|0
1.3.6.1.4.1.9.2.9.2.1.15.6|2|0
1.3.6.1.4.1.9.2.9.2.1.15.7|2|0
1.3.6.1.4.1.9.2.9.2.1.15.8|2|0
1.3.6.1.4.1.9.2.9.2.1.15.9|2|0
1.3.6.1.4.1.9.2.9.2.1.15.10|2|0
1.3.6.1.4.1.9.2.9.2.1.15.11|2|0
1.3.6.1.4.1.9.2.9.2.1.15.12|2|0
1.3.6.1.4.1.9.2.9.2.1.15.13|2|0
1.3.6.1.4.1.9.2.9.2.1.15.14|2|0
1.3.6.1.4.1.9.2.9.2.1.15.15|2|0
1.3.6.1.4.1.9.2.9.2.1.15.16|2|0
1.3.6.1.4.1.9.2.9.2.1.16.0|2|0
1.3.6.1.4.1.9.2.9.2.1.16.1|2|50
1.3.6.1.4.1.9.2.9.2.1.16.2|2|3
1.3.6.1.4.1.9.2.9.2.1.16.3|2|0
1.3.6.1.4.1.9.2.9.2.1.16.4|2|0
1.3.6.1.4.1.9.2.9.2.1.16.5|2|0
1.3.6.1.4.1.9.2.9.2.1.16.6|2|0
1.3.6.1.4.1.9.2.9.2.1.16.7|2|0
1.3.6.1.4.1.9.2.9.2.1.16.8|2|0
1.3.6.1.4.1.9.2.9.2.1.16.9|2|0
1.3.6.1.4.1.9.2.9.2.1.16.10|2|0
1.3.6.1.4.1.9.2.9.2.1.16.11|2|0
1.3.6.1.4.1.9.2.9.2.1.16.12|2|0
1.3.6.1.4.1.9.2.9.2.1.16.13|2|0
1.3.6.1.4.1.9.2.9.2.1.16.14|2|0
1.3.6.1.4.1.9.2.9.2.1.16.15|2|0
1.3.6.1.4.1.9.2.9.2.1.16.16|2|0
1.3.6.1.4.1.9.2.9.2.1.17.0|2|0
1.3.6.1.4.1.9.2.9.2.1.17.1|2|0
1.3.6.1.4.1.9.2.9.2.1.17.2|2|0
1.3.6.1.4.1.9.2.9.2.1.17.3|2|0
1.3.6.1.4.1.9.2.9.2.1.17.4|2|0
1.3.6.1.4.1.9.2.9.2.1.17.5|2|0
1.3.6.1.4.1.9.2.9.2.1.17.6|2|0
1.3.6.1.4.1.9.2.9.2.1.17.7|2|0
1.3.6.1.4.1.9.2.9.2.1.17.8|2|0
1.3.6.1.4.1.9.2.9.2.1.17.9|2|0
1.3.6.1.4.1.9.2.9.2.1.17.10|2|0
1.3.6.1.4.1.9.2.9.2.1.17.11|2|0
1.3.6.1.4.1.9.2.9.2.1.17.12|2|0
1.3.6.1.4.1.9.2.9.2.1.17.13|2|0
1.3.6.1.4.1.9.2.9.2.1.17.14|2|0
1.3.6.1.4.1.9.2.9.2.1.17.15|2|0
1.3.6.1.4.1.9.2.9.2.1.17.16|2|0
1.3.6.1.4.1.9.2.9.2.1.18.0|4|
1.3.6.1.4.1.9.2.9.2.1.18.1|4|
1.3.6.1.4.1.9.2.9.2.1.18.2|4|
1.3.6.1.4.1.9.2.9.2.1.18.3|4|
1.3.6.1.4.1.9.2.9.2.1.18.4|4|
1.3.6.1.4.1.9.2.9.2.1.18.5|4|
1.3.6.1.4.1.9.2.9.2.1.18.6|4|
1.3.6.1.4.1.9.2.9.2.1.18.7|4|
1.3.6.1.4.1.9.2.9.2.1.18.8|4|
1.3.6.1.4.1.9.2.9.2.1.18.9|4|
1.3.6.1.4.1.9.2.9.2.1.18.10|4|
1.3.6.1.4.1.9.2.9.2.1.18.11|4|
1.3.6.1.4.1.9.2.9.2.1.18.12|4|
1.3.6.1.4.1.9.2.9.2.1.18.13|4|
1.3.6.1.4.1.9.2.9.2.1.18.14|4|
1.3.6.1.4.1.9.2.9.2.1.18.15|4|
1.3.6.1.4.1.9.2.9.2.1.18.16|4|
1.3.6.1.4.1.9.2.9.2.1.19.0|2|2
1.3.6.1.4.1.9.2.9.2.1.19.1|2|0
1.3.6.1.4.1.9.2.9.2.1.19.2|2|0
1.3.6.1.4.1.9.2.9.2.1.19.3|2|0
1.3.6.1.4.1.9.2.9.2.1.19.4|2|0
1.3.6.1.4.1.9.2.9.2.1.19.5|2|0
1.3.6.1.4.1.9.2.9.2.1.19.6|2|0
1.3.6.1.4.1.9.2.9.2.1.19.7|2|0
1.3.6.1.4.1.9.2.9.2.1.19.8|2|0
1.3.6.1.4.1.9.2.9.2.1.19.9|2|0
1.3.6.1.4.1.9.2.9.2.1.19.10|2|0
1.3.6.1.4.1.9.2.9.2.1.19.11|2|0
1.3.6.1.4.1.9.2.9.2.1.19.12|2|0
1.3.6.1.4.1.9.2.9.2.1.19.13|2|0
1.3.6.1.4.1.9.2.9.2.1.19.14|2|0
1.3.6.1.4.1.9.2.9.2.1.19.15|2|0
1.3.6.1.4.1.9.2.9.2.1.19.16|2|0
1.3.6.1.4.1.9.2.9.2.1.20.0|2|0
1.3.6.1.4.1.9.2.9.2.1.20.1|2|1
1.3.6.1.4.1.9.2.9.2.1.20.2|2|2
1.3.6.1.4.1.9.2.9.2.1.20.3|2|3
1.3.6.1.4.1.9.2.9.2.1.20.4|2|4
1.3.6.1.4.1.9.2.9.2.1.20.5|2|5
1.3.6.1.4.1.9.2.9.2.1.20.6|2|6
1.3.6.1.4.1.9.2.9.2.1.20.7|2|7
1.3.6.1.4.1.9.2.9.2.1.20.8|2|8
1.3.6.1.4.1.9.2.9.2.1.20.9|2|9
1.3.6.1.4.1.9.2.9.2.1.20.10|2|10
1.3.6.1.4.1.9.2.9.2.1.20.11|2|11
1.3.6.1.4.1.9.2.9.2.1.20.12|2|12
1.3.6.1.4.1.9.2.9.2.1.20.13|2|13
1.3.6.1.4.1.9.2.9.2.1.20.14|2|14
1.3.6.1.4.1.9.2.9.2.1.20.15|2|15
1.3.6.1.4.1.9.2.9.2.1.20.16|2|16
1.3.6.1.4.1.9.2.9.2.1.21.0|2|0
1.3.6.1.4.1.9.2.9.2.1.21.1|2|0
1.3.6.1.4.1.9.2.9.2.1.21.2|2|0
1.3.6.1.4.1.9.2.9.2.1.21.3|2|0
1.3.6.1.4.1.9.2.9.2.1.21.4|2|0
1.3.6.1.4.1.9.2.9.2.1.21.5|2|0
1.3.6.1.4.1.9.2.9.2.1.21.6|2|0
1.3.6.1.4.1.9.2.9.2.1.21.7|2|0
1.3.6.1.4.1.9.2.9.2.1.21.8|2|0
1.3.6.1.4.1.9.2.9.2.1.21.9|2|0
1.3.6.1.4.1.9.2.9.2.1.21.10|2|0
1.3.6.1.4.1.9.2.9.2.1.21.11|2|0
1.3.6.1.4.1.9.2.9.2.1.21.12|2|0
1.3.6.1.4.1.9.2.9.2.1.21.13|2|0
1.3.6.1.4.1.9.2.9.2.1.21.14|2|0
1.3.6.1.4.1.9.2.9.2.1.21.15|2|0
1.3.6.1.4.1.9.2.9.2.1.21.16|2|0
1.3.6.1.4.1.9.2.9.4.0|2|-1
1.3.6.1.4.1.9.2.9.5.0|2|0
1.3.6.1.4.1.9.2.9.6.0|2|0
1.3.6.1.4.1.9.2.9.7.0|4x|4e756c6c204d657373616765
1.3.6.1.4.1.9.2.9.8.0|2|1
1.3.6.1.4.1.9.2.9.9.0|2|3
1.3.6.1.4.1.9.2.9.10.0|2|-1
1.3.6.1.4.1.9.2.10.1.0|2|15998976
1.3.6.1.4.1.9.2.10.2.0|2|1273344
1.3.6.1.4.1.9.2.10.3.0|4|CPU
1.3.6.1.4.1.9.2.10.4.0|4x|4f6e626f6172642073797374656d20464c415348
1.3.6.1.4.1.9.2.10.5.0|2|1
1.3.6.1.4.1.9.2.10.7.0|67|0
1.3.6.1.4.1.9.2.10.8.0|2|7
1.3.6.1.4.1.9.2.10.10.0|67|0
1.3.6.1.4.1.9.2.10.11.0|2|7
1.3.6.1.4.1.9.2.10.13.0|67|0
1.3.6.1.4.1.9.2.10.14.0|2|7
1.3.6.1.4.1.9.2.10.15.0|2|2
1.3.6.1.4.1.9.2.10.16.0|2|367
1.3.6.1.4.1.9.2.10.17.1.1.1|4x|2f
1.3.6.1.4.1.9.2.10.17.1.1.2|4x|766c616e2e646174
1.3.6.1.4.1.9.2.10.17.1.1.3|4x|636f6e6669672e746578742e6a756c372d32303136
1.3.6.1.4.1.9.2.10.17.1.1.4|4x|63333735302d697073657276696365736b392d6d7a2e3132322d35352e534531302e62696e
1.3.6.1.4.1.9.2.10.17.1.1.5|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f
1.3.6.1.4.1.9.2.10.17.1.1.7|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f
1.3.6.1.4.1.9.2.10.17.1.1.8|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6170707375692e6a73
1.3.6.1.4.1.9.2.10.17.1.1.9|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7072696e746672616d652e68746d
1.3.6.1.4.1.9.2.10.17.1.1.10|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f636f6e73742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.11|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f78686f6d652e68746d
1.3.6.1.4.1.9.2.10.17.1.1.12|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f656d7074792e68746d
1.3.6.1.4.1.9.2.10.17.1.1.13|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6e736261636b2e68746d
1.3.6.1.4.1.9.2.10.17.1.1.14|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6c61796572732e6a73
1.3.6.1.4.1.9.2.10.17.1.1.15|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74726f75626c6573686f6f74696e675f42726f777365722e68746d
1.3.6.1.4.1.9.2.10.17.1.1.16|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f6f6c6261722e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.17|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f73697465776964652e6a73
1.3.6.1.4.1.9.2.10.17.1.1.18|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f67726170682e6a73
1.3.6.1.4.1.9.2.10.17.1.1.19|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d656e752e6a73
1.3.6.1.4.1.9.2.10.17.1.1.20|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7469746c652e6a73
1.3.6.1.4.1.9.2.10.17.1.1.21|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d656e752e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.22|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f686f6d65706167652e68746d
1.3.6.1.4.1.9.2.10.17.1.1.23|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c706672616d65776f726b2e6a73
1.3.6.1.4.1.9.2.10.17.1.1.24|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f636f6d626f2e6a73
1.3.6.1.4.1.9.2.10.17.1.1.25|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f707265666c696768742e6a73
1.3.6.1.4.1.9.2.10.17.1.1.26|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f72747461626c652e6a73
1.3.6.1.4.1.9.2.10.17.1.1.27|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f7062616e6e65726e6f6670762e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.28|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f73736c686f6d652e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.29|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d6f72652e747874
1.3.6.1.4.1.9.2.10.17.1.1.30|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f626f726465722e68746d
1.3.6.1.4.1.9.2.10.17.1.1.31|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7374617475732e68746d
1.3.6.1.4.1.9.2.10.17.1.1.32|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f73657475705f7265706f72742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.33|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6261636b2e68746d
1.3.6.1.4.1.9.2.10.17.1.1.34|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f666f726d732e6a73
1.3.6.1.4.1.9.2.10.17.1.1.35|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72656469726563742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.36|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74726f75626c6573686f6f74696e675f4a6176615363726970742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.37|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f6f6c6261722e6a73
1.3.6.1.4.1.9.2.10.17.1.1.38|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d656e752e637373
1.3.6.1.4.1.9.2.10.17.1.1.39|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6672616d65776f726b2e6a73
1.3.6.1.4.1.9.2.10.17.1.1.40|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74726f75626c6573686f6f74696e675f4f532e68746d
1.3.6.1.4.1.9.2.10.17.1.1.41|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7374796c6573686565742e637373
1.3.6.1.4.1.9.2.10.17.1.1.42|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f626f74746f6d62616e6e65722e68746d
1.3.6.1.4.1.9.2.10.17.1.1.43|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f727472756e74696d652e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.44|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f636e615f757067726164652e68746d
1.3.6.1.4.1.9.2.10.17.1.1.45|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f726573657474696d65722e68746d
1.3.6.1.4.1.9.2.10.17.1.1.46|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d6f6e69746f72646174612e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.47|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f757067726164657374617475732e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.48|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74656c6e65742e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.49|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f667477617265757067726164652d746f702e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.50|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f667477617265757067726164652e68746d
1.3.6.1.4.1.9.2.10.17.1.1.51|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f7274737461746973746963732e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.52|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7873657475702e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.53|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72656c6f61647374617475732e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.54|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f64617368626f6172642e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.55|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f657870726573732d73657475702e68746d
1.3.6.1.4.1.9.2.10.17.1.1.56|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736d617274706f7274732e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.57|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72656c6f61647374617475732e68746d
1.3.6.1.4.1.9.2.10.17.1.1.58|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f72742e6a73
1.3.6.1.4.1.9.2.10.17.1.1.59|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f667477617265757067726164652d746f702e6a73
1.3.6.1.4.1.9.2.10.17.1.1.60|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72657365742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.61|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f72747365742e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.62|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f7062616e6e65722e68746d
1.3.6.1.4.1.9.2.10.17.1.1.63|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6c6567656e642e68746d
1.3.6.1.4.1.9.2.10.17.1.1.64|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6865616c74682e68746d
1.3.6.1.4.1.9.2.10.17.1.1.65|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f646973636f7665722e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.66|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f646973636f7665722e6a73
1.3.6.1.4.1.9.2.10.17.1.1.67|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736d617274706f7274732e6a73
1.3.6.1.4.1.9.2.10.17.1.1.68|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f727473746174732e6a73
1.3.6.1.4.1.9.2.10.17.1.1.69|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f
1.3.6.1.4.1.9.2.10.17.1.1.70|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7073746174732e68746d
1.3.6.1.4.1.9.2.10.17.1.1.71|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f68656c702e68746d
1.3.6.1.4.1.9.2.10.17.1.1.72|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f69705f68656c702e68746d
1.3.6.1.4.1.9.2.10.17.1.1.73|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f68656c70746f6f6c6261722e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.74|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7873657469702e68746d
1.3.6.1.4.1.9.2.10.17.1.1.75|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f746f632e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.76|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f737570706f72742e7368746d6c
1.3.6.1.4.1.9.2.10.17.1.1.77|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f72657365742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.78|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f636e612e68746d
1.3.6.1.4.1.9.2.10.17.1.1.79|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7873657475705f68656c702e68746d
1.3.6.1.4.1.9.2.10.17.1.1.80|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f70736574732e68746d
1.3.6.1.4.1.9.2.10.17.1.1.81|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f737570706f72742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.82|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f74656c6e65742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.83|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f707374617475732e68746d
1.3.6.1.4.1.9.2.10.17.1.1.84|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f70736d6172742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.85|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f61626f75742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.86|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f787365747374642e68746d
1.3.6.1.4.1.9.2.10.17.1.1.87|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f757067726164652e68746d
1.3.6.1.4.1.9.2.10.17.1.1.88|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7472656e64732e68746d
1.3.6.1.4.1.9.2.10.17.1.1.89|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f78736574696e69742e68746d
1.3.6.1.4.1.9.2.10.17.1.1.90|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f646173686272642e68746d
1.3.6.1.4.1.9.2.10.17.1.1.91|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f6c6567656e642e68746d
1.3.6.1.4.1.9.2.10.17.1.1.92|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f
1.3.6.1.4.1.9.2.10.17.1.1.93|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.94|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636f6d626f4172726f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.95|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.96|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370616365722e676966
1.3.6.1.4.1.9.2.10.17.1.1.97|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530323446585f322e676966
1.3.6.1.4.1.9.2.10.17.1.1.98|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d6c6561662e676966
1.3.6.1.4.1.9.2.10.17.1.1.99|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f68656c702e676966
1.3.6.1.4.1.9.2.10.17.1.1.100|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.101|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f72696768745f6163746976652e676966
1.3.6.1.4.1.9.2.10.17.1.1.102|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.103|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f77686974656d61736b31315f757072696768742e676966
1.3.6.1.4.1.9.2.10.17.1.1.104|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69636f6e5f706f7075702e676966
1.3.6.1.4.1.9.2.10.17.1.1.105|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.106|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644e6f6e652e676966
1.3.6.1.4.1.9.2.10.17.1.1.107|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f313674642e676966
1.3.6.1.4.1.9.2.10.17.1.1.108|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f666174616c5f6572726f725f6269672e676966
1.3.6.1.4.1.9.2.10.17.1.1.109|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626f74746f6d5f6c6566742e676966
1.3.6.1.4.1.9.2.10.17.1.1.110|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.111|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f62675f696e6163746976652e676966
1.3.6.1.4.1.9.2.10.17.1.1.112|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.113|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.114|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.115|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.116|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f79656c6c6f775f626561642e676966
1.3.6.1.4.1.9.2.10.17.1.1.117|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.118|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f75706c6566742e676966
1.3.6.1.4.1.9.2.10.17.1.1.119|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f6f72616e67652e676966
1.3.6.1.4.1.9.2.10.17.1.1.120|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.121|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f736d617274706f7274732e676966
1.3.6.1.4.1.9.2.10.17.1.1.122|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.123|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7265642e676966
1.3.6.1.4.1.9.2.10.17.1.1.124|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.125|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.126|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f75705f6172726f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.127|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306734385f342e676966
1.3.6.1.4.1.9.2.10.17.1.1.128|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704e6f6e652e676966
1.3.6.1.4.1.9.2.10.17.1.1.129|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f677265656e616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.130|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.131|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626173652e676966
1.3.6.1.4.1.9.2.10.17.1.1.132|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7072696e742e676966
1.3.6.1.4.1.9.2.10.17.1.1.133|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.134|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.135|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.136|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.137|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d726172726f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.138|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.139|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f68656c705f6f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.140|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636e615f646f776e6c6f61645f73706c6173682e676966
1.3.6.1.4.1.9.2.10.17.1.1.141|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.142|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.143|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313038312e676966
1.3.6.1.4.1.9.2.10.17.1.1.144|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e7465726e616c5f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.145|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f646f776e5f6172726f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.146|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f757067726164652e676966
1.3.6.1.4.1.9.2.10.17.1.1.147|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.148|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.149|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d657465725f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.150|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f7278725f666f725f6c6567656e642e676966
1.3.6.1.4.1.9.2.10.17.1.1.151|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d657465725f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.152|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.153|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706e6770726f67726573732e676966
1.3.6.1.4.1.9.2.10.17.1.1.154|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.155|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6e6f6c696e6b5f626561642e676966
1.3.6.1.4.1.9.2.10.17.1.1.156|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.157|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644d756c7469706c652e676966
1.3.6.1.4.1.9.2.10.17.1.1.158|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.159|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636f6e6669726d2e676966
1.3.6.1.4.1.9.2.10.17.1.1.160|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f736d617274706f7274735f6f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.161|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.162|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037372e676966
1.3.6.1.4.1.9.2.10.17.1.1.163|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.164|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.165|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.166|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.167|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323333392e676966
1.3.6.1.4.1.9.2.10.17.1.1.168|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d656e755f6d6f6e69746f722e676966
1.3.6.1.4.1.9.2.10.17.1.1.169|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.170|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.171|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.172|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f6c6566745f696e6163746976652e676966
1.3.6.1.4.1.9.2.10.17.1.1.173|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f626c75652e676966
1.3.6.1.4.1.9.2.10.17.1.1.174|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6f676f2e676966
1.3.6.1.4.1.9.2.10.17.1.1.175|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.176|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.177|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66616e5f616e696d6174696f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.178|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6567656e645f6f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.179|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f6f72616e67652e676966
1.3.6.1.4.1.9.2.10.17.1.1.180|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.181|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.182|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.183|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74656d705f7265642e676966
1.3.6.1.4.1.9.2.10.17.1.1.184|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67726e5f766572746c696e65735f746f702e676966
1.3.6.1.4.1.9.2.10.17.1.1.185|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.186|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6670616e656c2e676966
1.3.6.1.4.1.9.2.10.17.1.1.187|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f61646d696e646f776e5f626561642e676966
1.3.6.1.4.1.9.2.10.17.1.1.188|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f736d617274706f7274735f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.189|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6661756c74795f626561642e676966
1.3.6.1.4.1.9.2.10.17.1.1.190|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.191|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74656d705f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.192|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370526f757465722e676966
1.3.6.1.4.1.9.2.10.17.1.1.193|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7175657374696f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.194|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7377757067726164655f6f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.195|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074792e676966
1.3.6.1.4.1.9.2.10.17.1.1.196|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66616e5f646f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.197|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.198|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c696e6b75705f626561642e676966
1.3.6.1.4.1.9.2.10.17.1.1.199|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.200|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.201|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636f6d626f507265737365644172726f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.202|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.203|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f746f705f6c6566742e676966
1.3.6.1.4.1.9.2.10.17.1.1.204|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67617567655f6f66665f6c696e652e676966
1.3.6.1.4.1.9.2.10.17.1.1.205|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306734385f34702e676966
1.3.6.1.4.1.9.2.10.17.1.1.206|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.207|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f726566726573682e676966
1.3.6.1.4.1.9.2.10.17.1.1.208|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353032345f325f6d6f64652e676966
1.3.6.1.4.1.9.2.10.17.1.1.209|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.210|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67617567655f6f6e5f6c696e652e676966
1.3.6.1.4.1.9.2.10.17.1.1.211|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.212|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353032345f32702e676966
1.3.6.1.4.1.9.2.10.17.1.1.213|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f76696f6c65742e676966
1.3.6.1.4.1.9.2.10.17.1.1.214|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.215|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f62675f6163746976652e676966
1.3.6.1.4.1.9.2.10.17.1.1.216|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636c6561722e676966
1.3.6.1.4.1.9.2.10.17.1.1.217|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.218|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69705f666967332e676966
1.3.6.1.4.1.9.2.10.17.1.1.219|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323335332e676966
1.3.6.1.4.1.9.2.10.17.1.1.220|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313038302e676966
1.3.6.1.4.1.9.2.10.17.1.1.221|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365645377697463682e676966
1.3.6.1.4.1.9.2.10.17.1.1.222|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.223|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f64617368626f6172642e676966
1.3.6.1.4.1.9.2.10.17.1.1.224|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.225|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.226|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706978656c2e676966
1.3.6.1.4.1.9.2.10.17.1.1.227|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.228|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7377757067726164655f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.229|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.230|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.231|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.232|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.233|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f666f725f6c6567656e642e676966
1.3.6.1.4.1.9.2.10.17.1.1.234|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.235|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037362e676966
1.3.6.1.4.1.9.2.10.17.1.1.236|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f32345f342e676966
1.3.6.1.4.1.9.2.10.17.1.1.237|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.238|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f737050726573736564495050686f6e652e676966
1.3.6.1.4.1.9.2.10.17.1.1.239|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.240|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.241|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.242|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.243|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.244|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f62756c6c65742e676966
1.3.6.1.4.1.9.2.10.17.1.1.245|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.246|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306732345f34702e676966
1.3.6.1.4.1.9.2.10.17.1.1.247|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f737770726f67726573732e676966
1.3.6.1.4.1.9.2.10.17.1.1.248|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f77686974656d61736b31315f626f746c6566742e676966
1.3.6.1.4.1.9.2.10.17.1.1.249|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074792e676966
1.3.6.1.4.1.9.2.10.17.1.1.250|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c696e6b6661756c74795f626561642e676966
1.3.6.1.4.1.9.2.10.17.1.1.251|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f666174616c5f6572726f722e676966
1.3.6.1.4.1.9.2.10.17.1.1.252|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f626c75652e676966
1.3.6.1.4.1.9.2.10.17.1.1.253|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f76696f6c65742e676966
1.3.6.1.4.1.9.2.10.17.1.1.254|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306732345f342e676966
1.3.6.1.4.1.9.2.10.17.1.1.255|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f676c6f73736172795f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.256|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.257|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644465736b746f702e676966
1.3.6.1.4.1.9.2.10.17.1.1.258|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.259|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.260|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6567656e645f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.261|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353034385f342e676966
1.3.6.1.4.1.9.2.10.17.1.1.262|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.263|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f626173652e676966
1.3.6.1.4.1.9.2.10.17.1.1.264|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323334352e676966
1.3.6.1.4.1.9.2.10.17.1.1.265|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.266|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7377726566726573682e676966
1.3.6.1.4.1.9.2.10.17.1.1.267|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f6c672e676966
1.3.6.1.4.1.9.2.10.17.1.1.268|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.269|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f32345f302e676966
1.3.6.1.4.1.9.2.10.17.1.1.270|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.271|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037392e676966
1.3.6.1.4.1.9.2.10.17.1.1.272|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644163636573732e676966
1.3.6.1.4.1.9.2.10.17.1.1.273|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73705377697463682e676966
1.3.6.1.4.1.9.2.10.17.1.1.274|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.275|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f726566726573685f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.276|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.277|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67726e5f766572746c696e65735f626f74746f6d2e676966
1.3.6.1.4.1.9.2.10.17.1.1.278|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.279|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074792e676966
1.3.6.1.4.1.9.2.10.17.1.1.280|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d656e755f746f6f6c732e676966
1.3.6.1.4.1.9.2.10.17.1.1.281|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c61636b2e676966
1.3.6.1.4.1.9.2.10.17.1.1.282|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.283|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d646172726f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.284|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7072696e745f6f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.285|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f72696768745f696e6163746976652e676966
1.3.6.1.4.1.9.2.10.17.1.1.286|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.287|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.288|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.289|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.290|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69705f666967322e676966
1.3.6.1.4.1.9.2.10.17.1.1.291|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f68656c705f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.292|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.293|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7072696e745f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.294|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353032345f322e676966
1.3.6.1.4.1.9.2.10.17.1.1.295|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.296|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.297|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.298|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.299|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.300|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6e6f726d616c2e676966
1.3.6.1.4.1.9.2.10.17.1.1.301|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.302|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f7072696e745f6f66662e676966
1.3.6.1.4.1.9.2.10.17.1.1.303|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370495050686f6e652e676966
1.3.6.1.4.1.9.2.10.17.1.1.304|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.305|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.306|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037352e676966
1.3.6.1.4.1.9.2.10.17.1.1.307|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.308|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7761726e696e672e676966
1.3.6.1.4.1.9.2.10.17.1.1.309|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.310|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.311|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7570646174652e676966
1.3.6.1.4.1.9.2.10.17.1.1.312|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626f74746f6d5f72696768742e676966
1.3.6.1.4.1.9.2.10.17.1.1.313|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706e676661696c7572652e676966
1.3.6.1.4.1.9.2.10.17.1.1.314|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.315|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.316|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.317|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f3132732e676966
1.3.6.1.4.1.9.2.10.17.1.1.318|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353034385f34702e676966
1.3.6.1.4.1.9.2.10.17.1.1.319|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f646f776e6c6566742e676966
1.3.6.1.4.1.9.2.10.17.1.1.320|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6465736b746f702e676966
1.3.6.1.4.1.9.2.10.17.1.1.321|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74625f62672e676966
1.3.6.1.4.1.9.2.10.17.1.1.322|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706e67737563636573732e676966
1.3.6.1.4.1.9.2.10.17.1.1.323|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.324|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.325|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f6379616e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.326|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f677265656e5f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.327|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f7265642e676966
1.3.6.1.4.1.9.2.10.17.1.1.328|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704465736b746f702e676966
1.3.6.1.4.1.9.2.10.17.1.1.329|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f746f705f72696768742e676966
1.3.6.1.4.1.9.2.10.17.1.1.330|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.331|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f746578745f73746172742e676966
1.3.6.1.4.1.9.2.10.17.1.1.332|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6567656e642e676966
1.3.6.1.4.1.9.2.10.17.1.1.333|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74656d702e676966
1.3.6.1.4.1.9.2.10.17.1.1.334|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f6c6566745f6163746976652e676966
1.3.6.1.4.1.9.2.10.17.1.1.335|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704d756c7469706c652e676966
1.3.6.1.4.1.9.2.10.17.1.1.336|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f646b677265656e6d61736b32385f757072696768742e676966
1.3.6.1.4.1.9.2.10.17.1.1.337|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.338|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f677265656e616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.339|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.340|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.341|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.342|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f6c67322e676966
1.3.6.1.4.1.9.2.10.17.1.1.343|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037382e676966
1.3.6.1.4.1.9.2.10.17.1.1.344|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.345|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f79656c6c6f772e676966
1.3.6.1.4.1.9.2.10.17.1.1.346|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.347|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.348|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.349|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704163636573732e676966
1.3.6.1.4.1.9.2.10.17.1.1.350|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.351|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f726566726573685f6f6e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.352|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f677265656e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.353|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323038352e676966
1.3.6.1.4.1.9.2.10.17.1.1.354|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7761726e696e675f6269672e676966
1.3.6.1.4.1.9.2.10.17.1.1.355|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f7265642e676966
1.3.6.1.4.1.9.2.10.17.1.1.356|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f616d6265722e676966
1.3.6.1.4.1.9.2.10.17.1.1.357|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f62726f776e2e676966
1.3.6.1.4.1.9.2.10.17.1.1.358|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d656e755f636f6e6669672e676966
1.3.6.1.4.1.9.2.10.17.1.1.359|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69705f666967312e676966
1.3.6.1.4.1.9.2.10.17.1.1.360|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f677261792e676966
1.3.6.1.4.1.9.2.10.17.1.1.361|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f737050726573736564526f757465722e676966
1.3.6.1.4.1.9.2.10.17.1.1.362|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f696e666f
1.3.6.1.4.1.9.2.10.17.1.1.363|4x|636f6e6669672e746578742e6261636b7570
1.3.6.1.4.1.9.2.10.17.1.1.364|4x|636f6e6669672e746578742e6f6c64
1.3.6.1.4.1.9.2.10.17.1.1.366|4x|636f6e6669672e74657874
1.3.6.1.4.1.9.2.10.17.1.2.1|2|704
1.3.6.1.4.1.9.2.10.17.1.2.2|2|1456
1.3.6.1.4.1.9.2.10.17.1.2.3|2|4485
1.3.6.1.4.1.9.2.10.17.1.2.4|2|13011760
1.3.6.1.4.1.9.2.10.17.1.2.5|2|128
1.3.6.1.4.1.9.2.10.17.1.2.7|2|4032
1.3.6.1.4.1.9.2.10.17.1.2.8|2|1389
1.3.6.1.4.1.9.2.10.17.1.2.9|2|369
1.3.6.1.4.1.9.2.10.17.1.2.10|2|556
1.3.6.1.4.1.9.2.10.17.1.2.11|2|9373
1.3.6.1.4.1.9.2.10.17.1.2.12|2|313
1.3.6.1.4.1.9.2.10.17.1.2.13|2|439
1.3.6.1.4.1.9.2.10.17.1.2.14|2|1616
1.3.6.1.4.1.9.2.10.17.1.2.15|2|3107
1.3.6.1.4.1.9.2.10.17.1.2.16|2|8935
1.3.6.1.4.1.9.2.10.17.1.2.17|2|17408
1.3.6.1.4.1.9.2.10.17.1.2.18|2|27761
1.3.6.1.4.1.9.2.10.17.1.2.19|2|7750
1.3.6.1.4.1.9.2.10.17.1.2.20|2|577
1.3.6.1.4.1.9.2.10.17.1.2.21|2|4554
1.3.6.1.4.1.9.2.10.17.1.2.22|2|471
1.3.6.1.4.1.9.2.10.17.1.2.23|2|858
1.3.6.1.4.1.9.2.10.17.1.2.24|2|8261
1.3.6.1.4.1.9.2.10.17.1.2.25|2|14442
1.3.6.1.4.1.9.2.10.17.1.2.26|2|40255
1.3.6.1.4.1.9.2.10.17.1.2.27|2|4262
1.3.6.1.4.1.9.2.10.17.1.2.28|2|6143
1.3.6.1.4.1.9.2.10.17.1.2.29|2|62
1.3.6.1.4.1.9.2.10.17.1.2.30|2|251
1.3.6.1.4.1.9.2.10.17.1.2.31|2|8107
1.3.6.1.4.1.9.2.10.17.1.2.32|2|12461
1.3.6.1.4.1.9.2.10.17.1.2.33|2|435
1.3.6.1.4.1.9.2.10.17.1.2.34|2|12941
1.3.6.1.4.1.9.2.10.17.1.2.35|2|1018
1.3.6.1.4.1.9.2.10.17.1.2.36|2|8065
1.3.6.1.4.1.9.2.10.17.1.2.37|2|4966
1.3.6.1.4.1.9.2.10.17.1.2.38|2|1654
1.3.6.1.4.1.9.2.10.17.1.2.39|2|76045
1.3.6.1.4.1.9.2.10.17.1.2.40|2|2508
1.3.6.1.4.1.9.2.10.17.1.2.41|2|8273
1.3.6.1.4.1.9.2.10.17.1.2.42|2|3646
1.3.6.1.4.1.9.2.10.17.1.2.43|2|30565
1.3.6.1.4.1.9.2.10.17.1.2.44|2|1767
1.3.6.1.4.1.9.2.10.17.1.2.45|2|4375
1.3.6.1.4.1.9.2.10.17.1.2.46|2|40030
1.3.6.1.4.1.9.2.10.17.1.2.47|2|564
1.3.6.1.4.1.9.2.10.17.1.2.48|2|4516
1.3.6.1.4.1.9.2.10.17.1.2.49|2|33031
1.3.6.1.4.1.9.2.10.17.1.2.50|2|982
1.3.6.1.4.1.9.2.10.17.1.2.51|2|18866
1.3.6.1.4.1.9.2.10.17.1.2.52|2|57221
1.3.6.1.4.1.9.2.10.17.1.2.53|2|590
1.3.6.1.4.1.9.2.10.17.1.2.54|2|84439
1.3.6.1.4.1.9.2.10.17.1.2.55|2|6521
1.3.6.1.4.1.9.2.10.17.1.2.56|2|71596
1.3.6.1.4.1.9.2.10.17.1.2.57|2|425
1.3.6.1.4.1.9.2.10.17.1.2.58|2|29
1.3.6.1.4.1.9.2.10.17.1.2.59|2|5269
1.3.6.1.4.1.9.2.10.17.1.2.60|2|5888
1.3.6.1.4.1.9.2.10.17.1.2.61|2|45579
1.3.6.1.4.1.9.2.10.17.1.2.62|2|14958
1.3.6.1.4.1.9.2.10.17.1.2.63|2|6645
1.3.6.1.4.1.9.2.10.17.1.2.64|2|30120
1.3.6.1.4.1.9.2.10.17.1.2.65|2|13050
1.3.6.1.4.1.9.2.10.17.1.2.66|2|23075
1.3.6.1.4.1.9.2.10.17.1.2.67|2|35169
1.3.6.1.4.1.9.2.10.17.1.2.68|2|8626
1.3.6.1.4.1.9.2.10.17.1.2.69|2|1408
1.3.6.1.4.1.9.2.10.17.1.2.70|2|14530
1.3.6.1.4.1.9.2.10.17.1.2.71|2|1087
1.3.6.1.4.1.9.2.10.17.1.2.72|2|12891
1.3.6.1.4.1.9.2.10.17.1.2.73|2|4333
1.3.6.1.4.1.9.2.10.17.1.2.74|2|5805
1.3.6.1.4.1.9.2.10.17.1.2.75|2|5166
1.3.6.1.4.1.9.2.10.17.1.2.76|2|5360
1.3.6.1.4.1.9.2.10.17.1.2.77|2|3313
1.3.6.1.4.1.9.2.10.17.1.2.78|2|2503
1.3.6.1.4.1.9.2.10.17.1.2.79|2|732
1.3.6.1.4.1.9.2.10.17.1.2.80|2|6258
1.3.6.1.4.1.9.2.10.17.1.2.81|2|8339
1.3.6.1.4.1.9.2.10.17.1.2.82|2|4083
1.3.6.1.4.1.9.2.10.17.1.2.83|2|9054
1.3.6.1.4.1.9.2.10.17.1.2.84|2|18037
1.3.6.1.4.1.9.2.10.17.1.2.85|2|25558
1.3.6.1.4.1.9.2.10.17.1.2.86|2|9980
1.3.6.1.4.1.9.2.10.17.1.2.87|2|6329
1.3.6.1.4.1.9.2.10.17.1.2.88|2|6853
1.3.6.1.4.1.9.2.10.17.1.2.89|2|9262
1.3.6.1.4.1.9.2.10.17.1.2.90|2|24023
1.3.6.1.4.1.9.2.10.17.1.2.91|2|13850
1.3.6.1.4.1.9.2.10.17.1.2.92|2|17216
1.3.6.1.4.1.9.2.10.17.1.2.93|2|113
1.3.6.1.4.1.9.2.10.17.1.2.94|2|881
1.3.6.1.4.1.9.2.10.17.1.2.95|2|890
1.3.6.1.4.1.9.2.10.17.1.2.96|2|49
1.3.6.1.4.1.9.2.10.17.1.2.97|2|7922
1.3.6.1.4.1.9.2.10.17.1.2.98|2|104
1.3.6.1.4.1.9.2.10.17.1.2.99|2|563
1.3.6.1.4.1.9.2.10.17.1.2.100|2|180
1.3.6.1.4.1.9.2.10.17.1.2.101|2|862
1.3.6.1.4.1.9.2.10.17.1.2.102|2|37
1.3.6.1.4.1.9.2.10.17.1.2.103|2|61
1.3.6.1.4.1.9.2.10.17.1.2.104|2|379
1.3.6.1.4.1.9.2.10.17.1.2.105|2|124
1.3.6.1.4.1.9.2.10.17.1.2.106|2|892
1.3.6.1.4.1.9.2.10.17.1.2.107|2|8088
1.3.6.1.4.1.9.2.10.17.1.2.108|2|271
1.3.6.1.4.1.9.2.10.17.1.2.109|2|45
1.3.6.1.4.1.9.2.10.17.1.2.110|2|80
1.3.6.1.4.1.9.2.10.17.1.2.111|2|931
1.3.6.1.4.1.9.2.10.17.1.2.112|2|916
1.3.6.1.4.1.9.2.10.17.1.2.113|2|113
1.3.6.1.4.1.9.2.10.17.1.2.114|2|917
1.3.6.1.4.1.9.2.10.17.1.2.115|2|1145
1.3.6.1.4.1.9.2.10.17.1.2.116|2|311
1.3.6.1.4.1.9.2.10.17.1.2.117|2|241
1.3.6.1.4.1.9.2.10.17.1.2.118|2|52
1.3.6.1.4.1.9.2.10.17.1.2.119|2|185
1.3.6.1.4.1.9.2.10.17.1.2.120|2|97
1.3.6.1.4.1.9.2.10.17.1.2.121|2|637
1.3.6.1.4.1.9.2.10.17.1.2.122|2|244
1.3.6.1.4.1.9.2.10.17.1.2.123|2|147
1.3.6.1.4.1.9.2.10.17.1.2.124|2|891
1.3.6.1.4.1.9.2.10.17.1.2.125|2|888
1.3.6.1.4.1.9.2.10.17.1.2.126|2|837
1.3.6.1.4.1.9.2.10.17.1.2.127|2|9714
1.3.6.1.4.1.9.2.10.17.1.2.128|2|881
1.3.6.1.4.1.9.2.10.17.1.2.129|2|286
1.3.6.1.4.1.9.2.10.17.1.2.130|2|97
1.3.6.1.4.1.9.2.10.17.1.2.131|2|303
1.3.6.1.4.1.9.2.10.17.1.2.132|2|625
1.3.6.1.4.1.9.2.10.17.1.2.133|2|966
1.3.6.1.4.1.9.2.10.17.1.2.134|2|161
1.3.6.1.4.1.9.2.10.17.1.2.135|2|966
1.3.6.1.4.1.9.2.10.17.1.2.136|2|203
1.3.6.1.4.1.9.2.10.17.1.2.137|2|104
1.3.6.1.4.1.9.2.10.17.1.2.138|2|125
1.3.6.1.4.1.9.2.10.17.1.2.139|2|1734
1.3.6.1.4.1.9.2.10.17.1.2.140|2|69498
1.3.6.1.4.1.9.2.10.17.1.2.141|2|278
1.3.6.1.4.1.9.2.10.17.1.2.142|2|188
1.3.6.1.4.1.9.2.10.17.1.2.143|2|1320
1.3.6.1.4.1.9.2.10.17.1.2.144|2|878
1.3.6.1.4.1.9.2.10.17.1.2.145|2|837
1.3.6.1.4.1.9.2.10.17.1.2.146|2|1167
1.3.6.1.4.1.9.2.10.17.1.2.147|2|966
1.3.6.1.4.1.9.2.10.17.1.2.148|2|80
1.3.6.1.4.1.9.2.10.17.1.2.149|2|59
1.3.6.1.4.1.9.2.10.17.1.2.150|2|1025
1.3.6.1.4.1.9.2.10.17.1.2.151|2|59
1.3.6.1.4.1.9.2.10.17.1.2.152|2|125
1.3.6.1.4.1.9.2.10.17.1.2.153|2|5604
1.3.6.1.4.1.9.2.10.17.1.2.154|2|909
1.3.6.1.4.1.9.2.10.17.1.2.155|2|325
1.3.6.1.4.1.9.2.10.17.1.2.156|2|182
1.3.6.1.4.1.9.2.10.17.1.2.157|2|1096
1.3.6.1.4.1.9.2.10.17.1.2.158|2|1415
1.3.6.1.4.1.9.2.10.17.1.2.159|2|515
1.3.6.1.4.1.9.2.10.17.1.2.160|2|1918
1.3.6.1.4.1.9.2.10.17.1.2.161|2|406
1.3.6.1.4.1.9.2.10.17.1.2.162|2|975
1.3.6.1.4.1.9.2.10.17.1.2.163|2|551
1.3.6.1.4.1.9.2.10.17.1.2.164|2|889
1.3.6.1.4.1.9.2.10.17.1.2.165|2|145
1.3.6.1.4.1.9.2.10.17.1.2.166|2|479
1.3.6.1.4.1.9.2.10.17.1.2.167|2|19923
1.3.6.1.4.1.9.2.10.17.1.2.168|2|1576
1.3.6.1.4.1.9.2.10.17.1.2.169|2|916
1.3.6.1.4.1.9.2.10.17.1.2.170|2|249
1.3.6.1.4.1.9.2.10.17.1.2.171|2|179
1.3.6.1.4.1.9.2.10.17.1.2.172|2|919
1.3.6.1.4.1.9.2.10.17.1.2.173|2|196
1.3.6.1.4.1.9.2.10.17.1.2.174|2|1616
1.3.6.1.4.1.9.2.10.17.1.2.175|2|148
1.3.6.1.4.1.9.2.10.17.1.2.176|2|244
1.3.6.1.4.1.9.2.10.17.1.2.177|2|4023
1.3.6.1.4.1.9.2.10.17.1.2.178|2|1772
1.3.6.1.4.1.9.2.10.17.1.2.179|2|909
1.3.6.1.4.1.9.2.10.17.1.2.180|2|479
1.3.6.1.4.1.9.2.10.17.1.2.181|2|916
1.3.6.1.4.1.9.2.10.17.1.2.182|2|199
1.3.6.1.4.1.9.2.10.17.1.2.183|2|3928
1.3.6.1.4.1.9.2.10.17.1.2.184|2|948
1.3.6.1.4.1.9.2.10.17.1.2.185|2|243
1.3.6.1.4.1.9.2.10.17.1.2.186|2|6389
1.3.6.1.4.1.9.2.10.17.1.2.187|2|922
1.3.6.1.4.1.9.2.10.17.1.2.188|2|1440
1.3.6.1.4.1.9.2.10.17.1.2.189|2|324
1.3.6.1.4.1.9.2.10.17.1.2.190|2|403
1.3.6.1.4.1.9.2.10.17.1.2.191|2|1686
1.3.6.1.4.1.9.2.10.17.1.2.192|2|1130
1.3.6.1.4.1.9.2.10.17.1.2.193|2|405
1.3.6.1.4.1.9.2.10.17.1.2.194|2|2335
1.3.6.1.4.1.9.2.10.17.1.2.195|2|274
1.3.6.1.4.1.9.2.10.17.1.2.196|2|1861
1.3.6.1.4.1.9.2.10.17.1.2.197|2|195
1.3.6.1.4.1.9.2.10.17.1.2.198|2|321
1.3.6.1.4.1.9.2.10.17.1.2.199|2|242
1.3.6.1.4.1.9.2.10.17.1.2.200|2|126
1.3.6.1.4.1.9.2.10.17.1.2.201|2|862
1.3.6.1.4.1.9.2.10.17.1.2.202|2|214
1.3.6.1.4.1.9.2.10.17.1.2.203|2|45
1.3.6.1.4.1.9.2.10.17.1.2.204|2|827
1.3.6.1.4.1.9.2.10.17.1.2.205|2|10193
1.3.6.1.4.1.9.2.10.17.1.2.206|2|909
1.3.6.1.4.1.9.2.10.17.1.2.207|2|902
1.3.6.1.4.1.9.2.10.17.1.2.208|2|964
1.3.6.1.4.1.9.2.10.17.1.2.209|2|139
1.3.6.1.4.1.9.2.10.17.1.2.210|2|827
1.3.6.1.4.1.9.2.10.17.1.2.211|2|891
1.3.6.1.4.1.9.2.10.17.1.2.212|2|7848
1.3.6.1.4.1.9.2.10.17.1.2.213|2|190
1.3.6.1.4.1.9.2.10.17.1.2.214|2|1021
1.3.6.1.4.1.9.2.10.17.1.2.215|2|827
1.3.6.1.4.1.9.2.10.17.1.2.216|2|45
1.3.6.1.4.1.9.2.10.17.1.2.217|2|128
1.3.6.1.4.1.9.2.10.17.1.2.218|2|9178
1.3.6.1.4.1.9.2.10.17.1.2.219|2|3132
1.3.6.1.4.1.9.2.10.17.1.2.220|2|1182
1.3.6.1.4.1.9.2.10.17.1.2.221|2|1106
1.3.6.1.4.1.9.2.10.17.1.2.222|2|180
1.3.6.1.4.1.9.2.10.17.1.2.223|2|15043
1.3.6.1.4.1.9.2.10.17.1.2.224|2|80
1.3.6.1.4.1.9.2.10.17.1.2.225|2|280
1.3.6.1.4.1.9.2.10.17.1.2.226|2|49
1.3.6.1.4.1.9.2.10.17.1.2.227|2|141
1.3.6.1.4.1.9.2.10.17.1.2.228|2|1433
1.3.6.1.4.1.9.2.10.17.1.2.229|2|155
1.3.6.1.4.1.9.2.10.17.1.2.230|2|240
1.3.6.1.4.1.9.2.10.17.1.2.231|2|242
1.3.6.1.4.1.9.2.10.17.1.2.232|2|478
1.3.6.1.4.1.9.2.10.17.1.2.233|2|1301
1.3.6.1.4.1.9.2.10.17.1.2.234|2|179
1.3.6.1.4.1.9.2.10.17.1.2.235|2|1086
1.3.6.1.4.1.9.2.10.17.1.2.236|2|9198
1.3.6.1.4.1.9.2.10.17.1.2.237|2|155
1.3.6.1.4.1.9.2.10.17.1.2.238|2|1125
1.3.6.1.4.1.9.2.10.17.1.2.239|2|244
1.3.6.1.4.1.9.2.10.17.1.2.240|2|113
1.3.6.1.4.1.9.2.10.17.1.2.241|2|274
1.3.6.1.4.1.9.2.10.17.1.2.242|2|908
1.3.6.1.4.1.9.2.10.17.1.2.243|2|97
1.3.6.1.4.1.9.2.10.17.1.2.244|2|0
1.3.6.1.4.1.9.2.10.17.1.2.245|2|145
1.3.6.1.4.1.9.2.10.17.1.2.246|2|8406
1.3.6.1.4.1.9.2.10.17.1.2.247|2|12291
1.3.6.1.4.1.9.2.10.17.1.2.248|2|62
1.3.6.1.4.1.9.2.10.17.1.2.249|2|941
1.3.6.1.4.1.9.2.10.17.1.2.250|2|954
1.3.6.1.4.1.9.2.10.17.1.2.251|2|719
1.3.6.1.4.1.9.2.10.17.1.2.252|2|909
1.3.6.1.4.1.9.2.10.17.1.2.253|2|909
1.3.6.1.4.1.9.2.10.17.1.2.254|2|8179
1.3.6.1.4.1.9.2.10.17.1.2.255|2|914
1.3.6.1.4.1.9.2.10.17.1.2.256|2|141
1.3.6.1.4.1.9.2.10.17.1.2.257|2|991
1.3.6.1.4.1.9.2.10.17.1.2.258|2|124
1.3.6.1.4.1.9.2.10.17.1.2.259|2|263
1.3.6.1.4.1.9.2.10.17.1.2.260|2|1158
1.3.6.1.4.1.9.2.10.17.1.2.261|2|10133
1.3.6.1.4.1.9.2.10.17.1.2.262|2|278
1.3.6.1.4.1.9.2.10.17.1.2.263|2|160
1.3.6.1.4.1.9.2.10.17.1.2.264|2|12201
1.3.6.1.4.1.9.2.10.17.1.2.265|2|244
1.3.6.1.4.1.9.2.10.17.1.2.266|2|773
1.3.6.1.4.1.9.2.10.17.1.2.267|2|1391
1.3.6.1.4.1.9.2.10.17.1.2.268|2|966
1.3.6.1.4.1.9.2.10.17.1.2.269|2|8467
1.3.6.1.4.1.9.2.10.17.1.2.270|2|890
1.3.6.1.4.1.9.2.10.17.1.2.271|2|1187
1.3.6.1.4.1.9.2.10.17.1.2.272|2|1066
1.3.6.1.4.1.9.2.10.17.1.2.273|2|1095
1.3.6.1.4.1.9.2.10.17.1.2.274|2|286
1.3.6.1.4.1.9.2.10.17.1.2.275|2|1329
1.3.6.1.4.1.9.2.10.17.1.2.276|2|547
1.3.6.1.4.1.9.2.10.17.1.2.277|2|957
1.3.6.1.4.1.9.2.10.17.1.2.278|2|1021
1.3.6.1.4.1.9.2.10.17.1.2.279|2|936
1.3.6.1.4.1.9.2.10.17.1.2.280|2|1141
1.3.6.1.4.1.9.2.10.17.1.2.281|2|35
1.3.6.1.4.1.9.2.10.17.1.2.282|2|552
1.3.6.1.4.1.9.2.10.17.1.2.283|2|101
1.3.6.1.4.1.9.2.10.17.1.2.284|2|1909
1.3.6.1.4.1.9.2.10.17.1.2.285|2|922
1.3.6.1.4.1.9.2.10.17.1.2.286|2|140
1.3.6.1.4.1.9.2.10.17.1.2.287|2|244
1.3.6.1.4.1.9.2.10.17.1.2.288|2|242
1.3.6.1.4.1.9.2.10.17.1.2.289|2|80
1.3.6.1.4.1.9.2.10.17.1.2.290|2|7003
1.3.6.1.4.1.9.2.10.17.1.2.291|2|1188
1.3.6.1.4.1.9.2.10.17.1.2.292|2|584
1.3.6.1.4.1.9.2.10.17.1.2.293|2|1319
1.3.6.1.4.1.9.2.10.17.1.2.294|2|8432
1.3.6.1.4.1.9.2.10.17.1.2.295|2|248
1.3.6.1.4.1.9.2.10.17.1.2.296|2|207
1.3.6.1.4.1.9.2.10.17.1.2.297|2|455
1.3.6.1.4.1.9.2.10.17.1.2.298|2|891
1.3.6.1.4.1.9.2.10.17.1.2.299|2|1021
1.3.6.1.4.1.9.2.10.17.1.2.300|2|1099
1.3.6.1.4.1.9.2.10.17.1.2.301|2|145
1.3.6.1.4.1.9.2.10.17.1.2.302|2|905
1.3.6.1.4.1.9.2.10.17.1.2.303|2|1120
1.3.6.1.4.1.9.2.10.17.1.2.304|2|179
1.3.6.1.4.1.9.2.10.17.1.2.305|2|113
1.3.6.1.4.1.9.2.10.17.1.2.306|2|1223
1.3.6.1.4.1.9.2.10.17.1.2.307|2|916
1.3.6.1.4.1.9.2.10.17.1.2.308|2|1059
1.3.6.1.4.1.9.2.10.17.1.2.309|2|909
1.3.6.1.4.1.9.2.10.17.1.2.310|2|244
1.3.6.1.4.1.9.2.10.17.1.2.311|2|596
1.3.6.1.4.1.9.2.10.17.1.2.312|2|45
1.3.6.1.4.1.9.2.10.17.1.2.313|2|1742
1.3.6.1.4.1.9.2.10.17.1.2.314|2|240
1.3.6.1.4.1.9.2.10.17.1.2.315|2|113
1.3.6.1.4.1.9.2.10.17.1.2.316|2|890
1.3.6.1.4.1.9.2.10.17.1.2.317|2|6636
1.3.6.1.4.1.9.2.10.17.1.2.318|2|10157
1.3.6.1.4.1.9.2.10.17.1.2.319|2|53
1.3.6.1.4.1.9.2.10.17.1.2.320|2|997
1.3.6.1.4.1.9.2.10.17.1.2.321|2|1070
1.3.6.1.4.1.9.2.10.17.1.2.322|2|1612
1.3.6.1.4.1.9.2.10.17.1.2.323|2|80
1.3.6.1.4.1.9.2.10.17.1.2.324|2|966
1.3.6.1.4.1.9.2.10.17.1.2.325|2|155
1.3.6.1.4.1.9.2.10.17.1.2.326|2|465
1.3.6.1.4.1.9.2.10.17.1.2.327|2|186
1.3.6.1.4.1.9.2.10.17.1.2.328|2|986
1.3.6.1.4.1.9.2.10.17.1.2.329|2|45
1.3.6.1.4.1.9.2.10.17.1.2.330|2|184
1.3.6.1.4.1.9.2.10.17.1.2.331|2|1060
1.3.6.1.4.1.9.2.10.17.1.2.332|2|167
1.3.6.1.4.1.9.2.10.17.1.2.333|2|1717
1.3.6.1.4.1.9.2.10.17.1.2.334|2|852
1.3.6.1.4.1.9.2.10.17.1.2.335|2|1087
1.3.6.1.4.1.9.2.10.17.1.2.336|2|149
1.3.6.1.4.1.9.2.10.17.1.2.337|2|218
1.3.6.1.4.1.9.2.10.17.1.2.338|2|249
1.3.6.1.4.1.9.2.10.17.1.2.339|2|244
1.3.6.1.4.1.9.2.10.17.1.2.340|2|966
1.3.6.1.4.1.9.2.10.17.1.2.341|2|289
1.3.6.1.4.1.9.2.10.17.1.2.342|2|1385
1.3.6.1.4.1.9.2.10.17.1.2.343|2|1291
1.3.6.1.4.1.9.2.10.17.1.2.344|2|1021
1.3.6.1.4.1.9.2.10.17.1.2.345|2|916
1.3.6.1.4.1.9.2.10.17.1.2.346|2|1021
1.3.6.1.4.1.9.2.10.17.1.2.347|2|476
1.3.6.1.4.1.9.2.10.17.1.2.348|2|1021
1.3.6.1.4.1.9.2.10.17.1.2.349|2|1062
1.3.6.1.4.1.9.2.10.17.1.2.350|2|155
1.3.6.1.4.1.9.2.10.17.1.2.351|2|2041
1.3.6.1.4.1.9.2.10.17.1.2.352|2|113
1.3.6.1.4.1.9.2.10.17.1.2.353|2|0
1.3.6.1.4.1.9.2.10.17.1.2.354|2|296
1.3.6.1.4.1.9.2.10.17.1.2.355|2|909
1.3.6.1.4.1.9.2.10.17.1.2.356|2|199
1.3.6.1.4.1.9.2.10.17.1.2.357|2|244
1.3.6.1.4.1.9.2.10.17.1.2.358|2|1840
1.3.6.1.4.1.9.2.10.17.1.2.359|2|7769
1.3.6.1.4.1.9.2.10.17.1.2.360|2|242
1.3.6.1.4.1.9.2.10.17.1.2.361|2|1135
1.3.6.1.4.1.9.2.10.17.1.2.362|2|579
1.3.6.1.4.1.9.2.10.17.1.2.363|2|41897
1.3.6.1.4.1.9.2.10.17.1.2.364|2|41897
1.3.6.1.4.1.9.2.10.17.1.2.366|2|10930
1.3.6.1.4.1.9.2.10.17.1.3.1|2|1
1.3.6.1.4.1.9.2.10.17.1.3.2|2|1
1.3.6.1.4.1.9.2.10.17.1.3.3|2|1
1.3.6.1.4.1.9.2.10.17.1.3.4|2|1
1.3.6.1.4.1.9.2.10.17.1.3.5|2|1
1.3.6.1.4.1.9.2.10.17.1.3.7|2|1
1.3.6.1.4.1.9.2.10.17.1.3.8|2|1
1.3.6.1.4.1.9.2.10.17.1.3.9|2|1
1.3.6.1.4.1.9.2.10.17.1.3.10|2|1
1.3.6.1.4.1.9.2.10.17.1.3.11|2|1
1.3.6.1.4.1.9.2.10.17.1.3.12|2|1
1.3.6.1.4.1.9.2.10.17.1.3.13|2|1
1.3.6.1.4.1.9.2.10.17.1.3.14|2|1
1.3.6.1.4.1.9.2.10.17.1.3.15|2|1
1.3.6.1.4.1.9.2.10.17.1.3.16|2|1
1.3.6.1.4.1.9.2.10.17.1.3.17|2|1
1.3.6.1.4.1.9.2.10.17.1.3.18|2|1
1.3.6.1.4.1.9.2.10.17.1.3.19|2|1
1.3.6.1.4.1.9.2.10.17.1.3.20|2|1
1.3.6.1.4.1.9.2.10.17.1.3.21|2|1
1.3.6.1.4.1.9.2.10.17.1.3.22|2|1
1.3.6.1.4.1.9.2.10.17.1.3.23|2|1
1.3.6.1.4.1.9.2.10.17.1.3.24|2|1
1.3.6.1.4.1.9.2.10.17.1.3.25|2|1
1.3.6.1.4.1.9.2.10.17.1.3.26|2|1
1.3.6.1.4.1.9.2.10.17.1.3.27|2|1
1.3.6.1.4.1.9.2.10.17.1.3.28|2|1
1.3.6.1.4.1.9.2.10.17.1.3.29|2|1
1.3.6.1.4.1.9.2.10.17.1.3.30|2|1
1.3.6.1.4.1.9.2.10.17.1.3.31|2|1
1.3.6.1.4.1.9.2.10.17.1.3.32|2|1
1.3.6.1.4.1.9.2.10.17.1.3.33|2|1
1.3.6.1.4.1.9.2.10.17.1.3.34|2|1
1.3.6.1.4.1.9.2.10.17.1.3.35|2|1
1.3.6.1.4.1.9.2.10.17.1.3.36|2|1
1.3.6.1.4.1.9.2.10.17.1.3.37|2|1
1.3.6.1.4.1.9.2.10.17.1.3.38|2|1
1.3.6.1.4.1.9.2.10.17.1.3.39|2|1
1.3.6.1.4.1.9.2.10.17.1.3.40|2|1
1.3.6.1.4.1.9.2.10.17.1.3.41|2|1
1.3.6.1.4.1.9.2.10.17.1.3.42|2|1
1.3.6.1.4.1.9.2.10.17.1.3.43|2|1
1.3.6.1.4.1.9.2.10.17.1.3.44|2|1
1.3.6.1.4.1.9.2.10.17.1.3.45|2|1
1.3.6.1.4.1.9.2.10.17.1.3.46|2|1
1.3.6.1.4.1.9.2.10.17.1.3.47|2|1
1.3.6.1.4.1.9.2.10.17.1.3.48|2|1
1.3.6.1.4.1.9.2.10.17.1.3.49|2|1
1.3.6.1.4.1.9.2.10.17.1.3.50|2|1
1.3.6.1.4.1.9.2.10.17.1.3.51|2|1
1.3.6.1.4.1.9.2.10.17.1.3.52|2|1
1.3.6.1.4.1.9.2.10.17.1.3.53|2|1
1.3.6.1.4.1.9.2.10.17.1.3.54|2|1
1.3.6.1.4.1.9.2.10.17.1.3.55|2|1
1.3.6.1.4.1.9.2.10.17.1.3.56|2|1
1.3.6.1.4.1.9.2.10.17.1.3.57|2|1
1.3.6.1.4.1.9.2.10.17.1.3.58|2|1
1.3.6.1.4.1.9.2.10.17.1.3.59|2|1
1.3.6.1.4.1.9.2.10.17.1.3.60|2|1
1.3.6.1.4.1.9.2.10.17.1.3.61|2|1
1.3.6.1.4.1.9.2.10.17.1.3.62|2|1
1.3.6.1.4.1.9.2.10.17.1.3.63|2|1
1.3.6.1.4.1.9.2.10.17.1.3.64|2|1
1.3.6.1.4.1.9.2.10.17.1.3.65|2|1
1.3.6.1.4.1.9.2.10.17.1.3.66|2|1
1.3.6.1.4.1.9.2.10.17.1.3.67|2|1
1.3.6.1.4.1.9.2.10.17.1.3.68|2|1
1.3.6.1.4.1.9.2.10.17.1.3.69|2|1
1.3.6.1.4.1.9.2.10.17.1.3.70|2|1
1.3.6.1.4.1.9.2.10.17.1.3.71|2|1
1.3.6.1.4.1.9.2.10.17.1.3.72|2|1
1.3.6.1.4.1.9.2.10.17.1.3.73|2|1
1.3.6.1.4.1.9.2.10.17.1.3.74|2|1
1.3.6.1.4.1.9.2.10.17.1.3.75|2|1
1.3.6.1.4.1.9.2.10.17.1.3.76|2|1
1.3.6.1.4.1.9.2.10.17.1.3.77|2|1
1.3.6.1.4.1.9.2.10.17.1.3.78|2|1
1.3.6.1.4.1.9.2.10.17.1.3.79|2|1
1.3.6.1.4.1.9.2.10.17.1.3.80|2|1
1.3.6.1.4.1.9.2.10.17.1.3.81|2|1
1.3.6.1.4.1.9.2.10.17.1.3.82|2|1
1.3.6.1.4.1.9.2.10.17.1.3.83|2|1
1.3.6.1.4.1.9.2.10.17.1.3.84|2|1
1.3.6.1.4.1.9.2.10.17.1.3.85|2|1
1.3.6.1.4.1.9.2.10.17.1.3.86|2|1
1.3.6.1.4.1.9.2.10.17.1.3.87|2|1
1.3.6.1.4.1.9.2.10.17.1.3.88|2|1
1.3.6.1.4.1.9.2.10.17.1.3.89|2|1
1.3.6.1.4.1.9.2.10.17.1.3.90|2|1
1.3.6.1.4.1.9.2.10.17.1.3.91|2|1
1.3.6.1.4.1.9.2.10.17.1.3.92|2|1
1.3.6.1.4.1.9.2.10.17.1.3.93|2|1
1.3.6.1.4.1.9.2.10.17.1.3.94|2|1
1.3.6.1.4.1.9.2.10.17.1.3.95|2|1
1.3.6.1.4.1.9.2.10.17.1.3.96|2|1
1.3.6.1.4.1.9.2.10.17.1.3.97|2|1
1.3.6.1.4.1.9.2.10.17.1.3.98|2|1
1.3.6.1.4.1.9.2.10.17.1.3.99|2|1
1.3.6.1.4.1.9.2.10.17.1.3.100|2|1
1.3.6.1.4.1.9.2.10.17.1.3.101|2|1
1.3.6.1.4.1.9.2.10.17.1.3.102|2|1
1.3.6.1.4.1.9.2.10.17.1.3.103|2|1
1.3.6.1.4.1.9.2.10.17.1.3.104|2|1
1.3.6.1.4.1.9.2.10.17.1.3.105|2|1
1.3.6.1.4.1.9.2.10.17.1.3.106|2|1
1.3.6.1.4.1.9.2.10.17.1.3.107|2|1
1.3.6.1.4.1.9.2.10.17.1.3.108|2|1
1.3.6.1.4.1.9.2.10.17.1.3.109|2|1
1.3.6.1.4.1.9.2.10.17.1.3.110|2|1
1.3.6.1.4.1.9.2.10.17.1.3.111|2|1
1.3.6.1.4.1.9.2.10.17.1.3.112|2|1
1.3.6.1.4.1.9.2.10.17.1.3.113|2|1
1.3.6.1.4.1.9.2.10.17.1.3.114|2|1
1.3.6.1.4.1.9.2.10.17.1.3.115|2|1
1.3.6.1.4.1.9.2.10.17.1.3.116|2|1
1.3.6.1.4.1.9.2.10.17.1.3.117|2|1
1.3.6.1.4.1.9.2.10.17.1.3.118|2|1
1.3.6.1.4.1.9.2.10.17.1.3.119|2|1
1.3.6.1.4.1.9.2.10.17.1.3.120|2|1
1.3.6.1.4.1.9.2.10.17.1.3.121|2|1
1.3.6.1.4.1.9.2.10.17.1.3.122|2|1
1.3.6.1.4.1.9.2.10.17.1.3.123|2|1
1.3.6.1.4.1.9.2.10.17.1.3.124|2|1
1.3.6.1.4.1.9.2.10.17.1.3.125|2|1
1.3.6.1.4.1.9.2.10.17.1.3.126|2|1
1.3.6.1.4.1.9.2.10.17.1.3.127|2|1
1.3.6.1.4.1.9.2.10.17.1.3.128|2|1
1.3.6.1.4.1.9.2.10.17.1.3.129|2|1
1.3.6.1.4.1.9.2.10.17.1.3.130|2|1
1.3.6.1.4.1.9.2.10.17.1.3.131|2|1
1.3.6.1.4.1.9.2.10.17.1.3.132|2|1
1.3.6.1.4.1.9.2.10.17.1.3.133|2|1
1.3.6.1.4.1.9.2.10.17.1.3.134|2|1
1.3.6.1.4.1.9.2.10.17.1.3.135|2|1
1.3.6.1.4.1.9.2.10.17.1.3.136|2|1
1.3.6.1.4.1.9.2.10.17.1.3.137|2|1
1.3.6.1.4.1.9.2.10.17.1.3.138|2|1
1.3.6.1.4.1.9.2.10.17.1.3.139|2|1
1.3.6.1.4.1.9.2.10.17.1.3.140|2|1
1.3.6.1.4.1.9.2.10.17.1.3.141|2|1
1.3.6.1.4.1.9.2.10.17.1.3.142|2|1
1.3.6.1.4.1.9.2.10.17.1.3.143|2|1
1.3.6.1.4.1.9.2.10.17.1.3.144|2|1
1.3.6.1.4.1.9.2.10.17.1.3.145|2|1
1.3.6.1.4.1.9.2.10.17.1.3.146|2|1
1.3.6.1.4.1.9.2.10.17.1.3.147|2|1
1.3.6.1.4.1.9.2.10.17.1.3.148|2|1
1.3.6.1.4.1.9.2.10.17.1.3.149|2|1
1.3.6.1.4.1.9.2.10.17.1.3.150|2|1
1.3.6.1.4.1.9.2.10.17.1.3.151|2|1
1.3.6.1.4.1.9.2.10.17.1.3.152|2|1
1.3.6.1.4.1.9.2.10.17.1.3.153|2|1
1.3.6.1.4.1.9.2.10.17.1.3.154|2|1
1.3.6.1.4.1.9.2.10.17.1.3.155|2|1
1.3.6.1.4.1.9.2.10.17.1.3.156|2|1
1.3.6.1.4.1.9.2.10.17.1.3.157|2|1
1.3.6.1.4.1.9.2.10.17.1.3.158|2|1
1.3.6.1.4.1.9.2.10.17.1.3.159|2|1
1.3.6.1.4.1.9.2.10.17.1.3.160|2|1
1.3.6.1.4.1.9.2.10.17.1.3.161|2|1
1.3.6.1.4.1.9.2.10.17.1.3.162|2|1
1.3.6.1.4.1.9.2.10.17.1.3.163|2|1
1.3.6.1.4.1.9.2.10.17.1.3.164|2|1
1.3.6.1.4.1.9.2.10.17.1.3.165|2|1
1.3.6.1.4.1.9.2.10.17.1.3.166|2|1
1.3.6.1.4.1.9.2.10.17.1.3.167|2|1
1.3.6.1.4.1.9.2.10.17.1.3.168|2|1
1.3.6.1.4.1.9.2.10.17.1.3.169|2|1
1.3.6.1.4.1.9.2.10.17.1.3.170|2|1
1.3.6.1.4.1.9.2.10.17.1.3.171|2|1
1.3.6.1.4.1.9.2.10.17.1.3.172|2|1
1.3.6.1.4.1.9.2.10.17.1.3.173|2|1
1.3.6.1.4.1.9.2.10.17.1.3.174|2|1
1.3.6.1.4.1.9.2.10.17.1.3.175|2|1
1.3.6.1.4.1.9.2.10.17.1.3.176|2|1
1.3.6.1.4.1.9.2.10.17.1.3.177|2|1
1.3.6.1.4.1.9.2.10.17.1.3.178|2|1
1.3.6.1.4.1.9.2.10.17.1.3.179|2|1
1.3.6.1.4.1.9.2.10.17.1.3.180|2|1
1.3.6.1.4.1.9.2.10.17.1.3.181|2|1
1.3.6.1.4.1.9.2.10.17.1.3.182|2|1
1.3.6.1.4.1.9.2.10.17.1.3.183|2|1
1.3.6.1.4.1.9.2.10.17.1.3.184|2|1
1.3.6.1.4.1.9.2.10.17.1.3.185|2|1
1.3.6.1.4.1.9.2.10.17.1.3.186|2|1
1.3.6.1.4.1.9.2.10.17.1.3.187|2|1
1.3.6.1.4.1.9.2.10.17.1.3.188|2|1
1.3.6.1.4.1.9.2.10.17.1.3.189|2|1
1.3.6.1.4.1.9.2.10.17.1.3.190|2|1
1.3.6.1.4.1.9.2.10.17.1.3.191|2|1
1.3.6.1.4.1.9.2.10.17.1.3.192|2|1
1.3.6.1.4.1.9.2.10.17.1.3.193|2|1
1.3.6.1.4.1.9.2.10.17.1.3.194|2|1
1.3.6.1.4.1.9.2.10.17.1.3.195|2|1
1.3.6.1.4.1.9.2.10.17.1.3.196|2|1
1.3.6.1.4.1.9.2.10.17.1.3.197|2|1
1.3.6.1.4.1.9.2.10.17.1.3.198|2|1
1.3.6.1.4.1.9.2.10.17.1.3.199|2|1
1.3.6.1.4.1.9.2.10.17.1.3.200|2|1
1.3.6.1.4.1.9.2.10.17.1.3.201|2|1
1.3.6.1.4.1.9.2.10.17.1.3.202|2|1
1.3.6.1.4.1.9.2.10.17.1.3.203|2|1
1.3.6.1.4.1.9.2.10.17.1.3.204|2|1
1.3.6.1.4.1.9.2.10.17.1.3.205|2|1
1.3.6.1.4.1.9.2.10.17.1.3.206|2|1
1.3.6.1.4.1.9.2.10.17.1.3.207|2|1
1.3.6.1.4.1.9.2.10.17.1.3.208|2|1
1.3.6.1.4.1.9.2.10.17.1.3.209|2|1
1.3.6.1.4.1.9.2.10.17.1.3.210|2|1
1.3.6.1.4.1.9.2.10.17.1.3.211|2|1
1.3.6.1.4.1.9.2.10.17.1.3.212|2|1
1.3.6.1.4.1.9.2.10.17.1.3.213|2|1
1.3.6.1.4.1.9.2.10.17.1.3.214|2|1
1.3.6.1.4.1.9.2.10.17.1.3.215|2|1
1.3.6.1.4.1.9.2.10.17.1.3.216|2|1
1.3.6.1.4.1.9.2.10.17.1.3.217|2|1
1.3.6.1.4.1.9.2.10.17.1.3.218|2|1
1.3.6.1.4.1.9.2.10.17.1.3.219|2|1
1.3.6.1.4.1.9.2.10.17.1.3.220|2|1
1.3.6.1.4.1.9.2.10.17.1.3.221|2|1
1.3.6.1.4.1.9.2.10.17.1.3.222|2|1
1.3.6.1.4.1.9.2.10.17.1.3.223|2|1
1.3.6.1.4.1.9.2.10.17.1.3.224|2|1
1.3.6.1.4.1.9.2.10.17.1.3.225|2|1
1.3.6.1.4.1.9.2.10.17.1.3.226|2|1
1.3.6.1.4.1.9.2.10.17.1.3.227|2|1
1.3.6.1.4.1.9.2.10.17.1.3.228|2|1
1.3.6.1.4.1.9.2.10.17.1.3.229|2|1
1.3.6.1.4.1.9.2.10.17.1.3.230|2|1
1.3.6.1.4.1.9.2.10.17.1.3.231|2|1
1.3.6.1.4.1.9.2.10.17.1.3.232|2|1
1.3.6.1.4.1.9.2.10.17.1.3.233|2|1
1.3.6.1.4.1.9.2.10.17.1.3.234|2|1
1.3.6.1.4.1.9.2.10.17.1.3.235|2|1
1.3.6.1.4.1.9.2.10.17.1.3.236|2|1
1.3.6.1.4.1.9.2.10.17.1.3.237|2|1
1.3.6.1.4.1.9.2.10.17.1.3.238|2|1
1.3.6.1.4.1.9.2.10.17.1.3.239|2|1
1.3.6.1.4.1.9.2.10.17.1.3.240|2|1
1.3.6.1.4.1.9.2.10.17.1.3.241|2|1
1.3.6.1.4.1.9.2.10.17.1.3.242|2|1
1.3.6.1.4.1.9.2.10.17.1.3.243|2|1
1.3.6.1.4.1.9.2.10.17.1.3.244|2|1
1.3.6.1.4.1.9.2.10.17.1.3.245|2|1
1.3.6.1.4.1.9.2.10.17.1.3.246|2|1
1.3.6.1.4.1.9.2.10.17.1.3.247|2|1
1.3.6.1.4.1.9.2.10.17.1.3.248|2|1
1.3.6.1.4.1.9.2.10.17.1.3.249|2|1
1.3.6.1.4.1.9.2.10.17.1.3.250|2|1
1.3.6.1.4.1.9.2.10.17.1.3.251|2|1
1.3.6.1.4.1.9.2.10.17.1.3.252|2|1
1.3.6.1.4.1.9.2.10.17.1.3.253|2|1
1.3.6.1.4.1.9.2.10.17.1.3.254|2|1
1.3.6.1.4.1.9.2.10.17.1.3.255|2|1
1.3.6.1.4.1.9.2.10.17.1.3.256|2|1
1.3.6.1.4.1.9.2.10.17.1.3.257|2|1
1.3.6.1.4.1.9.2.10.17.1.3.258|2|1
1.3.6.1.4.1.9.2.10.17.1.3.259|2|1
1.3.6.1.4.1.9.2.10.17.1.3.260|2|1
1.3.6.1.4.1.9.2.10.17.1.3.261|2|1
1.3.6.1.4.1.9.2.10.17.1.3.262|2|1
1.3.6.1.4.1.9.2.10.17.1.3.263|2|1
1.3.6.1.4.1.9.2.10.17.1.3.264|2|1
1.3.6.1.4.1.9.2.10.17.1.3.265|2|1
1.3.6.1.4.1.9.2.10.17.1.3.266|2|1
1.3.6.1.4.1.9.2.10.17.1.3.267|2|1
1.3.6.1.4.1.9.2.10.17.1.3.268|2|1
1.3.6.1.4.1.9.2.10.17.1.3.269|2|1
1.3.6.1.4.1.9.2.10.17.1.3.270|2|1
1.3.6.1.4.1.9.2.10.17.1.3.271|2|1
1.3.6.1.4.1.9.2.10.17.1.3.272|2|1
1.3.6.1.4.1.9.2.10.17.1.3.273|2|1
1.3.6.1.4.1.9.2.10.17.1.3.274|2|1
1.3.6.1.4.1.9.2.10.17.1.3.275|2|1
1.3.6.1.4.1.9.2.10.17.1.3.276|2|1
1.3.6.1.4.1.9.2.10.17.1.3.277|2|1
1.3.6.1.4.1.9.2.10.17.1.3.278|2|1
1.3.6.1.4.1.9.2.10.17.1.3.279|2|1
1.3.6.1.4.1.9.2.10.17.1.3.280|2|1
1.3.6.1.4.1.9.2.10.17.1.3.281|2|1
1.3.6.1.4.1.9.2.10.17.1.3.282|2|1
1.3.6.1.4.1.9.2.10.17.1.3.283|2|1
1.3.6.1.4.1.9.2.10.17.1.3.284|2|1
1.3.6.1.4.1.9.2.10.17.1.3.285|2|1
1.3.6.1.4.1.9.2.10.17.1.3.286|2|1
1.3.6.1.4.1.9.2.10.17.1.3.287|2|1
1.3.6.1.4.1.9.2.10.17.1.3.288|2|1
1.3.6.1.4.1.9.2.10.17.1.3.289|2|1
1.3.6.1.4.1.9.2.10.17.1.3.290|2|1
1.3.6.1.4.1.9.2.10.17.1.3.291|2|1
1.3.6.1.4.1.9.2.10.17.1.3.292|2|1
1.3.6.1.4.1.9.2.10.17.1.3.293|2|1
1.3.6.1.4.1.9.2.10.17.1.3.294|2|1
1.3.6.1.4.1.9.2.10.17.1.3.295|2|1
1.3.6.1.4.1.9.2.10.17.1.3.296|2|1
1.3.6.1.4.1.9.2.10.17.1.3.297|2|1
1.3.6.1.4.1.9.2.10.17.1.3.298|2|1
1.3.6.1.4.1.9.2.10.17.1.3.299|2|1
1.3.6.1.4.1.9.2.10.17.1.3.300|2|1
1.3.6.1.4.1.9.2.10.17.1.3.301|2|1
1.3.6.1.4.1.9.2.10.17.1.3.302|2|1
1.3.6.1.4.1.9.2.10.17.1.3.303|2|1
1.3.6.1.4.1.9.2.10.17.1.3.304|2|1
1.3.6.1.4.1.9.2.10.17.1.3.305|2|1
1.3.6.1.4.1.9.2.10.17.1.3.306|2|1
1.3.6.1.4.1.9.2.10.17.1.3.307|2|1
1.3.6.1.4.1.9.2.10.17.1.3.308|2|1
1.3.6.1.4.1.9.2.10.17.1.3.309|2|1
1.3.6.1.4.1.9.2.10.17.1.3.310|2|1
1.3.6.1.4.1.9.2.10.17.1.3.311|2|1
1.3.6.1.4.1.9.2.10.17.1.3.312|2|1
1.3.6.1.4.1.9.2.10.17.1.3.313|2|1
1.3.6.1.4.1.9.2.10.17.1.3.314|2|1
1.3.6.1.4.1.9.2.10.17.1.3.315|2|1
1.3.6.1.4.1.9.2.10.17.1.3.316|2|1
1.3.6.1.4.1.9.2.10.17.1.3.317|2|1
1.3.6.1.4.1.9.2.10.17.1.3.318|2|1
1.3.6.1.4.1.9.2.10.17.1.3.319|2|1
1.3.6.1.4.1.9.2.10.17.1.3.320|2|1
1.3.6.1.4.1.9.2.10.17.1.3.321|2|1
1.3.6.1.4.1.9.2.10.17.1.3.322|2|1
1.3.6.1.4.1.9.2.10.17.1.3.323|2|1
1.3.6.1.4.1.9.2.10.17.1.3.324|2|1
1.3.6.1.4.1.9.2.10.17.1.3.325|2|1
1.3.6.1.4.1.9.2.10.17.1.3.326|2|1
1.3.6.1.4.1.9.2.10.17.1.3.327|2|1
1.3.6.1.4.1.9.2.10.17.1.3.328|2|1
1.3.6.1.4.1.9.2.10.17.1.3.329|2|1
1.3.6.1.4.1.9.2.10.17.1.3.330|2|1
1.3.6.1.4.1.9.2.10.17.1.3.331|2|1
1.3.6.1.4.1.9.2.10.17.1.3.332|2|1
1.3.6.1.4.1.9.2.10.17.1.3.333|2|1
1.3.6.1.4.1.9.2.10.17.1.3.334|2|1
1.3.6.1.4.1.9.2.10.17.1.3.335|2|1
1.3.6.1.4.1.9.2.10.17.1.3.336|2|1
1.3.6.1.4.1.9.2.10.17.1.3.337|2|1
1.3.6.1.4.1.9.2.10.17.1.3.338|2|1
1.3.6.1.4.1.9.2.10.17.1.3.339|2|1
1.3.6.1.4.1.9.2.10.17.1.3.340|2|1
1.3.6.1.4.1.9.2.10.17.1.3.341|2|1
1.3.6.1.4.1.9.2.10.17.1.3.342|2|1
1.3.6.1.4.1.9.2.10.17.1.3.343|2|1
1.3.6.1.4.1.9.2.10.17.1.3.344|2|1
1.3.6.1.4.1.9.2.10.17.1.3.345|2|1
1.3.6.1.4.1.9.2.10.17.1.3.346|2|1
1.3.6.1.4.1.9.2.10.17.1.3.347|2|1
1.3.6.1.4.1.9.2.10.17.1.3.348|2|1
1.3.6.1.4.1.9.2.10.17.1.3.349|2|1
1.3.6.1.4.1.9.2.10.17.1.3.350|2|1
1.3.6.1.4.1.9.2.10.17.1.3.351|2|1
1.3.6.1.4.1.9.2.10.17.1.3.352|2|1
1.3.6.1.4.1.9.2.10.17.1.3.353|2|1
1.3.6.1.4.1.9.2.10.17.1.3.354|2|1
1.3.6.1.4.1.9.2.10.17.1.3.355|2|1
1.3.6.1.4.1.9.2.10.17.1.3.356|2|1
1.3.6.1.4.1.9.2.10.17.1.3.357|2|1
1.3.6.1.4.1.9.2.10.17.1.3.358|2|1
1.3.6.1.4.1.9.2.10.17.1.3.359|2|1
1.3.6.1.4.1.9.2.10.17.1.3.360|2|1
1.3.6.1.4.1.9.2.10.17.1.3.361|2|1
1.3.6.1.4.1.9.2.10.17.1.3.362|2|1
1.3.6.1.4.1.9.2.10.17.1.3.363|2|1
1.3.6.1.4.1.9.2.10.17.1.3.364|2|1
1.3.6.1.4.1.9.2.10.17.1.3.366|2|1
1.3.6.1.4.1.9.3.6.1.0|2|374
1.3.6.1.4.1.9.3.6.2.0|4|J0
1.3.6.1.4.1.9.3.6.3.0|4|CAT0952N20R
1.3.6.1.4.1.9.3.6.4.0|4x|0d0a426f6f7473747261702070726f6772616d20697320433337353020626f6f74206c6f616465720d0a
1.3.6.1.4.1.9.3.6.5.0|4x|433337353020426f6f74204c6f61646572202843333735302d48424f4f542d4d292056657273696f6e2031322e32283434295345352c2052454c4541534520534f4654574152452028666331290d0a436f6d70696c6564205765642030372d4a616e2d30392031363a303820627920676572656464790d0a
1.3.6.1.4.1.9.3.6.6.0|2|134217728
1.3.6.1.4.1.9.3.6.7.0|2|524288
1.3.6.1.4.1.9.3.6.8.0|2|19534
1.3.6.1.4.1.9.3.6.9.0|2|15
1.3.6.1.4.1.9.3.6.10.0|2|15
1.3.6.1.4.1.9.3.6.12.0|2|0
1.3.6.1.4.1.9.3.6.14.0|2|1
1.3.6.1.4.1.9.3.6.15.0|67|0
1.3.6.1.4.1.9.5.1.1.8.0|2|0
1.3.6.1.4.1.9.5.1.1.19.0|2|0
1.3.6.1.4.1.9.5.1.1.20.0|67|0
1.3.6.1.4.1.9.5.1.1.53.0|2|0
1.3.6.1.4.1.9.5.1.2.1.0|2|1
1.3.6.1.4.1.9.5.1.2.2.0|2|1
1.3.6.1.4.1.9.5.1.2.3.0|2|1
1.3.6.1.4.1.9.5.1.2.4.0|2|2
1.3.6.1.4.1.9.5.1.2.5.0|2|0
1.3.6.1.4.1.9.5.1.2.6.0|2|29
1.3.6.1.4.1.9.5.1.2.7.0|2|1
1.3.6.1.4.1.9.5.1.2.8.0|2|0
1.3.6.1.4.1.9.5.1.2.9.0|2|2
1.3.6.1.4.1.9.5.1.2.10.0|2|0
1.3.6.1.4.1.9.5.1.2.11.0|2|1
1.3.6.1.4.1.9.5.1.2.12.0|2|1
1.3.6.1.4.1.9.5.1.2.13.0|2|1
1.3.6.1.4.1.9.5.1.2.14.0|2|9
1.3.6.1.4.1.9.5.1.2.15.0|2|4
1.3.6.1.4.1.9.5.1.2.16.0|4x|57532d43333735302d343850532d53
1.3.6.1.4.1.9.5.1.2.19.0|4|CAT0952N20R
1.3.6.1.4.1.9.5.1.3.1.1.1.3|2|3
1.3.6.1.4.1.9.5.1.3.1.1.2.3|2|1
1.3.6.1.4.1.9.5.1.3.1.1.10.3|2|2
1.3.6.1.4.1.9.5.1.3.1.1.11.3|2|0
1.3.6.1.4.1.9.5.1.3.1.1.12.3|2|1
1.3.6.1.4.1.9.5.1.3.1.1.13.3|4|
1.3.6.1.4.1.9.5.1.3.1.1.14.3|2|52
1.3.6.1.4.1.9.5.1.3.1.1.15.3|4x|0201010101020101010201020102010101010101010101010101010101010101010101010101010101010101010101020101010102
1.3.6.1.4.1.9.5.1.3.1.1.16.3|2|2
1.3.6.1.4.1.9.5.1.3.1.1.17.3|4x|57532d43333735302d343850
1.3.6.1.4.1.9.5.1.3.1.1.18.3|4|J0
1.3.6.1.4.1.9.5.1.3.1.1.19.3|4x|31322e322835352953453130
1.3.6.1.4.1.9.5.1.3.1.1.20.3|4x|31322e322835352953453130
1.3.6.1.4.1.9.5.1.3.1.1.21.3|2|1
1.3.6.1.4.1.9.5.1.3.1.1.22.3|64x|00000000
1.3.6.1.4.1.9.5.1.3.1.1.23.3|2|0
1.3.6.1.4.1.9.5.1.3.1.1.24.3|2|2
1.3.6.1.4.1.9.5.1.3.1.1.26.3|4|CAT0952N20R
1.3.6.1.4.1.9.5.1.4.1.1.1.3.1|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.2|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.3|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.4|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.5|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.6|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.7|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.8|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.9|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.10|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.11|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.12|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.13|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.14|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.15|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.16|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.17|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.18|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.19|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.20|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.21|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.22|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.23|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.24|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.25|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.26|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.27|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.28|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.29|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.30|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.31|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.32|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.33|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.34|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.35|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.36|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.37|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.38|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.39|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.40|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.41|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.42|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.43|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.44|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.45|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.46|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.47|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.48|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.49|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.50|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.51|2|3
1.3.6.1.4.1.9.5.1.4.1.1.1.3.52|2|3
1.3.6.1.4.1.9.5.1.4.1.1.2.3.1|2|1
1.3.6.1.4.1.9.5.1.4.1.1.2.3.2|2|2
1.3.6.1.4.1.9.5.1.4.1.1.2.3.3|2|3
1.3.6.1.4.1.9.5.1.4.1.1.2.3.4|2|4
1.3.6.1.4.1.9.5.1.4.1.1.2.3.5|2|5
1.3.6.1.4.1.9.5.1.4.1.1.2.3.6|2|6
1.3.6.1.4.1.9.5.1.4.1.1.2.3.7|2|7
1.3.6.1.4.1.9.5.1.4.1.1.2.3.8|2|8
1.3.6.1.4.1.9.5.1.4.1.1.2.3.9|2|9
1.3.6.1.4.1.9.5.1.4.1.1.2.3.10|2|10
1.3.6.1.4.1.9.5.1.4.1.1.2.3.11|2|11
1.3.6.1.4.1.9.5.1.4.1.1.2.3.12|2|12
1.3.6.1.4.1.9.5.1.4.1.1.2.3.13|2|13
1.3.6.1.4.1.9.5.1.4.1.1.2.3.14|2|14
1.3.6.1.4.1.9.5.1.4.1.1.2.3.15|2|15
1.3.6.1.4.1.9.5.1.4.1.1.2.3.16|2|16
1.3.6.1.4.1.9.5.1.4.1.1.2.3.17|2|17
1.3.6.1.4.1.9.5.1.4.1.1.2.3.18|2|18
1.3.6.1.4.1.9.5.1.4.1.1.2.3.19|2|19
1.3.6.1.4.1.9.5.1.4.1.1.2.3.20|2|20
1.3.6.1.4.1.9.5.1.4.1.1.2.3.21|2|21
1.3.6.1.4.1.9.5.1.4.1.1.2.3.22|2|22
1.3.6.1.4.1.9.5.1.4.1.1.2.3.23|2|23
1.3.6.1.4.1.9.5.1.4.1.1.2.3.24|2|24
1.3.6.1.4.1.9.5.1.4.1.1.2.3.25|2|25
1.3.6.1.4.1.9.5.1.4.1.1.2.3.26|2|26
1.3.6.1.4.1.9.5.1.4.1.1.2.3.27|2|27
1.3.6.1.4.1.9.5.1.4.1.1.2.3.28|2|28
1.3.6.1.4.1.9.5.1.4.1.1.2.3.29|2|29
1.3.6.1.4.1.9.5.1.4.1.1.2.3.30|2|30
1.3.6.1.4.1.9.5.1.4.1.1.2.3.31|2|31
1.3.6.1.4.1.9.5.1.4.1.1.2.3.32|2|32
1.3.6.1.4.1.9.5.1.4.1.1.2.3.33|2|33
1.3.6.1.4.1.9.5.1.4.1.1.2.3.34|2|34
1.3.6.1.4.1.9.5.1.4.1.1.2.3.35|2|35
1.3.6.1.4.1.9.5.1.4.1.1.2.3.36|2|36
1.3.6.1.4.1.9.5.1.4.1.1.2.3.37|2|37
1.3.6.1.4.1.9.5.1.4.1.1.2.3.38|2|38
1.3.6.1.4.1.9.5.1.4.1.1.2.3.39|2|39
1.3.6.1.4.1.9.5.1.4.1.1.2.3.40|2|40
1.3.6.1.4.1.9.5.1.4.1.1.2.3.41|2|41
1.3.6.1.4.1.9.5.1.4.1.1.2.3.42|2|42
1.3.6.1.4.1.9.5.1.4.1.1.2.3.43|2|43
1.3.6.1.4.1.9.5.1.4.1.1.2.3.44|2|44
1.3.6.1.4.1.9.5.1.4.1.1.2.3.45|2|45
1.3.6.1.4.1.9.5.1.4.1.1.2.3.46|2|46
1.3.6.1.4.1.9.5.1.4.1.1.2.3.47|2|47
1.3.6.1.4.1.9.5.1.4.1.1.2.3.48|2|48
1.3.6.1.4.1.9.5.1.4.1.1.2.3.49|2|49
1.3.6.1.4.1.9.5.1.4.1.1.2.3.50|2|50
1.3.6.1.4.1.9.5.1.4.1.1.2.3.51|2|51
1.3.6.1.4.1.9.5.1.4.1.1.2.3.52|2|52
1.3.6.1.4.1.9.5.1.4.1.1.3.3.1|2|109
1.3.6.1.4.1.9.5.1.4.1.1.3.3.2|2|110
1.3.6.1.4.1.9.5.1.4.1.1.3.3.3|2|111
1.3.6.1.4.1.9.5.1.4.1.1.3.3.4|2|112
1.3.6.1.4.1.9.5.1.4.1.1.3.3.5|2|113
1.3.6.1.4.1.9.5.1.4.1.1.3.3.6|2|114
1.3.6.1.4.1.9.5.1.4.1.1.3.3.7|2|115
1.3.6.1.4.1.9.5.1.4.1.1.3.3.8|2|116
1.3.6.1.4.1.9.5.1.4.1.1.3.3.9|2|117
1.3.6.1.4.1.9.5.1.4.1.1.3.3.10|2|118
1.3.6.1.4.1.9.5.1.4.1.1.3.3.11|2|119
1.3.6.1.4.1.9.5.1.4.1.1.3.3.12|2|120
1.3.6.1.4.1.9.5.1.4.1.1.3.3.13|2|121
1.3.6.1.4.1.9.5.1.4.1.1.3.3.14|2|122
1.3.6.1.4.1.9.5.1.4.1.1.3.3.15|2|123
1.3.6.1.4.1.9.5.1.4.1.1.3.3.16|2|124
1.3.6.1.4.1.9.5.1.4.1.1.3.3.17|2|125
1.3.6.1.4.1.9.5.1.4.1.1.3.3.18|2|126
1.3.6.1.4.1.9.5.1.4.1.1.3.3.19|2|127
1.3.6.1.4.1.9.5.1.4.1.1.3.3.20|2|128
1.3.6.1.4.1.9.5.1.4.1.1.3.3.21|2|129
1.3.6.1.4.1.9.5.1.4.1.1.3.3.22|2|130
1.3.6.1.4.1.9.5.1.4.1.1.3.3.23|2|131
1.3.6.1.4.1.9.5.1.4.1.1.3.3.24|2|132
1.3.6.1.4.1.9.5.1.4.1.1.3.3.25|2|133
1.3.6.1.4.1.9.5.1.4.1.1.3.3.26|2|134
1.3.6.1.4.1.9.5.1.4.1.1.3.3.27|2|135
1.3.6.1.4.1.9.5.1.4.1.1.3.3.28|2|136
1.3.6.1.4.1.9.5.1.4.1.1.3.3.29|2|137
1.3.6.1.4.1.9.5.1.4.1.1.3.3.30|2|138
1.3.6.1.4.1.9.5.1.4.1.1.3.3.31|2|139
1.3.6.1.4.1.9.5.1.4.1.1.3.3.32|2|140
1.3.6.1.4.1.9.5.1.4.1.1.3.3.33|2|141
1.3.6.1.4.1.9.5.1.4.1.1.3.3.34|2|142
1.3.6.1.4.1.9.5.1.4.1.1.3.3.35|2|143
1.3.6.1.4.1.9.5.1.4.1.1.3.3.36|2|144
1.3.6.1.4.1.9.5.1.4.1.1.3.3.37|2|145
1.3.6.1.4.1.9.5.1.4.1.1.3.3.38|2|146
1.3.6.1.4.1.9.5.1.4.1.1.3.3.39|2|147
1.3.6.1.4.1.9.5.1.4.1.1.3.3.40|2|148
1.3.6.1.4.1.9.5.1.4.1.1.3.3.41|2|149
1.3.6.1.4.1.9.5.1.4.1.1.3.3.42|2|150
1.3.6.1.4.1.9.5.1.4.1.1.3.3.43|2|151
1.3.6.1.4.1.9.5.1.4.1.1.3.3.44|2|152
1.3.6.1.4.1.9.5.1.4.1.1.3.3.45|2|153
1.3.6.1.4.1.9.5.1.4.1.1.3.3.46|2|154
1.3.6.1.4.1.9.5.1.4.1.1.3.3.47|2|155
1.3.6.1.4.1.9.5.1.4.1.1.3.3.48|2|156
1.3.6.1.4.1.9.5.1.4.1.1.3.3.49|2|157
1.3.6.1.4.1.9.5.1.4.1.1.3.3.50|2|158
1.3.6.1.4.1.9.5.1.4.1.1.3.3.51|2|159
1.3.6.1.4.1.9.5.1.4.1.1.3.3.52|2|160
1.3.6.1.4.1.9.5.1.4.1.1.4.3.1|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.2|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.3|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.4|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.5|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.6|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.7|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.8|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.9|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.10|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.11|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.12|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.13|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.14|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.15|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.16|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.17|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.18|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.19|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.20|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.21|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.22|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.23|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.24|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.25|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.26|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.27|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.28|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.29|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.30|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.31|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.32|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.33|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.34|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.35|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.36|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.37|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.38|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.39|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.40|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.41|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.42|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.43|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.44|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.45|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.46|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.47|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.48|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.49|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.50|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.51|4|
1.3.6.1.4.1.9.5.1.4.1.1.4.3.52|4|
1.3.6.1.4.1.9.5.1.4.1.1.5.3.1|2|31
1.3.6.1.4.1.9.5.1.4.1.1.5.3.2|2|31
1.3.6.1.4.1.9.5.1.4.1.1.5.3.3|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.4|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.5|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.6|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.7|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.8|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.9|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.10|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.11|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.12|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.13|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.14|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.15|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.16|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.17|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.18|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.19|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.20|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.21|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.22|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.23|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.24|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.25|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.26|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.27|2|31
1.3.6.1.4.1.9.5.1.4.1.1.5.3.28|2|31
1.3.6.1.4.1.9.5.1.4.1.1.5.3.29|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.30|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.31|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.32|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.33|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.34|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.35|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.36|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.37|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.38|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.39|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.40|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.41|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.42|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.43|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.44|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.45|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.46|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.47|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.48|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.49|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.50|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.51|2|18
1.3.6.1.4.1.9.5.1.4.1.1.5.3.52|2|18
1.3.6.1.4.1.9.5.1.4.1.1.6.3.1|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.2|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.3|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.4|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.5|2|2
1.3.6.1.4.1.9.5.1.4.1.1.6.3.6|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.7|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.8|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.9|2|2
1.3.6.1.4.1.9.5.1.4.1.1.6.3.10|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.11|2|2
1.3.6.1.4.1.9.5.1.4.1.1.6.3.12|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.13|2|2
1.3.6.1.4.1.9.5.1.4.1.1.6.3.14|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.15|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.16|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.17|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.18|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.19|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.20|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.21|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.22|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.23|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.24|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.25|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.26|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.27|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.28|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.29|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.30|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.31|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.32|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.33|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.34|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.35|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.36|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.37|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.38|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.39|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.40|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.41|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.42|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.43|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.44|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.45|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.46|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.47|2|2
1.3.6.1.4.1.9.5.1.4.1.1.6.3.48|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.49|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.50|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.51|2|1
1.3.6.1.4.1.9.5.1.4.1.1.6.3.52|2|2
1.3.6.1.4.1.9.5.1.4.1.1.9.3.1|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.2|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.3|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.4|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.5|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.6|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.7|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.8|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.9|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.10|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.11|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.12|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.13|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.14|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.15|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.16|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.17|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.18|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.19|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.20|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.21|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.22|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.23|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.24|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.25|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.26|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.27|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.28|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.29|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.30|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.31|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.32|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.33|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.34|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.35|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.36|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.37|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.38|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.39|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.40|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.41|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.42|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.43|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.44|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.45|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.46|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.47|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.48|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.49|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.50|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.51|2|1
1.3.6.1.4.1.9.5.1.4.1.1.9.3.52|2|1
1.3.6.1.4.1.9.5.1.4.1.1.10.3.1|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.2|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.3|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.4|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.5|2|2
1.3.6.1.4.1.9.5.1.4.1.1.10.3.6|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.7|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.8|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.9|2|2
1.3.6.1.4.1.9.5.1.4.1.1.10.3.10|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.11|2|2
1.3.6.1.4.1.9.5.1.4.1.1.10.3.12|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.13|2|2
1.3.6.1.4.1.9.5.1.4.1.1.10.3.14|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.15|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.16|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.17|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.18|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.19|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.20|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.21|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.22|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.23|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.24|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.25|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.26|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.27|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.28|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.29|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.30|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.31|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.32|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.33|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.34|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.35|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.36|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.37|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.38|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.39|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.40|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.41|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.42|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.43|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.44|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.45|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.46|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.47|2|2
1.3.6.1.4.1.9.5.1.4.1.1.10.3.48|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.49|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.50|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.51|2|4
1.3.6.1.4.1.9.5.1.4.1.1.10.3.52|2|2
1.3.6.1.4.1.9.5.1.4.1.1.11.3.1|2|11101
1.3.6.1.4.1.9.5.1.4.1.1.11.3.2|2|11102
1.3.6.1.4.1.9.5.1.4.1.1.11.3.3|2|11001
1.3.6.1.4.1.9.5.1.4.1.1.11.3.4|2|11002
1.3.6.1.4.1.9.5.1.4.1.1.11.3.5|2|11003
1.3.6.1.4.1.9.5.1.4.1.1.11.3.6|2|11004
1.3.6.1.4.1.9.5.1.4.1.1.11.3.7|2|11005
1.3.6.1.4.1.9.5.1.4.1.1.11.3.8|2|11006
1.3.6.1.4.1.9.5.1.4.1.1.11.3.9|2|11007
1.3.6.1.4.1.9.5.1.4.1.1.11.3.10|2|11008
1.3.6.1.4.1.9.5.1.4.1.1.11.3.11|2|11009
1.3.6.1.4.1.9.5.1.4.1.1.11.3.12|2|11010
1.3.6.1.4.1.9.5.1.4.1.1.11.3.13|2|11011
1.3.6.1.4.1.9.5.1.4.1.1.11.3.14|2|11012
1.3.6.1.4.1.9.5.1.4.1.1.11.3.15|2|11013
1.3.6.1.4.1.9.5.1.4.1.1.11.3.16|2|11014
1.3.6.1.4.1.9.5.1.4.1.1.11.3.17|2|11015
1.3.6.1.4.1.9.5.1.4.1.1.11.3.18|2|11016
1.3.6.1.4.1.9.5.1.4.1.1.11.3.19|2|11017
1.3.6.1.4.1.9.5.1.4.1.1.11.3.20|2|11018
1.3.6.1.4.1.9.5.1.4.1.1.11.3.21|2|11019
1.3.6.1.4.1.9.5.1.4.1.1.11.3.22|2|11020
1.3.6.1.4.1.9.5.1.4.1.1.11.3.23|2|11021
1.3.6.1.4.1.9.5.1.4.1.1.11.3.24|2|11022
1.3.6.1.4.1.9.5.1.4.1.1.11.3.25|2|11023
1.3.6.1.4.1.9.5.1.4.1.1.11.3.26|2|11024
1.3.6.1.4.1.9.5.1.4.1.1.11.3.27|2|11103
1.3.6.1.4.1.9.5.1.4.1.1.11.3.28|2|11104
1.3.6.1.4.1.9.5.1.4.1.1.11.3.29|2|11025
1.3.6.1.4.1.9.5.1.4.1.1.11.3.30|2|11026
1.3.6.1.4.1.9.5.1.4.1.1.11.3.31|2|11027
1.3.6.1.4.1.9.5.1.4.1.1.11.3.32|2|11028
1.3.6.1.4.1.9.5.1.4.1.1.11.3.33|2|11029
1.3.6.1.4.1.9.5.1.4.1.1.11.3.34|2|11030
1.3.6.1.4.1.9.5.1.4.1.1.11.3.35|2|11031
1.3.6.1.4.1.9.5.1.4.1.1.11.3.36|2|11032
1.3.6.1.4.1.9.5.1.4.1.1.11.3.37|2|11033
1.3.6.1.4.1.9.5.1.4.1.1.11.3.38|2|11034
1.3.6.1.4.1.9.5.1.4.1.1.11.3.39|2|11035
1.3.6.1.4.1.9.5.1.4.1.1.11.3.40|2|11036
1.3.6.1.4.1.9.5.1.4.1.1.11.3.41|2|11037
1.3.6.1.4.1.9.5.1.4.1.1.11.3.42|2|11038
1.3.6.1.4.1.9.5.1.4.1.1.11.3.43|2|11039
1.3.6.1.4.1.9.5.1.4.1.1.11.3.44|2|11040
1.3.6.1.4.1.9.5.1.4.1.1.11.3.45|2|11041
1.3.6.1.4.1.9.5.1.4.1.1.11.3.46|2|11042
1.3.6.1.4.1.9.5.1.4.1.1.11.3.47|2|11043
1.3.6.1.4.1.9.5.1.4.1.1.11.3.48|2|11044
1.3.6.1.4.1.9.5.1.4.1.1.11.3.49|2|11045
1.3.6.1.4.1.9.5.1.4.1.1.11.3.50|2|11046
1.3.6.1.4.1.9.5.1.4.1.1.11.3.51|2|11047
1.3.6.1.4.1.9.5.1.4.1.1.11.3.52|2|11048
1.3.6.1.4.1.9.5.1.4.1.1.12.3.1|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.2|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.3|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.4|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.5|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.6|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.7|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.8|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.9|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.10|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.11|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.12|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.13|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.14|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.15|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.16|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.17|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.18|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.19|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.20|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.21|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.22|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.23|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.24|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.25|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.26|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.27|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.28|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.29|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.30|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.31|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.32|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.33|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.34|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.35|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.36|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.37|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.38|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.39|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.40|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.41|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.42|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.43|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.44|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.45|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.46|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.47|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.48|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.49|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.50|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.51|2|2
1.3.6.1.4.1.9.5.1.4.1.1.12.3.52|2|2
1.3.6.1.4.1.9.5.1.7.5.1.1.3.1|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.2|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.3|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.4|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.5|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.6|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.7|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.8|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.9|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.10|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.11|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.12|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.13|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.14|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.15|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.16|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.17|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.18|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.19|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.20|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.21|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.22|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.23|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.24|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.25|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.26|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.27|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.28|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.29|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.30|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.31|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.32|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.33|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.34|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.35|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.36|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.37|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.38|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.39|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.40|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.41|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.42|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.43|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.44|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.45|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.46|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.47|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.48|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.49|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.50|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.51|2|3
1.3.6.1.4.1.9.5.1.7.5.1.1.3.52|2|3
1.3.6.1.4.1.9.5.1.7.5.1.2.3.1|2|1
1.3.6.1.4.1.9.5.1.7.5.1.2.3.2|2|2
1.3.6.1.4.1.9.5.1.7.5.1.2.3.3|2|3
1.3.6.1.4.1.9.5.1.7.5.1.2.3.4|2|4
1.3.6.1.4.1.9.5.1.7.5.1.2.3.5|2|5
1.3.6.1.4.1.9.5.1.7.5.1.2.3.6|2|6
1.3.6.1.4.1.9.5.1.7.5.1.2.3.7|2|7
1.3.6.1.4.1.9.5.1.7.5.1.2.3.8|2|8
1.3.6.1.4.1.9.5.1.7.5.1.2.3.9|2|9
1.3.6.1.4.1.9.5.1.7.5.1.2.3.10|2|10
1.3.6.1.4.1.9.5.1.7.5.1.2.3.11|2|11
1.3.6.1.4.1.9.5.1.7.5.1.2.3.12|2|12
1.3.6.1.4.1.9.5.1.7.5.1.2.3.13|2|13
1.3.6.1.4.1.9.5.1.7.5.1.2.3.14|2|14
1.3.6.1.4.1.9.5.1.7.5.1.2.3.15|2|15
1.3.6.1.4.1.9.5.1.7.5.1.2.3.16|2|16
1.3.6.1.4.1.9.5.1.7.5.1.2.3.17|2|17
1.3.6.1.4.1.9.5.1.7.5.1.2.3.18|2|18
1.3.6.1.4.1.9.5.1.7.5.1.2.3.19|2|19
1.3.6.1.4.1.9.5.1.7.5.1.2.3.20|2|20
1.3.6.1.4.1.9.5.1.7.5.1.2.3.21|2|21
1.3.6.1.4.1.9.5.1.7.5.1.2.3.22|2|22
1.3.6.1.4.1.9.5.1.7.5.1.2.3.23|2|23
1.3.6.1.4.1.9.5.1.7.5.1.2.3.24|2|24
1.3.6.1.4.1.9.5.1.7.5.1.2.3.25|2|25
1.3.6.1.4.1.9.5.1.7.5.1.2.3.26|2|26
1.3.6.1.4.1.9.5.1.7.5.1.2.3.27|2|27
1.3.6.1.4.1.9.5.1.7.5.1.2.3.28|2|28
1.3.6.1.4.1.9.5.1.7.5.1.2.3.29|2|29
1.3.6.1.4.1.9.5.1.7.5.1.2.3.30|2|30
1.3.6.1.4.1.9.5.1.7.5.1.2.3.31|2|31
1.3.6.1.4.1.9.5.1.7.5.1.2.3.32|2|32
1.3.6.1.4.1.9.5.1.7.5.1.2.3.33|2|33
1.3.6.1.4.1.9.5.1.7.5.1.2.3.34|2|34
1.3.6.1.4.1.9.5.1.7.5.1.2.3.35|2|35
1.3.6.1.4.1.9.5.1.7.5.1.2.3.36|2|36
1.3.6.1.4.1.9.5.1.7.5.1.2.3.37|2|37
1.3.6.1.4.1.9.5.1.7.5.1.2.3.38|2|38
1.3.6.1.4.1.9.5.1.7.5.1.2.3.39|2|39
1.3.6.1.4.1.9.5.1.7.5.1.2.3.40|2|40
1.3.6.1.4.1.9.5.1.7.5.1.2.3.41|2|41
1.3.6.1.4.1.9.5.1.7.5.1.2.3.42|2|42
1.3.6.1.4.1.9.5.1.7.5.1.2.3.43|2|43
1.3.6.1.4.1.9.5.1.7.5.1.2.3.44|2|44
1.3.6.1.4.1.9.5.1.7.5.1.2.3.45|2|45
1.3.6.1.4.1.9.5.1.7.5.1.2.3.46|2|46
1.3.6.1.4.1.9.5.1.7.5.1.2.3.47|2|47
1.3.6.1.4.1.9.5.1.7.5.1.2.3.48|2|48
1.3.6.1.4.1.9.5.1.7.5.1.2.3.49|2|49
1.3.6.1.4.1.9.5.1.7.5.1.2.3.50|2|50
1.3.6.1.4.1.9.5.1.7.5.1.2.3.51|2|51
1.3.6.1.4.1.9.5.1.7.5.1.2.3.52|2|52
1.3.6.1.4.1.9.5.1.7.5.1.3.3.1|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.2|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.3|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.4|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.5|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.6|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.7|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.8|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.9|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.10|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.11|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.12|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.13|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.14|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.15|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.16|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.17|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.18|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.19|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.20|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.21|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.22|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.23|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.24|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.25|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.26|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.27|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.28|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.29|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.30|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.31|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.32|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.33|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.34|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.35|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.36|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.37|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.38|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.39|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.40|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.41|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.42|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.43|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.44|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.45|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.46|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.47|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.48|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.49|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.50|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.51|4|
1.3.6.1.4.1.9.5.1.7.5.1.3.3.52|4|
1.3.6.1.4.1.9.5.1.7.5.1.4.3.1|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.2|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.3|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.4|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.5|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.6|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.7|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.8|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.9|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.10|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.11|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.12|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.13|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.14|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.15|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.16|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.17|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.18|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.19|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.20|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.21|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.22|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.23|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.24|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.25|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.26|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.27|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.28|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.29|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.30|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.31|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.32|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.33|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.34|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.35|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.36|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.37|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.38|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.39|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.40|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.41|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.42|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.43|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.44|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.45|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.46|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.47|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.48|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.49|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.50|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.51|2|0
1.3.6.1.4.1.9.5.1.7.5.1.4.3.52|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.1|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.2|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.3|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.4|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.5|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.6|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.7|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.8|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.9|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.10|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.11|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.12|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.13|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.14|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.15|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.16|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.17|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.18|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.19|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.20|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.21|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.22|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.23|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.24|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.25|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.26|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.27|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.28|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.29|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.30|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.31|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.32|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.33|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.34|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.35|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.36|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.37|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.38|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.39|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.40|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.41|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.42|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.43|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.44|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.45|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.46|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.47|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.48|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.49|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.50|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.51|2|0
1.3.6.1.4.1.9.5.1.7.5.1.5.3.52|2|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.1|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.2|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.3|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.4|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.5|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.6|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.7|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.8|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.9|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.10|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.11|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.12|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.13|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.14|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.15|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.16|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.17|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.18|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.19|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.20|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.21|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.22|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.23|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.24|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.25|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.26|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.27|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.28|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.29|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.30|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.31|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.32|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.33|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.34|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.35|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.36|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.37|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.38|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.39|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.40|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.41|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.42|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.43|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.44|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.45|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.46|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.47|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.48|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.49|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.50|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.51|65|0
1.3.6.1.4.1.9.5.1.7.5.1.6.3.52|65|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.1|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.2|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.3|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.4|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.5|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.6|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.7|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.8|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.9|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.10|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.11|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.12|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.13|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.14|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.15|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.16|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.17|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.18|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.19|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.20|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.21|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.22|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.23|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.24|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.25|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.26|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.27|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.28|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.29|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.30|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.31|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.32|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.33|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.34|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.35|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.36|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.37|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.38|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.39|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.40|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.41|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.42|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.43|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.44|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.45|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.46|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.47|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.48|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.49|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.50|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.51|2|0
1.3.6.1.4.1.9.5.1.7.5.1.7.3.52|2|0
1.3.6.1.4.1.9.5.1.9.3.1.1.3.1|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.2|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.3|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.4|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.5|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.6|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.7|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.8|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.9|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.10|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.11|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.12|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.13|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.14|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.15|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.16|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.17|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.18|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.19|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.20|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.21|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.22|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.23|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.24|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.25|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.26|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.27|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.28|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.29|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.30|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.31|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.32|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.33|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.34|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.35|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.36|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.37|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.38|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.39|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.40|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.41|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.42|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.43|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.44|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.45|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.46|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.47|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.48|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.49|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.50|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.51|2|3
1.3.6.1.4.1.9.5.1.9.3.1.1.3.52|2|3
1.3.6.1.4.1.9.5.1.9.3.1.2.3.1|2|1
1.3.6.1.4.1.9.5.1.9.3.1.2.3.2|2|2
1.3.6.1.4.1.9.5.1.9.3.1.2.3.3|2|3
1.3.6.1.4.1.9.5.1.9.3.1.2.3.4|2|4
1.3.6.1.4.1.9.5.1.9.3.1.2.3.5|2|5
1.3.6.1.4.1.9.5.1.9.3.1.2.3.6|2|6
1.3.6.1.4.1.9.5.1.9.3.1.2.3.7|2|7
1.3.6.1.4.1.9.5.1.9.3.1.2.3.8|2|8
1.3.6.1.4.1.9.5.1.9.3.1.2.3.9|2|9
1.3.6.1.4.1.9.5.1.9.3.1.2.3.10|2|10
1.3.6.1.4.1.9.5.1.9.3.1.2.3.11|2|11
1.3.6.1.4.1.9.5.1.9.3.1.2.3.12|2|12
1.3.6.1.4.1.9.5.1.9.3.1.2.3.13|2|13
1.3.6.1.4.1.9.5.1.9.3.1.2.3.14|2|14
1.3.6.1.4.1.9.5.1.9.3.1.2.3.15|2|15
1.3.6.1.4.1.9.5.1.9.3.1.2.3.16|2|16
1.3.6.1.4.1.9.5.1.9.3.1.2.3.17|2|17
1.3.6.1.4.1.9.5.1.9.3.1.2.3.18|2|18
1.3.6.1.4.1.9.5.1.9.3.1.2.3.19|2|19
1.3.6.1.4.1.9.5.1.9.3.1.2.3.20|2|20
1.3.6.1.4.1.9.5.1.9.3.1.2.3.21|2|21
1.3.6.1.4.1.9.5.1.9.3.1.2.3.22|2|22
1.3.6.1.4.1.9.5.1.9.3.1.2.3.23|2|23
1.3.6.1.4.1.9.5.1.9.3.1.2.3.24|2|24
1.3.6.1.4.1.9.5.1.9.3.1.2.3.25|2|25
1.3.6.1.4.1.9.5.1.9.3.1.2.3.26|2|26
1.3.6.1.4.1.9.5.1.9.3.1.2.3.27|2|27
1.3.6.1.4.1.9.5.1.9.3.1.2.3.28|2|28
1.3.6.1.4.1.9.5.1.9.3.1.2.3.29|2|29
1.3.6.1.4.1.9.5.1.9.3.1.2.3.30|2|30
1.3.6.1.4.1.9.5.1.9.3.1.2.3.31|2|31
1.3.6.1.4.1.9.5.1.9.3.1.2.3.32|2|32
1.3.6.1.4.1.9.5.1.9.3.1.2.3.33|2|33
1.3.6.1.4.1.9.5.1.9.3.1.2.3.34|2|34
1.3.6.1.4.1.9.5.1.9.3.1.2.3.35|2|35
1.3.6.1.4.1.9.5.1.9.3.1.2.3.36|2|36
1.3.6.1.4.1.9.5.1.9.3.1.2.3.37|2|37
1.3.6.1.4.1.9.5.1.9.3.1.2.3.38|2|38
1.3.6.1.4.1.9.5.1.9.3.1.2.3.39|2|39
1.3.6.1.4.1.9.5.1.9.3.1.2.3.40|2|40
1.3.6.1.4.1.9.5.1.9.3.1.2.3.41|2|41
1.3.6.1.4.1.9.5.1.9.3.1.2.3.42|2|42
1.3.6.1.4.1.9.5.1.9.3.1.2.3.43|2|43
1.3.6.1.4.1.9.5.1.9.3.1.2.3.44|2|44
1.3.6.1.4.1.9.5.1.9.3.1.2.3.45|2|45
1.3.6.1.4.1.9.5.1.9.3.1.2.3.46|2|46
1.3.6.1.4.1.9.5.1.9.3.1.2.3.47|2|47
1.3.6.1.4.1.9.5.1.9.3.1.2.3.48|2|48
1.3.6.1.4.1.9.5.1.9.3.1.2.3.49|2|49
1.3.6.1.4.1.9.5.1.9.3.1.2.3.50|2|50
1.3.6.1.4.1.9.5.1.9.3.1.2.3.51|2|51
1.3.6.1.4.1.9.5.1.9.3.1.2.3.52|2|52
1.3.6.1.4.1.9.5.1.9.3.1.3.3.1|2|4
1.3.6.1.4.1.9.5.1.9.3.1.3.3.2|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.3|2|65
1.3.6.1.4.1.9.5.1.9.3.1.3.3.4|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.5|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.6|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.7|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.8|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.9|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.10|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.11|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.12|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.13|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.14|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.15|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.16|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.17|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.18|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.19|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.20|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.21|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.22|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.23|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.24|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.25|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.26|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.27|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.28|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.29|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.30|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.31|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.32|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.33|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.34|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.35|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.36|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.37|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.38|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.39|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.40|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.41|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.42|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.43|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.44|2|63
1.3.6.1.4.1.9.5.1.9.3.1.3.3.45|2|63
1.3.6.1.4.1.9.5.1.9.3.1.3.3.46|2|65
1.3.6.1.4.1.9.5.1.9.3.1.3.3.47|2|65
1.3.6.1.4.1.9.5.1.9.3.1.3.3.48|2|80
1.3.6.1.4.1.9.5.1.9.3.1.3.3.49|2|60
1.3.6.1.4.1.9.5.1.9.3.1.3.3.50|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.51|2|1
1.3.6.1.4.1.9.5.1.9.3.1.3.3.52|2|1
1.3.6.1.4.1.9.5.1.9.3.1.5.3.1|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.2|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.3|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.4|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.5|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.6|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.7|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.8|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.9|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.10|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.11|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.12|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.13|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.14|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.15|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.16|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.17|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.18|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.19|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.20|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.21|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.22|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.23|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.24|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.25|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.26|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.27|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.28|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.29|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.30|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.31|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.32|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.33|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.34|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.35|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.36|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.37|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.38|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.39|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.40|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.41|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.42|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.43|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.44|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.45|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.46|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.47|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.48|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.49|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.50|4x|1000000000000000
1.3.6.1.4.1.9.5.1.9.3.1.5.3.51|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.5.3.52|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbffffffffffffffffe
1.3.6.1.4.1.9.5.1.9.3.1.6.3.1|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.2|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.3|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.4|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.5|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.6|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.7|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.8|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.9|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.10|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.11|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.12|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.13|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.14|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.15|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.16|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.17|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.18|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.19|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.20|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.21|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.22|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.23|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.24|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.25|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.26|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.27|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.28|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.29|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.30|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.31|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.32|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.33|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.34|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.35|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.36|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.37|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.38|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.39|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.40|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.41|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.42|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.43|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.44|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.45|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.46|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.47|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.48|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.49|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.50|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.51|2|3
1.3.6.1.4.1.9.5.1.9.3.1.6.3.52|2|3
1.3.6.1.4.1.9.5.1.9.3.1.7.3.1|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.2|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.3|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.4|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.5|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.6|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.7|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.8|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.9|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.10|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.11|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.12|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.13|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.14|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.15|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.16|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.17|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.18|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.19|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.20|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.21|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.22|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.23|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.24|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.25|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.26|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.27|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.28|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.29|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.30|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.31|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.32|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.33|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.34|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.35|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.36|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.37|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.38|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.39|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.40|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.41|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.42|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.43|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.44|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.45|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.46|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.47|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.48|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.49|2|2
1.3.6.1.4.1.9.5.1.9.3.1.7.3.50|2|1
1.3.6.1.4.1.9.5.1.9.3.1.7.3.51|2|4
1.3.6.1.4.1.9.5.1.9.3.1.7.3.52|2|1
1.3.6.1.4.1.9.5.1.9.3.1.8.3.1|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.2|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.3|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.4|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.5|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.6|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.7|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.8|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.9|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.10|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.11|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.12|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.13|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.14|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.15|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.16|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.17|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.18|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.19|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.20|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.21|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.22|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.23|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.24|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.25|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.26|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.27|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.28|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.29|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.30|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.31|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.32|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.33|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.34|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.35|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.36|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.37|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.38|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.39|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.40|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.41|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.42|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.43|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.44|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.45|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.46|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.47|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.48|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.49|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.50|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.51|2|2
1.3.6.1.4.1.9.5.1.9.3.1.8.3.52|2|1
1.3.6.1.4.1.9.5.1.9.3.1.9.3.1|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.2|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.3|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.4|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.5|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.6|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.7|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.8|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.9|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.10|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.11|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.12|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.13|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.14|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.15|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.16|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.17|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.18|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.19|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.20|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.21|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.22|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.23|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.24|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.25|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.26|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.27|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.28|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.29|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.30|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.31|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.32|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.33|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.34|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.35|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.36|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.37|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.38|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.39|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.40|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.41|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.42|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.43|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.44|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.45|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.46|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.47|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.48|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.49|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.50|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.51|4|
1.3.6.1.4.1.9.5.1.9.3.1.9.3.52|4|
1.3.6.1.4.1.9.5.1.9.3.1.10.3.1|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.2|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.3|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.4|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.5|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.6|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.7|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.8|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.9|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.10|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.11|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.12|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.13|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.14|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.15|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.16|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.17|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.18|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.19|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.20|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.21|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.22|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.23|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.24|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.25|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.26|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.27|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.28|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.29|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.30|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.31|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.32|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.33|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.34|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.35|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.36|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.37|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.38|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.39|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.40|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.41|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.42|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.43|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.44|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.45|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.46|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.47|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.48|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.49|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.50|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.51|2|1
1.3.6.1.4.1.9.5.1.9.3.1.10.3.52|2|1
1.3.6.1.4.1.9.5.1.9.3.1.11.3.1|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.2|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.3|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.4|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.5|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.6|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.7|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.8|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.9|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.10|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.11|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.12|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.13|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.14|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.15|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.16|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.17|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.18|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.19|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.20|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.21|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.22|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.23|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.24|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.25|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.26|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.27|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.28|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.29|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.30|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.31|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.32|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.33|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.34|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.35|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.36|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.37|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.38|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.39|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.40|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.41|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.42|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.43|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.44|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.45|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.46|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.47|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.48|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.49|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.50|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.51|2|2
1.3.6.1.4.1.9.5.1.9.3.1.11.3.52|2|2
1.3.6.1.4.1.9.5.1.9.3.1.12.3.1|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.2|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.3|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.4|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.5|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.6|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.7|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.8|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.9|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.10|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.11|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.12|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.13|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.14|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.15|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.16|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.17|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.18|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.19|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.20|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.21|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.22|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.23|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.24|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.25|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.26|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.27|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.28|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.29|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.30|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.31|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.32|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.33|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.34|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.35|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.36|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.37|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.38|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.39|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.40|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.41|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.42|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.43|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.44|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.45|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.46|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.47|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.48|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.49|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.50|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.51|2|4096
1.3.6.1.4.1.9.5.1.9.3.1.12.3.52|2|4096
1.3.6.1.4.1.9.5.1.19.1.1.1.3.1|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.2|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.3|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.4|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.5|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.6|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.7|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.8|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.9|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.10|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.11|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.12|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.13|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.14|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.15|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.16|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.17|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.18|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.19|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.20|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.21|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.22|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.23|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.24|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.25|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.26|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.27|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.28|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.29|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.30|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.31|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.32|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.33|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.34|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.35|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.36|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.37|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.38|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.39|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.40|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.41|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.42|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.43|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.44|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.45|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.46|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.47|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.48|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.49|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.50|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.51|2|3
1.3.6.1.4.1.9.5.1.19.1.1.1.3.52|2|3
1.3.6.1.4.1.9.5.1.19.1.1.2.3.1|2|1
1.3.6.1.4.1.9.5.1.19.1.1.2.3.2|2|2
1.3.6.1.4.1.9.5.1.19.1.1.2.3.3|2|3
1.3.6.1.4.1.9.5.1.19.1.1.2.3.4|2|4
1.3.6.1.4.1.9.5.1.19.1.1.2.3.5|2|5
1.3.6.1.4.1.9.5.1.19.1.1.2.3.6|2|6
1.3.6.1.4.1.9.5.1.19.1.1.2.3.7|2|7
1.3.6.1.4.1.9.5.1.19.1.1.2.3.8|2|8
1.3.6.1.4.1.9.5.1.19.1.1.2.3.9|2|9
1.3.6.1.4.1.9.5.1.19.1.1.2.3.10|2|10
1.3.6.1.4.1.9.5.1.19.1.1.2.3.11|2|11
1.3.6.1.4.1.9.5.1.19.1.1.2.3.12|2|12
1.3.6.1.4.1.9.5.1.19.1.1.2.3.13|2|13
1.3.6.1.4.1.9.5.1.19.1.1.2.3.14|2|14
1.3.6.1.4.1.9.5.1.19.1.1.2.3.15|2|15
1.3.6.1.4.1.9.5.1.19.1.1.2.3.16|2|16
1.3.6.1.4.1.9.5.1.19.1.1.2.3.17|2|17
1.3.6.1.4.1.9.5.1.19.1.1.2.3.18|2|18
1.3.6.1.4.1.9.5.1.19.1.1.2.3.19|2|19
1.3.6.1.4.1.9.5.1.19.1.1.2.3.20|2|20
1.3.6.1.4.1.9.5.1.19.1.1.2.3.21|2|21
1.3.6.1.4.1.9.5.1.19.1.1.2.3.22|2|22
1.3.6.1.4.1.9.5.1.19.1.1.2.3.23|2|23
1.3.6.1.4.1.9.5.1.19.1.1.2.3.24|2|24
1.3.6.1.4.1.9.5.1.19.1.1.2.3.25|2|25
1.3.6.1.4.1.9.5.1.19.1.1.2.3.26|2|26
1.3.6.1.4.1.9.5.1.19.1.1.2.3.27|2|27
1.3.6.1.4.1.9.5.1.19.1.1.2.3.28|2|28
1.3.6.1.4.1.9.5.1.19.1.1.2.3.29|2|29
1.3.6.1.4.1.9.5.1.19.1.1.2.3.30|2|30
1.3.6.1.4.1.9.5.1.19.1.1.2.3.31|2|31
1.3.6.1.4.1.9.5.1.19.1.1.2.3.32|2|32
1.3.6.1.4.1.9.5.1.19.1.1.2.3.33|2|33
1.3.6.1.4.1.9.5.1.19.1.1.2.3.34|2|34
1.3.6.1.4.1.9.5.1.19.1.1.2.3.35|2|35
1.3.6.1.4.1.9.5.1.19.1.1.2.3.36|2|36
1.3.6.1.4.1.9.5.1.19.1.1.2.3.37|2|37
1.3.6.1.4.1.9.5.1.19.1.1.2.3.38|2|38
1.3.6.1.4.1.9.5.1.19.1.1.2.3.39|2|39
1.3.6.1.4.1.9.5.1.19.1.1.2.3.40|2|40
1.3.6.1.4.1.9.5.1.19.1.1.2.3.41|2|41
1.3.6.1.4.1.9.5.1.19.1.1.2.3.42|2|42
1.3.6.1.4.1.9.5.1.19.1.1.2.3.43|2|43
1.3.6.1.4.1.9.5.1.19.1.1.2.3.44|2|44
1.3.6.1.4.1.9.5.1.19.1.1.2.3.45|2|45
1.3.6.1.4.1.9.5.1.19.1.1.2.3.46|2|46
1.3.6.1.4.1.9.5.1.19.1.1.2.3.47|2|47
1.3.6.1.4.1.9.5.1.19.1.1.2.3.48|2|48
1.3.6.1.4.1.9.5.1.19.1.1.2.3.49|2|49
1.3.6.1.4.1.9.5.1.19.1.1.2.3.50|2|50
1.3.6.1.4.1.9.5.1.19.1.1.2.3.51|2|51
1.3.6.1.4.1.9.5.1.19.1.1.2.3.52|2|52
1.3.6.1.4.1.9.5.1.19.1.1.3.3.1|4x|0000
1.3.6.1.4.1.9.5.1.19.1.1.3.3.2|4x|0000
1.3.6.1.4.1.9.5.1.19.1.1.3.3.3|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.4|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.5|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.6|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.7|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.8|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.9|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.10|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.11|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.12|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.13|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.14|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.15|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.16|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.17|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.18|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.19|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.20|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.21|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.22|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.23|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.24|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.25|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.26|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.27|4x|0000
1.3.6.1.4.1.9.5.1.19.1.1.3.3.28|4x|0000
1.3.6.1.4.1.9.5.1.19.1.1.3.3.29|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.30|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.31|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.32|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.33|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.34|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.35|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.36|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.37|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.38|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.39|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.40|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.41|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.42|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.43|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.44|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.45|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.46|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.47|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.48|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.49|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.50|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.51|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.3.3.52|4x|a400
1.3.6.1.4.1.9.5.1.19.1.1.4.3.1|4x|00
1.3.6.1.4.1.9.5.1.19.1.1.4.3.2|4x|00
1.3.6.1.4.1.9.5.1.19.1.1.4.3.3|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.4|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.5|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.6|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.7|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.8|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.9|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.10|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.11|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.12|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.13|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.14|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.15|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.16|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.17|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.18|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.19|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.20|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.21|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.22|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.23|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.24|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.25|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.26|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.27|4x|00
1.3.6.1.4.1.9.5.1.19.1.1.4.3.28|4x|00
1.3.6.1.4.1.9.5.1.19.1.1.4.3.29|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.30|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.31|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.32|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.33|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.34|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.35|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.36|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.37|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.38|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.39|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.40|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.41|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.42|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.43|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.44|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.45|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.46|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.47|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.48|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.49|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.50|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.51|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.4.3.52|4x|e0
1.3.6.1.4.1.9.5.1.19.1.1.5.3.1|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.2|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.3|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.4|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.5|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.6|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.7|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.8|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.9|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.10|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.11|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.12|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.13|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.14|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.15|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.16|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.17|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.18|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.19|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.20|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.21|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.22|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.23|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.24|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.25|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.26|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.27|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.28|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.29|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.30|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.31|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.32|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.33|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.34|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.35|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.36|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.37|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.38|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.39|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.40|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.41|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.42|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.43|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.44|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.45|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.46|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.47|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.48|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.49|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.50|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.51|4|8
1.3.6.1.4.1.9.5.1.19.1.1.5.3.52|4|8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.1|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.2|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.3|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.4|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.5|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.6|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.7|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.8|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.9|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.10|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.11|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.12|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.13|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.14|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.15|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.16|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.17|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.18|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.19|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.20|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.21|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.22|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.23|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.24|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.25|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.26|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.27|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.28|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.29|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.30|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.31|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.32|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.33|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.34|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.35|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.36|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.37|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.38|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.39|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.40|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.41|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.42|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.43|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.44|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.45|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.46|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.47|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.48|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.49|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.50|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.51|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.6.3.52|4x|f8
1.3.6.1.4.1.9.5.1.19.1.1.7.3.1|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.2|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.3|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.4|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.5|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.6|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.7|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.8|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.9|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.10|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.11|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.12|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.13|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.14|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.15|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.16|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.17|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.18|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.19|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.20|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.21|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.22|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.23|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.24|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.25|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.26|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.27|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.28|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.29|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.30|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.31|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.32|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.33|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.34|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.35|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.36|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.37|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.38|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.39|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.40|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.41|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.42|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.43|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.44|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.45|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.46|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.47|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.48|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.49|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.50|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.51|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.7.3.52|4x|4368616e6e656c2063617061626c65
1.3.6.1.4.1.9.5.1.19.1.1.11.3.1|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.2|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.3|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.4|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.5|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.6|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.7|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.8|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.9|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.10|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.11|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.12|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.13|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.14|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.15|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.16|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.17|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.18|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.19|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.20|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.21|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.22|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.23|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.24|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.25|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.26|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.27|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.28|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.29|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.30|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.31|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.32|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.33|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.34|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.35|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.36|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.37|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.38|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.39|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.40|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.41|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.42|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.43|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.44|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.45|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.46|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.47|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.48|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.49|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.50|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.51|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.11.3.52|4x|c0
1.3.6.1.4.1.9.5.1.19.1.1.12.3.1|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.2|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.3|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.4|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.5|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.6|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.7|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.8|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.9|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.10|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.11|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.12|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.13|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.14|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.15|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.16|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.17|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.18|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.19|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.20|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.21|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.22|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.23|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.24|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.25|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.26|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.27|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.28|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.29|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.30|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.31|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.32|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.33|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.34|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.35|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.36|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.37|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.38|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.39|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.40|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.41|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.42|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.43|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.44|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.45|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.46|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.47|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.48|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.49|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.50|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.51|2|1
1.3.6.1.4.1.9.5.1.19.1.1.12.3.52|2|1
1.3.6.1.4.1.9.5.1.19.1.1.14.3.1|4x|80
1.3.6.1.4.1.9.5.1.19.1.1.14.3.2|4x|80
1.3.6.1.4.1.9.5.1.19.1.1.14.3.3|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.4|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.5|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.6|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.7|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.8|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.9|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.10|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.11|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.12|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.13|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.14|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.15|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.16|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.17|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.18|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.19|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.20|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.21|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.22|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.23|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.24|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.25|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.26|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.27|4x|80
1.3.6.1.4.1.9.5.1.19.1.1.14.3.28|4x|80
1.3.6.1.4.1.9.5.1.19.1.1.14.3.29|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.30|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.31|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.32|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.33|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.34|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.35|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.36|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.37|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.38|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.39|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.40|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.41|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.42|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.43|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.44|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.45|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.46|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.47|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.48|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.49|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.50|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.51|4|
1.3.6.1.4.1.9.5.1.19.1.1.14.3.52|4|
1.3.6.1.4.1.9.5.1.19.1.1.15.3.1|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.2|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.3|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.4|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.5|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.6|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.7|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.8|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.9|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.10|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.11|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.12|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.13|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.14|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.15|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.16|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.17|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.18|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.19|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.20|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.21|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.22|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.23|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.24|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.25|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.26|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.27|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.28|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.29|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.30|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.31|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.32|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.33|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.34|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.35|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.36|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.37|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.38|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.39|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.40|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.41|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.42|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.43|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.44|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.45|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.46|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.47|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.48|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.49|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.50|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.51|4x|f0
1.3.6.1.4.1.9.5.1.19.1.1.15.3.52|4x|f0
1.3.6.1.4.1.9.9.10.1.1.1.0|66|9
1.3.6.1.4.1.9.9.10.1.1.2.1.2.1|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.2|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.3|66|15998976
1.3.6.1.4.1.9.9.10.1.1.2.1.2.4|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.5|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.6|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.7|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.8|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.2.9|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.1|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.2|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.3|66|15998976
1.3.6.1.4.1.9.9.10.1.1.2.1.3.4|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.5|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.6|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.7|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.8|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.3.9|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.4.1|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.2|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.3|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.4|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.5|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.6|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.7|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.8|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.4.9|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.5.1|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.2|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.3|66|1
1.3.6.1.4.1.9.9.10.1.1.2.1.5.4|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.5|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.6|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.7|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.8|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.5.9|66|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.1|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.2|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.3|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.6.4|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.5|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.6|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.7|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.8|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.6.9|2|0
1.3.6.1.4.1.9.9.10.1.1.2.1.7.1|4|flash1
1.3.6.1.4.1.9.9.10.1.1.2.1.7.2|4|flash2
1.3.6.1.4.1.9.9.10.1.1.2.1.7.3|4|flash3
1.3.6.1.4.1.9.9.10.1.1.2.1.7.4|4|flash4
1.3.6.1.4.1.9.9.10.1.1.2.1.7.5|4|flash5
1.3.6.1.4.1.9.9.10.1.1.2.1.7.6|4|flash6
1.3.6.1.4.1.9.9.10.1.1.2.1.7.7|4|flash7
1.3.6.1.4.1.9.9.10.1.1.2.1.7.8|4|flash8
1.3.6.1.4.1.9.9.10.1.1.2.1.7.9|4|flash9
1.3.6.1.4.1.9.9.10.1.1.2.1.8.1|4x|666c61736820646576696365206f6e207377697463682031
1.3.6.1.4.1.9.9.10.1.1.2.1.8.2|4x|666c61736820646576696365206f6e207377697463682032
1.3.6.1.4.1.9.9.10.1.1.2.1.8.3|4x|666c61736820646576696365206f6e207377697463682033
1.3.6.1.4.1.9.9.10.1.1.2.1.8.4|4x|666c61736820646576696365206f6e207377697463682034
1.3.6.1.4.1.9.9.10.1.1.2.1.8.5|4x|666c61736820646576696365206f6e207377697463682035
1.3.6.1.4.1.9.9.10.1.1.2.1.8.6|4x|666c61736820646576696365206f6e207377697463682036
1.3.6.1.4.1.9.9.10.1.1.2.1.8.7|4x|666c61736820646576696365206f6e207377697463682037
1.3.6.1.4.1.9.9.10.1.1.2.1.8.8|4x|666c61736820646576696365206f6e207377697463682038
1.3.6.1.4.1.9.9.10.1.1.2.1.8.9|4x|666c61736820646576696365206f6e207377697463682039
1.3.6.1.4.1.9.9.10.1.1.2.1.9.1|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.2|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.3|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.4|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.5|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.6|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.7|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.8|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.9.9|4|
1.3.6.1.4.1.9.9.10.1.1.2.1.11.1|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.2|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.3|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.4|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.5|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.6|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.7|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.8|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.11.9|2|3
1.3.6.1.4.1.9.9.10.1.1.2.1.12.1|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.2|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.3|67|9778
1.3.6.1.4.1.9.9.10.1.1.2.1.12.4|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.5|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.6|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.7|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.8|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.12.9|67|0
1.3.6.1.4.1.9.9.10.1.1.2.1.13.1|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.2|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.3|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.4|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.5|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.6|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.7|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.8|2|1
1.3.6.1.4.1.9.9.10.1.1.2.1.13.9|2|1
1.3.6.1.4.1.9.9.10.1.1.3.1.1.2.3.1|4x|30303a3030
1.3.6.1.4.1.9.9.10.1.1.3.1.1.3.3.1|4x|414d44206f7220496e74656c20464c4153482063686970
1.3.6.1.4.1.9.9.10.1.1.3.1.1.4.3.1|65|0
1.3.6.1.4.1.9.9.10.1.1.3.1.1.5.3.1|65|0
1.3.6.1.4.1.9.9.10.1.1.3.1.1.6.3.1|66|0
1.3.6.1.4.1.9.9.10.1.1.3.1.1.7.3.1|66|0
1.3.6.1.4.1.9.9.10.1.1.4.1.1.2.3.1|2|1
1.3.6.1.4.1.9.9.10.1.1.4.1.1.3.3.1|2|1
1.3.6.1.4.1.9.9.10.1.1.4.1.1.4.3.1|66|15998976
1.3.6.1.4.1.9.9.10.1.1.4.1.1.5.3.1|66|1273344
1.3.6.1.4.1.9.9.10.1.1.4.1.1.6.3.1|66|367
1.3.6.1.4.1.9.9.10.1.1.4.1.1.7.3.1|2|2
1.3.6.1.4.1.9.9.10.1.1.4.1.1.8.3.1|2|3
1.3.6.1.4.1.9.9.10.1.1.4.1.1.9.3.1|2|3
1.3.6.1.4.1.9.9.10.1.1.4.1.1.10.3.1|4|flash3
1.3.6.1.4.1.9.9.10.1.1.4.1.1.11.3.1|2|2
1.3.6.1.4.1.9.9.10.1.1.4.1.1.12.3.1|2|45
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.1|66|704
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.2|66|1456
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.3|66|4485
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.4|66|13011760
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.5|66|128
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.7|66|4032
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.8|66|1389
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.9|66|369
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.10|66|556
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.11|66|9373
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.12|66|313
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.13|66|439
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.14|66|1616
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.15|66|3107
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.16|66|8935
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.17|66|17408
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.18|66|27761
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.19|66|7750
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.20|66|577
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.21|66|4554
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.22|66|471
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.23|66|858
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.24|66|8261
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.25|66|14442
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.26|66|40255
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.27|66|4262
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.28|66|6143
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.29|66|62
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.30|66|251
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.31|66|8107
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.32|66|12461
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.33|66|435
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.34|66|12941
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.35|66|1018
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.36|66|8065
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.37|66|4966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.38|66|1654
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.39|66|76045
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.40|66|2508
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.41|66|8273
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.42|66|3646
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.43|66|30565
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.44|66|1767
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.45|66|4375
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.46|66|40030
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.47|66|564
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.48|66|4516
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.49|66|33031
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.50|66|982
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.51|66|18866
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.52|66|57221
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.53|66|590
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.54|66|84439
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.55|66|6521
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.56|66|71596
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.57|66|425
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.58|66|29
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.59|66|5269
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.60|66|5888
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.61|66|45579
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.62|66|14958
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.63|66|6645
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.64|66|30120
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.65|66|13050
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.66|66|23075
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.67|66|35169
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.68|66|8626
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.69|66|1408
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.70|66|14530
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.71|66|1087
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.72|66|12891
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.73|66|4333
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.74|66|5805
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.75|66|5166
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.76|66|5360
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.77|66|3313
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.78|66|2503
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.79|66|732
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.80|66|6258
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.81|66|8339
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.82|66|4083
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.83|66|9054
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.84|66|18037
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.85|66|25558
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.86|66|9980
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.87|66|6329
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.88|66|6853
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.89|66|9262
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.90|66|24023
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.91|66|13850
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.92|66|17216
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.93|66|113
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.94|66|881
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.95|66|890
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.96|66|49
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.97|66|7922
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.98|66|104
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.99|66|563
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.100|66|180
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.101|66|862
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.102|66|37
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.103|66|61
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.104|66|379
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.105|66|124
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.106|66|892
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.107|66|8088
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.108|66|271
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.109|66|45
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.110|66|80
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.111|66|931
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.112|66|916
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.113|66|113
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.114|66|917
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.115|66|1145
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.116|66|311
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.117|66|241
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.118|66|52
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.119|66|185
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.120|66|97
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.121|66|637
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.122|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.123|66|147
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.124|66|891
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.125|66|888
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.126|66|837
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.127|66|9714
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.128|66|881
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.129|66|286
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.130|66|97
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.131|66|303
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.132|66|625
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.133|66|966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.134|66|161
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.135|66|966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.136|66|203
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.137|66|104
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.138|66|125
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.139|66|1734
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.140|66|69498
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.141|66|278
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.142|66|188
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.143|66|1320
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.144|66|878
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.145|66|837
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.146|66|1167
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.147|66|966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.148|66|80
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.149|66|59
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.150|66|1025
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.151|66|59
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.152|66|125
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.153|66|5604
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.154|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.155|66|325
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.156|66|182
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.157|66|1096
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.158|66|1415
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.159|66|515
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.160|66|1918
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.161|66|406
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.162|66|975
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.163|66|551
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.164|66|889
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.165|66|145
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.166|66|479
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.167|66|19923
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.168|66|1576
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.169|66|916
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.170|66|249
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.171|66|179
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.172|66|919
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.173|66|196
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.174|66|1616
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.175|66|148
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.176|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.177|66|4023
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.178|66|1772
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.179|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.180|66|479
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.181|66|916
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.182|66|199
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.183|66|3928
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.184|66|948
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.185|66|243
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.186|66|6389
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.187|66|922
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.188|66|1440
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.189|66|324
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.190|66|403
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.191|66|1686
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.192|66|1130
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.193|66|405
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.194|66|2335
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.195|66|274
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.196|66|1861
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.197|66|195
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.198|66|321
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.199|66|242
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.200|66|126
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.201|66|862
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.202|66|214
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.203|66|45
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.204|66|827
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.205|66|10193
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.206|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.207|66|902
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.208|66|964
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.209|66|139
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.210|66|827
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.211|66|891
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.212|66|7848
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.213|66|190
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.214|66|1021
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.215|66|827
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.216|66|45
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.217|66|128
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.218|66|9178
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.219|66|3132
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.220|66|1182
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.221|66|1106
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.222|66|180
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.223|66|15043
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.224|66|80
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.225|66|280
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.226|66|49
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.227|66|141
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.228|66|1433
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.229|66|155
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.230|66|240
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.231|66|242
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.232|66|478
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.233|66|1301
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.234|66|179
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.235|66|1086
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.236|66|9198
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.237|66|155
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.238|66|1125
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.239|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.240|66|113
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.241|66|274
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.242|66|908
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.243|66|97
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.244|66|0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.245|66|145
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.246|66|8406
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.247|66|12291
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.248|66|62
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.249|66|941
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.250|66|954
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.251|66|719
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.252|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.253|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.254|66|8179
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.255|66|914
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.256|66|141
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.257|66|991
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.258|66|124
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.259|66|263
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.260|66|1158
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.261|66|10133
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.262|66|278
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.263|66|160
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.264|66|12201
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.265|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.266|66|773
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.267|66|1391
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.268|66|966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.269|66|8467
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.270|66|890
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.271|66|1187
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.272|66|1066
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.273|66|1095
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.274|66|286
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.275|66|1329
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.276|66|547
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.277|66|957
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.278|66|1021
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.279|66|936
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.280|66|1141
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.281|66|35
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.282|66|552
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.283|66|101
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.284|66|1909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.285|66|922
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.286|66|140
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.287|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.288|66|242
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.289|66|80
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.290|66|7003
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.291|66|1188
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.292|66|584
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.293|66|1319
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.294|66|8432
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.295|66|248
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.296|66|207
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.297|66|455
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.298|66|891
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.299|66|1021
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.300|66|1099
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.301|66|145
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.302|66|905
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.303|66|1120
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.304|66|179
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.305|66|113
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.306|66|1223
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.307|66|916
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.308|66|1059
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.309|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.310|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.311|66|596
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.312|66|45
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.313|66|1742
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.314|66|240
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.315|66|113
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.316|66|890
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.317|66|6636
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.318|66|10157
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.319|66|53
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.320|66|997
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.321|66|1070
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.322|66|1612
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.323|66|80
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.324|66|966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.325|66|155
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.326|66|465
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.327|66|186
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.328|66|986
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.329|66|45
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.330|66|184
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.331|66|1060
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.332|66|167
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.333|66|1717
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.334|66|852
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.335|66|1087
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.336|66|149
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.337|66|218
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.338|66|249
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.339|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.340|66|966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.341|66|289
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.342|66|1385
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.343|66|1291
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.344|66|1021
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.345|66|916
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.346|66|1021
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.347|66|476
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.348|66|1021
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.349|66|1062
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.350|66|155
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.351|66|2041
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.352|66|113
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.353|66|0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.354|66|296
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.355|66|909
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.356|66|199
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.357|66|244
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.358|66|1840
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.359|66|7769
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.360|66|242
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.361|66|1135
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.362|66|579
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.363|66|41897
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.364|66|41897
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.3.1.366|66|10930
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.1|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.2|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.3|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.4|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.5|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.7|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.8|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.9|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.10|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.11|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.12|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.13|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.14|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.15|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.16|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.17|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.18|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.19|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.20|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.21|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.22|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.23|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.24|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.25|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.26|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.27|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.28|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.29|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.30|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.31|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.32|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.33|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.34|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.35|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.36|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.37|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.38|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.39|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.40|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.41|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.42|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.43|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.44|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.45|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.46|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.47|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.48|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.49|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.50|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.51|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.52|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.53|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.54|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.55|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.56|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.57|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.58|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.59|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.60|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.61|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.62|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.63|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.64|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.65|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.66|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.67|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.68|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.69|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.70|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.71|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.72|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.73|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.74|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.75|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.76|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.77|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.78|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.79|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.80|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.81|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.82|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.83|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.84|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.85|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.86|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.87|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.88|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.89|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.90|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.91|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.92|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.93|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.94|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.95|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.96|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.97|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.98|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.99|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.100|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.101|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.102|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.103|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.104|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.105|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.106|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.107|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.108|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.109|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.110|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.111|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.112|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.113|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.114|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.115|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.116|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.117|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.118|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.119|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.120|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.121|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.122|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.123|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.124|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.125|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.126|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.127|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.128|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.129|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.130|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.131|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.132|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.133|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.134|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.135|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.136|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.137|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.138|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.139|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.140|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.141|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.142|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.143|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.144|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.145|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.146|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.147|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.148|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.149|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.150|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.151|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.152|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.153|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.154|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.155|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.156|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.157|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.158|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.159|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.160|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.161|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.162|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.163|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.164|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.165|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.166|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.167|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.168|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.169|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.170|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.171|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.172|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.173|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.174|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.175|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.176|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.177|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.178|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.179|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.180|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.181|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.182|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.183|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.184|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.185|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.186|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.187|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.188|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.189|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.190|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.191|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.192|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.193|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.194|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.195|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.196|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.197|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.198|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.199|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.200|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.201|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.202|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.203|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.204|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.205|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.206|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.207|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.208|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.209|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.210|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.211|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.212|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.213|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.214|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.215|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.216|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.217|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.218|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.219|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.220|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.221|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.222|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.223|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.224|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.225|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.226|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.227|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.228|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.229|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.230|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.231|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.232|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.233|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.234|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.235|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.236|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.237|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.238|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.239|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.240|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.241|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.242|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.243|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.244|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.245|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.246|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.247|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.248|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.249|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.250|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.251|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.252|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.253|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.254|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.255|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.256|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.257|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.258|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.259|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.260|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.261|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.262|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.263|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.264|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.265|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.266|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.267|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.268|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.269|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.270|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.271|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.272|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.273|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.274|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.275|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.276|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.277|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.278|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.279|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.280|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.281|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.282|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.283|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.284|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.285|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.286|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.287|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.288|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.289|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.290|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.291|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.292|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.293|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.294|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.295|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.296|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.297|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.298|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.299|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.300|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.301|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.302|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.303|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.304|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.305|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.306|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.307|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.308|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.309|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.310|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.311|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.312|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.313|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.314|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.315|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.316|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.317|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.318|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.319|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.320|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.321|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.322|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.323|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.324|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.325|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.326|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.327|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.328|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.329|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.330|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.331|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.332|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.333|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.334|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.335|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.336|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.337|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.338|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.339|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.340|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.341|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.342|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.343|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.344|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.345|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.346|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.347|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.348|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.349|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.350|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.351|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.352|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.353|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.354|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.355|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.356|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.357|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.358|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.359|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.360|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.361|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.362|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.363|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.364|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.3.1.366|4|0x0
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.1|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.2|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.3|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.4|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.5|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.7|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.8|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.9|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.10|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.11|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.12|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.13|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.14|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.15|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.16|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.17|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.18|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.19|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.20|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.21|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.22|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.23|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.24|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.25|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.26|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.27|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.28|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.29|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.30|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.31|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.32|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.33|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.34|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.35|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.36|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.37|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.38|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.39|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.40|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.41|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.42|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.43|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.44|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.45|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.46|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.47|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.48|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.49|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.50|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.51|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.52|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.53|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.54|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.55|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.56|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.57|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.58|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.59|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.60|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.61|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.62|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.63|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.64|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.65|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.66|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.67|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.68|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.69|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.70|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.71|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.72|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.73|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.74|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.75|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.76|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.77|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.78|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.79|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.80|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.81|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.82|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.83|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.84|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.85|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.86|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.87|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.88|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.89|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.90|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.91|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.92|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.93|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.94|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.95|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.96|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.97|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.98|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.99|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.100|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.101|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.102|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.103|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.104|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.105|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.106|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.107|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.108|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.109|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.110|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.111|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.112|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.113|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.114|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.115|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.116|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.117|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.118|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.119|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.120|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.121|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.122|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.123|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.124|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.125|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.126|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.127|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.128|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.129|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.130|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.131|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.132|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.133|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.134|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.135|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.136|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.137|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.138|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.139|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.140|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.141|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.142|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.143|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.144|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.145|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.146|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.147|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.148|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.149|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.150|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.151|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.152|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.153|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.154|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.155|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.156|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.157|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.158|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.159|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.160|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.161|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.162|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.163|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.164|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.165|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.166|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.167|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.168|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.169|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.170|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.171|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.172|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.173|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.174|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.175|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.176|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.177|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.178|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.179|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.180|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.181|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.182|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.183|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.184|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.185|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.186|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.187|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.188|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.189|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.190|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.191|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.192|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.193|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.194|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.195|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.196|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.197|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.198|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.199|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.200|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.201|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.202|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.203|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.204|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.205|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.206|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.207|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.208|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.209|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.210|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.211|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.212|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.213|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.214|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.215|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.216|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.217|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.218|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.219|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.220|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.221|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.222|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.223|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.224|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.225|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.226|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.227|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.228|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.229|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.230|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.231|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.232|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.233|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.234|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.235|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.236|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.237|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.238|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.239|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.240|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.241|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.242|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.243|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.244|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.245|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.246|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.247|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.248|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.249|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.250|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.251|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.252|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.253|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.254|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.255|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.256|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.257|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.258|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.259|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.260|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.261|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.262|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.263|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.264|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.265|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.266|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.267|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.268|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.269|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.270|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.271|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.272|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.273|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.274|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.275|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.276|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.277|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.278|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.279|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.280|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.281|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.282|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.283|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.284|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.285|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.286|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.287|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.288|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.289|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.290|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.291|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.292|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.293|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.294|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.295|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.296|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.297|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.298|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.299|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.300|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.301|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.302|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.303|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.304|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.305|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.306|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.307|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.308|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.309|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.310|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.311|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.312|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.313|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.314|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.315|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.316|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.317|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.318|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.319|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.320|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.321|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.322|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.323|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.324|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.325|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.326|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.327|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.328|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.329|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.330|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.331|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.332|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.333|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.334|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.335|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.336|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.337|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.338|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.339|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.340|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.341|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.342|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.343|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.344|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.345|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.346|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.347|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.348|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.349|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.350|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.351|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.352|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.353|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.354|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.355|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.356|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.357|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.358|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.359|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.360|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.361|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.362|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.363|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.364|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.3.1.366|2|3
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.1|4x|2f
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.2|4x|766c616e2e646174
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.3|4x|636f6e6669672e746578742e6a756c372d32303136
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.4|4x|63333735302d697073657276696365736b392d6d7a2e3132322d35352e534531302e62696e
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.5|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.7|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.8|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6170707375692e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.9|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7072696e746672616d652e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.10|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f636f6e73742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.11|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f78686f6d652e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.12|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f656d7074792e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.13|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6e736261636b2e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.14|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6c61796572732e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.15|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74726f75626c6573686f6f74696e675f42726f777365722e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.16|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f6f6c6261722e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.17|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f73697465776964652e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.18|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f67726170682e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.19|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d656e752e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.20|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7469746c652e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.21|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d656e752e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.22|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f686f6d65706167652e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.23|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c706672616d65776f726b2e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.24|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f636f6d626f2e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.25|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f707265666c696768742e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.26|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f72747461626c652e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.27|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f7062616e6e65726e6f6670762e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.28|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f73736c686f6d652e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.29|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d6f72652e747874
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.30|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f626f726465722e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.31|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7374617475732e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.32|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f73657475705f7265706f72742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.33|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6261636b2e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.34|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f666f726d732e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.35|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72656469726563742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.36|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74726f75626c6573686f6f74696e675f4a6176615363726970742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.37|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f6f6c6261722e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.38|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d656e752e637373
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.39|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6672616d65776f726b2e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.40|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74726f75626c6573686f6f74696e675f4f532e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.41|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7374796c6573686565742e637373
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.42|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f626f74746f6d62616e6e65722e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.43|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f727472756e74696d652e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.44|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f636e615f757067726164652e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.45|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f726573657474696d65722e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.46|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6d6f6e69746f72646174612e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.47|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f757067726164657374617475732e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.48|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f74656c6e65742e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.49|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f667477617265757067726164652d746f702e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.50|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f667477617265757067726164652e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.51|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f7274737461746973746963732e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.52|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f7873657475702e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.53|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72656c6f61647374617475732e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.54|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f64617368626f6172642e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.55|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f657870726573732d73657475702e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.56|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736d617274706f7274732e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.57|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72656c6f61647374617475732e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.58|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f72742e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.59|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736f667477617265757067726164652d746f702e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.60|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f72657365742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.61|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f72747365742e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.62|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f746f7062616e6e65722e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.63|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6c6567656e642e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.64|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f6865616c74682e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.65|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f646973636f7665722e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.66|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f646973636f7665722e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.67|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f736d617274706f7274732e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.68|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f706f727473746174732e6a73
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.69|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.70|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7073746174732e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.71|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f68656c702e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.72|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f69705f68656c702e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.73|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f68656c70746f6f6c6261722e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.74|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7873657469702e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.75|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f746f632e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.76|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f737570706f72742e7368746d6c
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.77|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f72657365742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.78|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f636e612e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.79|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7873657475705f68656c702e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.80|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f70736574732e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.81|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f737570706f72742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.82|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f74656c6e65742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.83|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f707374617475732e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.84|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f70736d6172742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.85|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f61626f75742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.86|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f787365747374642e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.87|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f757067726164652e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.88|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f7472656e64732e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.89|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f78736574696e69742e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.90|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f646173686272642e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.91|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f68656c702f6c6567656e642e68746d
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.92|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.93|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.94|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636f6d626f4172726f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.95|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.96|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370616365722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.97|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530323446585f322e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.98|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d6c6561662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.99|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f68656c702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.100|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.101|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f72696768745f6163746976652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.102|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.103|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f77686974656d61736b31315f757072696768742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.104|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69636f6e5f706f7075702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.105|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.106|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644e6f6e652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.107|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f313674642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.108|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f666174616c5f6572726f725f6269672e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.109|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626f74746f6d5f6c6566742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.110|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.111|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f62675f696e6163746976652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.112|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.113|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.114|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.115|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.116|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f79656c6c6f775f626561642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.117|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.118|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f75706c6566742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.119|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f6f72616e67652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.120|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.121|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f736d617274706f7274732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.122|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.123|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7265642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.124|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.125|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.126|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f75705f6172726f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.127|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306734385f342e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.128|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704e6f6e652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.129|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f677265656e616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.130|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.131|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626173652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.132|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7072696e742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.133|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.134|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.135|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.136|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.137|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d726172726f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.138|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.139|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f68656c705f6f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.140|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636e615f646f776e6c6f61645f73706c6173682e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.141|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.142|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.143|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313038312e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.144|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e7465726e616c5f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.145|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f646f776e5f6172726f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.146|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f757067726164652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.147|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.148|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.149|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d657465725f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.150|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f7278725f666f725f6c6567656e642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.151|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d657465725f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.152|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.153|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706e6770726f67726573732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.154|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.155|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6e6f6c696e6b5f626561642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.156|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.157|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644d756c7469706c652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.158|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.159|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636f6e6669726d2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.160|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f736d617274706f7274735f6f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.161|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.162|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037372e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.163|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.164|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.165|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.166|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.167|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323333392e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.168|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d656e755f6d6f6e69746f722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.169|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.170|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.171|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.172|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f6c6566745f696e6163746976652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.173|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f626c75652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.174|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6f676f2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.175|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.176|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.177|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66616e5f616e696d6174696f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.178|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6567656e645f6f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.179|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f6f72616e67652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.180|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.181|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.182|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.183|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74656d705f7265642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.184|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67726e5f766572746c696e65735f746f702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.185|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.186|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6670616e656c2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.187|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f61646d696e646f776e5f626561642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.188|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f736d617274706f7274735f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.189|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6661756c74795f626561642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.190|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.191|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74656d705f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.192|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370526f757465722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.193|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7175657374696f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.194|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7377757067726164655f6f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.195|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.196|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66616e5f646f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.197|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.198|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c696e6b75705f626561642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.199|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.200|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.201|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636f6d626f507265737365644172726f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.202|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.203|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f746f705f6c6566742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.204|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67617567655f6f66665f6c696e652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.205|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306734385f34702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.206|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.207|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f726566726573682e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.208|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353032345f325f6d6f64652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.209|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.210|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67617567655f6f6e5f6c696e652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.211|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.212|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353032345f32702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.213|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f76696f6c65742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.214|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.215|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f62675f6163746976652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.216|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f636c6561722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.217|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.218|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69705f666967332e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.219|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323335332e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.220|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313038302e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.221|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365645377697463682e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.222|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.223|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f64617368626f6172642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.224|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.225|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.226|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706978656c2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.227|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.228|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7377757067726164655f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.229|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.230|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.231|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.232|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.233|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f666f725f6c6567656e642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.234|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.235|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037362e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.236|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f32345f342e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.237|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.238|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f737050726573736564495050686f6e652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.239|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.240|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.241|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.242|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.243|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.244|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f62756c6c65742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.245|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.246|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306732345f34702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.247|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f737770726f67726573732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.248|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f77686974656d61736b31315f626f746c6566742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.249|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.250|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c696e6b6661756c74795f626561642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.251|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f666174616c5f6572726f722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.252|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f626c75652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.253|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f76696f6c65742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.254|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f63333735306732345f342e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.255|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f676c6f73736172795f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.256|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.257|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644465736b746f702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.258|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.259|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.260|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6567656e645f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.261|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353034385f342e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.262|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.263|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f626173652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.264|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323334352e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.265|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.266|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7377726566726573682e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.267|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f6c672e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.268|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.269|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f32345f302e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.270|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.271|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037392e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.272|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370507265737365644163636573732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.273|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73705377697463682e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.274|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.275|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f726566726573685f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.276|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.277|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f67726e5f766572746c696e65735f626f74746f6d2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.278|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.279|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.280|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d656e755f746f6f6c732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.281|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c61636b2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.282|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f626c696e6b677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.283|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d646172726f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.284|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7072696e745f6f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.285|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f72696768745f696e6163746976652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.286|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.287|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.288|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.289|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.290|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69705f666967322e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.291|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f68656c705f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.292|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.293|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7072696e745f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.294|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353032345f322e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.295|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.296|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.297|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.298|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.299|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.300|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6e6f726d616c2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.301|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.302|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f7072696e745f6f66662e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.303|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7370495050686f6e652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.304|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f656d7074795f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.305|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.306|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037352e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.307|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.308|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7761726e696e672e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.309|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.310|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f696e765f626c696e6b677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.311|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7570646174652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.312|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f626f74746f6d5f72696768742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.313|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706e676661696c7572652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.314|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.315|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.316|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.317|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6333373530675f3132732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.318|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f633337353034385f34702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.319|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f646f776e6c6566742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.320|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6465736b746f702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.321|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74625f62672e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.322|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f706e67737563636573732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.323|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c65645f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.324|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.325|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f6379616e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.326|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f677265656e5f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.327|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f7265642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.328|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704465736b746f702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.329|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f746f705f72696768742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.330|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6377646d5f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.331|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73697465776964655f746578745f73746172742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.332|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6c6567656e642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.333|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f74656d702e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.334|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7461625f6c6566745f6163746976652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.335|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704d756c7469706c652e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.336|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f646b677265656e6d61736b32385f757072696768742e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.337|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f727a725f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.338|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f677265656e616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.339|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.340|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.341|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.342|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6261725f6c67322e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.343|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3133313037382e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.344|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.345|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f74785f79656c6c6f772e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.346|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.347|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f626c696e6b616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.348|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.349|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f73704163636573732e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.350|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7366705f656d7074795f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.351|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f726566726573685f6f6e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.352|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f66785f677265656e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.353|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f3132323038352e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.354|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f7761726e696e675f6269672e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.355|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6377646d5f7265642e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.356|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f31306769675f656d7074795f616d6265722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.357|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f6c785f62726f776e2e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.358|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f6d656e755f636f6e6669672e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.359|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f69705f666967312e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.360|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f676269635f745f677261792e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.361|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f68746d6c2f696d616765732f737050726573736564526f757465722e676966
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.362|4x|63333735302d6970626173652d6d7a2e3132322d32352e534542342f696e666f
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.363|4x|636f6e6669672e746578742e6261636b7570
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.364|4x|636f6e6669672e746578742e6f6c64
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.3.1.366|4x|636f6e6669672e74657874
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.1|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.2|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.3|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.4|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.5|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.7|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.8|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.9|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.10|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.11|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.12|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.13|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.14|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.15|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.16|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.17|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.18|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.19|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.20|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.21|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.22|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.23|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.24|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.25|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.26|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.27|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.28|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.29|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.30|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.31|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.32|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.33|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.34|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.35|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.36|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.37|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.38|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.39|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.40|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.41|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.42|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.43|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.44|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.45|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.46|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.47|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.48|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.49|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.50|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.51|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.52|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.53|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.54|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.55|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.56|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.57|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.58|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.59|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.60|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.61|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.62|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.63|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.64|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.65|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.66|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.67|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.68|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.69|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.70|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.71|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.72|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.73|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.74|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.75|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.76|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.77|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.78|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.79|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.80|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.81|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.82|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.83|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.84|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.85|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.86|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.87|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.88|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.89|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.90|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.91|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.92|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.93|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.94|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.95|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.96|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.97|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.98|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.99|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.100|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.101|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.102|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.103|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.104|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.105|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.106|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.107|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.108|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.109|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.110|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.111|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.112|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.113|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.114|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.115|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.116|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.117|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.118|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.119|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.120|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.121|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.122|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.123|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.124|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.125|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.126|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.127|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.128|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.129|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.130|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.131|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.132|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.133|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.134|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.135|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.136|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.137|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.138|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.139|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.140|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.141|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.142|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.143|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.144|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.145|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.146|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.147|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.148|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.149|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.150|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.151|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.152|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.153|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.154|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.155|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.156|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.157|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.158|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.159|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.160|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.161|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.162|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.163|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.164|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.165|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.166|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.167|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.168|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.169|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.170|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.171|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.172|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.173|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.174|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.175|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.176|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.177|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.178|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.179|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.180|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.181|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.182|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.183|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.184|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.185|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.186|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.187|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.188|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.189|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.190|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.191|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.192|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.193|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.194|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.195|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.196|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.197|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.198|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.199|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.200|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.201|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.202|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.203|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.204|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.205|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.206|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.207|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.208|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.209|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.210|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.211|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.212|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.213|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.214|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.215|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.216|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.217|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.218|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.219|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.220|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.221|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.222|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.223|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.224|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.225|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.226|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.227|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.228|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.229|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.230|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.231|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.232|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.233|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.234|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.235|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.236|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.237|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.238|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.239|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.240|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.241|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.242|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.243|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.244|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.245|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.246|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.247|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.248|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.249|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.250|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.251|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.252|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.253|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.254|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.255|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.256|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.257|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.258|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.259|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.260|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.261|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.262|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.263|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.264|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.265|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.266|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.267|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.268|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.269|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.270|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.271|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.272|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.273|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.274|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.275|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.276|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.277|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.278|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.279|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.280|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.281|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.282|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.283|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.284|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.285|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.286|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.287|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.288|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.289|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.290|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.291|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.292|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.293|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.294|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.295|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.296|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.297|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.298|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.299|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.300|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.301|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.302|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.303|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.304|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.305|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.306|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.307|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.308|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.309|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.310|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.311|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.312|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.313|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.314|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.315|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.316|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.317|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.318|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.319|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.320|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.321|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.322|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.323|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.324|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.325|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.326|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.327|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.328|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.329|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.330|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.331|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.332|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.333|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.334|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.335|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.336|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.337|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.338|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.339|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.340|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.341|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.342|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.343|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.344|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.345|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.346|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.347|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.348|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.349|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.350|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.351|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.352|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.353|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.354|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.355|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.356|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.357|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.358|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.359|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.360|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.361|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.362|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.363|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.364|2|1
1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.3.1.366|2|1
1.3.6.1.4.1.9.9.10.1.4.1.0|2|2
1.3.6.1.4.1.9.9.10.1.4.2.0|2|2
1.3.6.1.4.1.9.9.13.1.1.0|2|13
1.3.6.1.4.1.9.9.13.1.4.1.2.3004|4x|53776974636823332c2046616e2331
1.3.6.1.4.1.9.9.13.1.4.1.3.3004|2|1
1.3.6.1.4.1.9.9.13.1.5.1.2.3003|4x|5377332c20505331204e6f726d616c2c20525053204e6f744578697374
1.3.6.1.4.1.9.9.13.1.5.1.3.3003|2|1
1.3.6.1.4.1.9.9.13.1.5.1.4.3003|2|2
1.3.6.1.4.1.9.9.13.2.1.0|2|2
1.3.6.1.4.1.9.9.13.2.3.0|2|2
1.3.6.1.4.1.9.9.13.2.4.0|2|2
1.3.6.1.4.1.9.9.13.2.5.0|2|2
1.3.6.1.4.1.9.9.13.2.6.0|2|2
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11001|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11002|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11003|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11004|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11005|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11006|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11007|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11008|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11009|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11010|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11011|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11012|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11013|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11014|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11015|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11016|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11017|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11018|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11019|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11020|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11021|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11022|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11023|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11024|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11025|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11026|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11027|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11028|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11029|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11030|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11031|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11032|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11033|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11034|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11035|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11036|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11037|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11038|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11039|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11040|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11041|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11042|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11043|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11044|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11045|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11046|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11047|2|2
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11048|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11101|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11102|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11103|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.2.11104|2|1
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11001|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11002|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11003|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11004|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11005|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11006|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11007|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11008|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11009|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11010|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11011|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11012|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11013|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11014|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11015|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11016|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11017|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11018|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11019|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11020|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11021|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11022|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11023|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11024|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11025|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11026|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11027|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11028|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11029|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11030|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11031|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11032|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11033|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11034|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11035|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11036|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11037|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11038|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11039|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11040|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11041|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11042|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11043|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11044|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11045|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11046|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11047|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11048|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11101|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11102|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11103|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.4.11104|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11001|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11002|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11003|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11004|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11005|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11006|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11007|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11008|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11009|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11010|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11011|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11012|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11013|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11014|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11015|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11016|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11017|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11018|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11019|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11020|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11021|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11022|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11023|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11024|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11025|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11026|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11027|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11028|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11029|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11030|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11031|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11032|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11033|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11034|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11035|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11036|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11037|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11038|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11039|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11040|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11041|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11042|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11043|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11044|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11045|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11046|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11047|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11048|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11101|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11102|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11103|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.5.11104|2|0
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11001|4x|4661737445746865726e6574332f302f31
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11002|4x|4661737445746865726e6574332f302f32
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11003|4x|4661737445746865726e6574332f302f33
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11004|4x|4661737445746865726e6574332f302f34
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11005|4x|4661737445746865726e6574332f302f35
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11006|4x|4661737445746865726e6574332f302f36
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11007|4x|4661737445746865726e6574332f302f37
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11008|4x|4661737445746865726e6574332f302f38
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11009|4x|4661737445746865726e6574332f302f39
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11010|4x|4661737445746865726e6574332f302f3130
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11011|4x|4661737445746865726e6574332f302f3131
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11012|4x|4661737445746865726e6574332f302f3132
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11013|4x|4661737445746865726e6574332f302f3133
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11014|4x|4661737445746865726e6574332f302f3134
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11015|4x|4661737445746865726e6574332f302f3135
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11016|4x|4661737445746865726e6574332f302f3136
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11017|4x|4661737445746865726e6574332f302f3137
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11018|4x|4661737445746865726e6574332f302f3138
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11019|4x|4661737445746865726e6574332f302f3139
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11020|4x|4661737445746865726e6574332f302f3230
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11021|4x|4661737445746865726e6574332f302f3231
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11022|4x|4661737445746865726e6574332f302f3232
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11023|4x|4661737445746865726e6574332f302f3233
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11024|4x|4661737445746865726e6574332f302f3234
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11025|4x|4661737445746865726e6574332f302f3235
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11026|4x|4661737445746865726e6574332f302f3236
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11027|4x|4661737445746865726e6574332f302f3237
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11028|4x|4661737445746865726e6574332f302f3238
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11029|4x|4661737445746865726e6574332f302f3239
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11030|4x|4661737445746865726e6574332f302f3330
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11031|4x|4661737445746865726e6574332f302f3331
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11032|4x|4661737445746865726e6574332f302f3332
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11033|4x|4661737445746865726e6574332f302f3333
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11034|4x|4661737445746865726e6574332f302f3334
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11035|4x|4661737445746865726e6574332f302f3335
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11036|4x|4661737445746865726e6574332f302f3336
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11037|4x|4661737445746865726e6574332f302f3337
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11038|4x|4661737445746865726e6574332f302f3338
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11039|4x|4661737445746865726e6574332f302f3339
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11040|4x|4661737445746865726e6574332f302f3430
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11041|4x|4661737445746865726e6574332f302f3431
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11042|4x|4661737445746865726e6574332f302f3432
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11043|4x|4661737445746865726e6574332f302f3433
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11044|4x|4661737445746865726e6574332f302f3434
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11045|4x|4661737445746865726e6574332f302f3435
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11046|4x|4661737445746865726e6574332f302f3436
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11047|4x|4661737445746865726e6574332f302f3437
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11048|4x|4661737445746865726e6574332f302f3438
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11101|4x|4769676162697445746865726e6574332f302f31
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11102|4x|4769676162697445746865726e6574332f302f32
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11103|4x|4769676162697445746865726e6574332f302f33
1.3.6.1.4.1.9.9.23.1.1.1.1.6.11104|4x|4769676162697445746865726e6574332f302f34
1.3.6.1.4.1.9.9.23.1.2.1.1.3.11048.8|2|1
1.3.6.1.4.1.9.9.23.1.2.1.1.4.11048.8|4x|0acc580a
1.3.6.1.4.1.9.9.23.1.2.1.1.5.11048.8|4x|436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228322945332c2052454c4541534520534f4654574152452028666333290a546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f72740a436f707972696768742028632920313938362d3230313520627920436973636f2053797374656d732c20496e632e0a436f6d70696c6564205765642032362d4175672d31352030373a31322062792070726f645f72656c5f7465616d
1.3.6.1.4.1.9.9.23.1.2.1.1.6.11048.8|4x|4332393630582e7561632e6c6f63616c
1.3.6.1.4.1.9.9.23.1.2.1.1.7.11048.8|4x|4769676162697445746865726e6574312f302f38
1.3.6.1.4.1.9.9.23.1.2.1.1.8.11048.8|4x|636973636f2057532d4332393630582d323450442d4c
1.3.6.1.4.1.9.9.23.1.2.1.1.9.11048.8|4x|00000029
1.3.6.1.4.1.9.9.23.1.2.1.1.10.11048.8|4|
1.3.6.1.4.1.9.9.23.1.2.1.1.11.11048.8|2|1
1.3.6.1.4.1.9.9.23.1.2.1.1.12.11048.8|2|3
1.3.6.1.4.1.9.9.23.1.2.1.1.24.11048.8|67|2677086091
1.3.6.1.4.1.9.9.23.1.3.1.0|2|1
1.3.6.1.4.1.9.9.23.1.3.2.0|2|60
1.3.6.1.4.1.9.9.23.1.3.3.0|2|180
1.3.6.1.4.1.9.9.23.1.3.4.0|4|Profiler3750
1.3.6.1.4.1.9.9.23.1.3.5.0|67|6972053
1.3.6.1.4.1.9.9.25.1.1.1.2.1|4x|43575f424547494e242d67732d697073657276696365736b392d6d24
1.3.6.1.4.1.9.9.25.1.1.1.2.2|4x|43575f494d4147452443333735302d495053455256494345534b392d4d24
1.3.6.1.4.1.9.9.25.1.1.1.2.3|4x|43575f46414d494c5924433337353024
1.3.6.1.4.1.9.9.25.1.1.1.2.4|4x|43575f464541545552452449507c4c415945525f337c504c55537c5353487c334445537c4d494e5f4452414d5f4d45473d31323824
1.3.6.1.4.1.9.9.25.1.1.1.2.5|4x|43575f56455253494f4e2431322e32283535295345313024
1.3.6.1.4.1.9.9.25.1.1.1.2.6|4x|43575f4d454449412452414d24
1.3.6.1.4.1.9.9.25.1.1.1.2.7|4x|43575f535953444553435224436973636f20494f5320536f6674776172652c20433337353020536f667477617265202843333735302d495053455256494345534b392d4d292c2056657273696f6e2031322e3228353529534531302c2052454c4541534520534f4654574152452028666332290a546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f72740a436f707972696768742028632920313938362d3230313520627920436973636f2053797374656d732c20496e632e0a436f6d70696c6564205765642031312d4665622d31352031313a34302062792070726f645f72652b
1.3.6.1.4.1.9.9.25.1.1.1.2.8|4x|43575f454e44242d67732d697073657276696365736b392d6d24
1.3.6.1.4.1.9.9.41.1.1.1.0|65|0
1.3.6.1.4.1.9.9.41.1.1.2.0|2|2
1.3.6.1.4.1.9.9.41.1.1.3.0|2|5
1.3.6.1.4.1.9.9.41.1.1.4.0|65|273148
1.3.6.1.4.1.9.9.41.1.1.5.0|65|0
1.3.6.1.4.1.9.9.41.1.2.1.0|2|1
1.3.6.1.4.1.9.9.41.1.2.2.0|65|116314
1.3.6.1.4.1.9.9.41.1.2.3.1.2.116315|4|LINK
1.3.6.1.4.1.9.9.41.1.2.3.1.3.116315|2|4
1.3.6.1.4.1.9.9.41.1.2.3.1.4.116315|4|UPDOWN
1.3.6.1.4.1.9.9.41.1.2.3.1.5.116315|4x|496e74657266616365204661737445746865726e6574332f302f34322c206368616e67656420737461746520746f20646f776e
1.3.6.1.4.1.9.9.41.1.2.3.1.6.116315|67|697205634
1.3.6.1.4.1.9.9.42.1.1.1.0|4x|322e322e3020526f756e6420547269702054696d65204d4942
1.3.6.1.4.1.9.9.42.1.1.2.0|2|16384
1.3.6.1.4.1.9.9.42.1.1.3.0|67|0
1.3.6.1.4.1.9.9.42.1.1.4.0|2|6082
1.3.6.1.4.1.9.9.42.1.1.5.0|2|1
1.3.6.1.4.1.9.9.42.1.1.6.0|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.1|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.2|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.5|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.6|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.7|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.8|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.9|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.11|2|1
1.3.6.1.4.1.9.9.42.1.1.7.1.2.12|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.2|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.3|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.24|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.25|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.26|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.27|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.29|2|1
1.3.6.1.4.1.9.9.42.1.1.8.1.2.30|2|1
1.3.6.1.4.1.9.9.42.1.1.10.0|2|6075
1.3.6.1.4.1.9.9.42.1.1.11.0|2|8304058
1.3.6.1.4.1.9.9.42.1.1.12.0|4|
1.3.6.1.4.1.9.9.42.1.1.13.0|2|2
1.3.6.1.4.1.9.9.42.1.1.15.0|2|0
1.3.6.1.4.1.9.9.43.1.1.1.0|67|464861342
1.3.6.1.4.1.9.9.43.1.1.2.0|67|577156856
1.3.6.1.4.1.9.9.43.1.1.3.0|67|464861710
1.3.6.1.4.1.9.9.43.1.1.4.0|2|10
1.3.6.1.4.1.9.9.43.1.1.5.0|65|180
1.3.6.1.4.1.9.9.43.1.1.6.1.2.181|67|464822931
1.3.6.1.4.1.9.9.43.1.1.6.1.2.182|67|464832883
1.3.6.1.4.1.9.9.43.1.1.6.1.2.183|67|464836438
1.3.6.1.4.1.9.9.43.1.1.6.1.2.184|67|464837244
1.3.6.1.4.1.9.9.43.1.1.6.1.2.185|67|464856960
1.3.6.1.4.1.9.9.43.1.1.6.1.2.186|67|464859992
1.3.6.1.4.1.9.9.43.1.1.6.1.2.187|67|464861710
1.3.6.1.4.1.9.9.43.1.1.6.1.2.188|67|577151376
1.3.6.1.4.1.9.9.43.1.1.6.1.2.189|67|577154760
1.3.6.1.4.1.9.9.43.1.1.6.1.2.190|67|577156856
1.3.6.1.4.1.9.9.43.1.1.6.1.3.181|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.182|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.183|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.184|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.185|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.186|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.187|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.188|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.189|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.3.190|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.4.181|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.4.182|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.4.183|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.4.184|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.4.185|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.4.186|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.4.187|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.4.188|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.4.189|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.4.190|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.5.181|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.5.182|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.5.183|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.5.184|2|4
1.3.6.1.4.1.9.9.43.1.1.6.1.5.185|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.5.186|2|3
1.3.6.1.4.1.9.9.43.1.1.6.1.5.187|2|4
1.3.6.1.4.1.9.9.43.1.1.6.1.5.188|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.5.189|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.5.190|2|2
1.3.6.1.4.1.9.9.43.1.1.6.1.6.181|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.182|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.183|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.184|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.185|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.186|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.187|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.188|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.189|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.6.190|2|5
1.3.6.1.4.1.9.9.43.1.1.6.1.7.181|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.182|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.183|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.184|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.185|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.186|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.187|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.188|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.189|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.7.190|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.8.181|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.182|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.183|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.184|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.185|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.186|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.187|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.188|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.189|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.8.190|4|admin
1.3.6.1.4.1.9.9.43.1.1.6.1.9.181|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.182|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.183|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.184|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.185|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.186|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.187|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.188|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.189|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.9.190|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.10.181|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.182|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.183|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.184|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.185|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.186|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.187|64x|ac15112f
1.3.6.1.4.1.9.9.43.1.1.6.1.10.188|64x|ac1510a5
1.3.6.1.4.1.9.9.43.1.1.6.1.10.189|64x|ac1510a5
1.3.6.1.4.1.9.9.43.1.1.6.1.10.190|64x|ac1510a5
1.3.6.1.4.1.9.9.43.1.1.6.1.11.181|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.182|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.183|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.184|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.185|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.186|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.187|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.188|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.189|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.11.190|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.12.181|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.182|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.183|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.184|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.185|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.186|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.187|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.188|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.189|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.12.190|64x|00000000
1.3.6.1.4.1.9.9.43.1.1.6.1.13.181|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.182|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.183|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.184|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.185|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.186|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.187|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.188|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.189|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.13.190|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.181|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.182|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.183|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.184|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.185|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.186|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.187|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.188|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.189|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.14.190|4|
1.3.6.1.4.1.9.9.43.1.1.6.1.16.181|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.182|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.183|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.184|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.185|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.186|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.187|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.188|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.189|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.16.190|2|1
1.3.6.1.4.1.9.9.43.1.1.6.1.17.181|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.182|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.183|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.184|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.185|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.186|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.187|4x|3137322e32312e31372e3437
1.3.6.1.4.1.9.9.43.1.1.6.1.17.188|4x|3137322e32312e31362e313635
1.3.6.1.4.1.9.9.43.1.1.6.1.17.189|4x|3137322e32312e31362e313635
1.3.6.1.4.1.9.9.43.1.1.6.1.17.190|4x|3137322e32312e31362e313635
1.3.6.1.4.1.9.9.43.1.1.6.1.18.181|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.182|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.183|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.184|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.185|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.186|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.187|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.188|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.189|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.18.190|2|0
1.3.6.1.4.1.9.9.43.1.1.6.1.19.181|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.182|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.183|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.184|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.185|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.186|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.187|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.188|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.189|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.1.6.1.19.190|4x|302e302e302e30
1.3.6.1.4.1.9.9.43.1.4.1.0|70|453
1.3.6.1.4.1.9.9.43.1.4.2.0|4x|07c9041713103502
1.3.6.1.4.1.9.9.43.1.4.3.0|4|admin
1.3.6.1.4.1.9.9.43.1.4.4.0|2|2
1.3.6.1.4.1.9.9.46.1.1.1.0|2|3
1.3.6.1.4.1.9.9.46.1.1.2.0|2|1005
1.3.6.1.4.1.9.9.46.1.1.3.0|2|2
1.3.6.1.4.1.9.9.46.1.1.4.0|2|2
1.3.6.1.4.1.9.9.46.1.1.5.0|2|2
1.3.6.1.4.1.9.9.46.1.2.1.1.2.1|4|
1.3.6.1.4.1.9.9.46.1.2.1.1.3.1|2|3
1.3.6.1.4.1.9.9.46.1.2.1.1.4.1|66|0
1.3.6.1.4.1.9.9.46.1.2.1.1.5.1|64x|00000000
1.3.6.1.4.1.9.9.46.1.2.1.1.6.1|4x|07d0000000000000
1.3.6.1.4.1.9.9.46.1.2.1.1.7.1|2|1
1.3.6.1.4.1.9.9.46.1.2.1.1.8.1|64x|00000000
1.3.6.1.4.1.9.9.46.1.2.1.1.9.1|4|
1.3.6.1.4.1.9.9.46.1.2.1.1.10.1|2|2
1.3.6.1.4.1.9.9.46.1.2.1.1.11.1|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.4|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.10|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.35|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.60|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.63|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.65|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.70|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.73|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.74|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.80|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.200|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.201|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.250|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.255|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.998|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1002|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1003|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1004|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1005|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.4|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.10|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.35|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.60|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.63|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.65|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.70|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.73|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.74|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.80|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.200|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.201|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.250|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.255|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.998|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1002|2|2
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1003|2|3
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1004|2|4
1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1005|2|5
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1|4|default
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.4|4|mgmt
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.10|4|MGMT
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.35|4|DATA
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.60|4|vlan60
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.63|4|vlan63
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.65|4|vlan65
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.70|4x|7072696d6172792d766c616e
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.73|4|vlan73
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.74|4|vlan74
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.80|4|vlan80
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.200|4|VLAN0200
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.201|4|VOICE2
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.250|4|VLAN250
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.255|4|VLAN255
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.998|4|VLAN998
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1002|4x|666464692d64656661756c74
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1003|4x|746f6b656e2d72696e672d64656661756c74
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1004|4x|666464696e65742d64656661756c74
1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1005|4x|74726e65742d64656661756c74
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.4|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.10|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.35|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.60|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.63|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.65|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.70|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.73|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.74|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.80|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.200|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.201|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.250|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.255|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.998|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1002|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1003|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1004|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1005|2|1500
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1|4x|000186a1
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.4|4x|000186a4
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.10|4x|000186aa
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.35|4x|000186c3
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.60|4x|000186dc
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.63|4x|000186df
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.65|4x|000186e1
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.70|4x|000186e6
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.73|4x|000186e9
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.74|4x|000186ea
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.80|4x|000186f0
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.200|4x|00018768
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.201|4x|00018769
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.250|4x|0001879a
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.255|4x|0001879f
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.998|4x|00018a86
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1002|4x|00018a8a
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1003|4x|00018a8b
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1004|4x|00018a8c
1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1005|4x|00018a8d
1.3.6.1.4.1.9.9.46.1.3.1.1.7.1.1003|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.8.1.1004|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.8.1.1005|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.9.1.1004|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.9.1.1005|2|2
1.3.6.1.4.1.9.9.46.1.3.1.1.10.1.1003|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.4|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.10|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.35|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.60|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.63|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.65|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.70|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.73|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.74|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.80|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.200|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.201|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.250|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.255|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.998|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1002|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1003|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1004|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1005|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.4|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.10|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.35|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.60|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.63|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.65|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.70|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.73|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.74|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.80|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.200|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.201|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.250|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.255|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.998|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1002|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1003|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1004|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1005|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.13.1.1003|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.14.1.1003|2|7
1.3.6.1.4.1.9.9.46.1.3.1.1.15.1.1003|2|7
1.3.6.1.4.1.9.9.46.1.3.1.1.16.1.1003|2|2
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.4|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.10|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.35|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.60|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.63|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.65|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.70|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.73|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.74|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.80|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.200|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.201|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.250|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.255|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.998|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1002|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1003|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1004|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1005|4x|80
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1|2|1
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.4|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.10|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.35|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.60|2|60
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.63|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.65|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.70|2|70
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.73|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.74|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.80|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.200|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.201|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.250|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.255|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.998|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1002|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1003|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1004|2|0
1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1005|2|0
1.3.6.1.4.1.9.9.46.1.3.2.1.0|2|1
1.3.6.1.4.1.9.9.46.1.4.1.1.1.1|2|1
1.3.6.1.4.1.9.9.46.1.4.1.1.2.1|2|2
1.3.6.1.4.1.9.9.46.1.4.1.1.3.1|4|
1.3.6.1.4.1.9.9.46.1.4.1.1.4.1|66|0
1.3.6.1.4.1.9.9.46.1.5.1.1.1.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.2.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.3.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.4.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.5.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.6.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.7.1|65|0
1.3.6.1.4.1.9.9.46.1.5.1.1.8.1|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11001|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11002|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11003|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11004|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11005|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11006|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11007|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11008|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11009|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11010|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11011|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11012|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11013|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11014|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11015|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11016|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11017|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11018|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11019|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11020|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11021|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11022|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11023|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11024|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11025|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11026|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11027|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11028|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11029|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11030|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11031|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11032|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11033|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11034|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11035|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11036|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11037|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11038|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11039|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11040|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11041|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11042|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11043|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11044|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11045|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11046|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11047|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11048|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11101|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11102|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11103|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.2.11104|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11001|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11002|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11003|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11004|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11005|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11006|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11007|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11008|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11009|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11010|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11011|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11012|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11013|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11014|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11015|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11016|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11017|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11018|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11019|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11020|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11021|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11022|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11023|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11024|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11025|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11026|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11027|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11028|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11029|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11030|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11031|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11032|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11033|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11034|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11035|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11036|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11037|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11038|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11039|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11040|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11041|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11042|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11043|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11044|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11045|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11046|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11047|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11048|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11101|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11102|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11103|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.3.11104|2|5
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11001|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11002|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11003|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11004|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11005|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11006|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11007|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11008|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11009|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11010|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11011|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11012|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11013|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11014|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11015|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11016|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11017|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11018|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11019|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11020|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11021|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11022|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11023|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11024|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11025|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11026|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11027|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11028|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11029|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11030|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11031|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11032|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11033|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11034|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11035|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11036|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11037|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11038|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11039|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11040|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11041|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11042|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11043|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11044|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11045|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11046|4x|0000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11047|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11048|4x|7ffffffffffffffffdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11101|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11102|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11103|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.4.11104|4x|7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11001|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11002|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11003|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11004|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11005|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11006|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11007|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11008|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11009|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11010|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11011|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11012|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11013|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11014|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11015|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11016|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11017|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11018|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11019|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11020|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11021|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11022|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11023|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11024|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11025|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11026|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11027|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11028|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11029|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11030|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11031|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11032|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11033|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11034|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11035|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11036|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11037|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11038|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11039|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11040|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11041|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11042|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11043|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11044|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11045|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11046|2|60
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11047|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11048|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11101|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11102|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11103|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.5.11104|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11001|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11002|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11003|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11004|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11005|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11006|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11007|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11008|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11009|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11010|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11011|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11012|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11013|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11014|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11015|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11016|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11017|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11018|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11019|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11020|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11021|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11022|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11023|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11024|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11025|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11026|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11027|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11028|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11029|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11030|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11031|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11032|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11033|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11034|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11035|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11036|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11037|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11038|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11039|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11040|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11041|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11042|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11043|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11044|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11045|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11046|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11047|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11048|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11101|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11102|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11103|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.6.11104|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11001|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11002|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11003|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11004|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11005|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11006|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11007|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11008|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11009|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11010|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11011|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11012|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11013|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11014|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11015|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11016|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11017|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11018|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11019|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11020|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11021|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11022|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11023|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11024|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11025|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11026|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11027|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11028|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11029|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11030|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11031|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11032|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11033|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11034|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11035|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11036|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11037|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11038|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11039|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11040|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11041|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11042|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11043|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11044|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11045|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11046|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11047|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11048|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11101|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11102|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11103|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.7.11104|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11001|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11002|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11003|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11004|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11005|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11006|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11007|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11008|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11009|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11010|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11011|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11012|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11013|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11014|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11015|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11016|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11017|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11018|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11019|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11020|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11021|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11022|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11023|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11024|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11025|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11026|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11027|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11028|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11029|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11030|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11031|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11032|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11033|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11034|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11035|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11036|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11037|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11038|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11039|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11040|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11041|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11042|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11043|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11044|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11045|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11046|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11047|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11048|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11101|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11102|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11103|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.8.11104|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11001|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11002|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11003|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11004|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11005|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11006|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11007|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11008|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11009|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11010|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11011|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11012|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11013|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11014|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11015|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11016|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11017|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11018|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11019|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11020|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11021|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11022|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11023|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11024|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11025|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11026|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11027|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11028|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11029|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11030|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11031|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11032|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11033|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11034|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11035|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11036|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11037|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11038|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11039|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11040|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11041|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11042|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11043|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11044|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11045|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11046|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11047|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11048|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11101|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11102|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11103|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.9.11104|65|0
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11001|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11002|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11003|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11004|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11005|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11006|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11007|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11008|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11009|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11010|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11011|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11012|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11013|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11014|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11015|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11016|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11017|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11018|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11019|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11020|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11021|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11022|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11023|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11024|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11025|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11026|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11027|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11028|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11029|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11030|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11031|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11032|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11033|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11034|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11035|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11036|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11037|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11038|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11039|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11040|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11041|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11042|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11043|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11044|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11045|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11046|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11047|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11048|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11101|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11102|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11103|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.10.11104|4x|3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc00000
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11048|4x|48200000100000094060800000000000000000000000000000c0000000000021000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.11.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11048|4x|0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.12.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11001|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11002|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11003|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11004|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11005|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11006|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11007|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11008|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11009|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11010|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11011|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11012|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11013|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11014|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11015|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11016|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11017|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11018|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11019|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11020|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11021|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11022|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11023|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11024|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11025|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11026|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11027|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11028|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11029|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11030|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11031|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11032|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11033|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11034|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11035|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11036|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11037|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11038|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11039|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11040|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11041|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11042|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11043|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11044|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11045|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11046|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11047|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11048|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11101|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11102|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11103|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.13.11104|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11001|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11002|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11003|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11004|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11005|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11006|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11007|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11008|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11009|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11010|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11011|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11012|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11013|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11014|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11015|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11016|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11017|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11018|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11019|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11020|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11021|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11022|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11023|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11024|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11025|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11026|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11027|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11028|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11029|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11030|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11031|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11032|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11033|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11034|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11035|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11036|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11037|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11038|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11039|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11040|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11041|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11042|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11043|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11044|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11045|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11046|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11047|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11048|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11101|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11102|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11103|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.14.11104|2|2
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11001|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11002|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11003|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11004|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11005|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11006|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11007|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11008|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11009|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11010|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11011|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11012|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11013|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11014|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11015|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11016|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11017|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11018|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11019|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11020|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11021|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11022|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11023|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11024|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11025|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11026|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11027|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11028|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11029|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11030|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11031|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11032|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11033|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11034|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11035|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11036|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11037|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11038|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11039|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11040|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11041|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11042|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11043|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11044|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11045|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11046|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11047|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11048|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11101|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11102|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11103|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.15.11104|2|1
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11001|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11002|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11003|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11004|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11005|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11006|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11007|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11008|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11009|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11010|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11011|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11012|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11013|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11014|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11015|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11016|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11017|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11018|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11019|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11020|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11021|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11022|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11023|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11024|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11025|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11026|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11027|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11028|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11029|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11030|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11031|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11032|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11033|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11034|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11035|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11036|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11037|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11038|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11039|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11040|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11041|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11042|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11043|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11044|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11045|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11046|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11047|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11048|2|4
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11101|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11102|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11103|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.16.11104|2|6
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11001|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11002|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11003|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11004|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11005|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11006|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11007|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11008|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11009|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11010|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11011|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11012|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11013|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11014|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11015|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11016|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11017|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11018|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11019|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11020|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11021|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11022|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11023|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11024|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11025|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11026|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11027|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11028|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11029|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11030|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11031|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11032|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11033|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11034|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11035|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11036|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11037|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11038|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11039|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11040|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11041|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11042|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11043|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11044|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11045|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11047|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11048|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11101|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11102|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11103|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.17.11104|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11001|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11002|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11003|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11004|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11005|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11006|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11007|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11008|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11009|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11010|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11011|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11012|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11013|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11014|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11015|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11016|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11017|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11018|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11019|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11020|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11021|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11022|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11023|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11024|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11025|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11026|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11027|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11028|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11029|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11030|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11031|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11032|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11033|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11034|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11035|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11036|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11037|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11038|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11039|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11040|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11041|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11042|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11043|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11044|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11045|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11047|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11048|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11101|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11102|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11103|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.18.11104|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11001|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11002|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11003|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11004|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11005|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11006|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11007|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11008|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11009|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11010|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11011|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11012|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11013|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11014|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11015|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11016|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11017|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11018|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11019|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11020|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11021|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11022|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11023|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11024|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11025|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11026|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11027|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11028|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11029|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11030|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11031|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11032|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11033|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11034|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11035|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11036|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11037|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11038|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11039|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11040|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11041|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11042|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11043|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11044|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11045|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11047|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11048|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11101|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11102|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11103|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.19.11104|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.20.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.21.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.22.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.23.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.24.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.25.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.26.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.27.11104|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11001|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11002|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11003|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11004|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11005|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11006|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11007|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11008|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11009|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11010|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11011|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11012|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11013|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11014|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11015|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11016|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11017|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11018|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11019|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11020|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11021|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11022|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11023|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11024|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11025|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11026|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11027|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11028|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11029|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11030|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11031|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11032|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11033|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11034|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11035|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11036|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11037|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11038|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11039|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11040|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11041|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11042|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11043|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11044|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11045|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11046|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11047|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11048|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11101|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11102|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11103|4|
1.3.6.1.4.1.9.9.46.1.6.1.1.28.11104|4|
1.3.6.1.4.1.9.9.46.1.6.2.0|2|0
1.3.6.1.4.1.9.9.46.1.6.3.0|2|2
1.3.6.1.4.1.9.9.48.1.1.1.2.1|4|Processor
1.3.6.1.4.1.9.9.48.1.1.1.2.2|4x|492f4f
1.3.6.1.4.1.9.9.48.1.1.1.2.16|4x|4472697665722074657874
1.3.6.1.4.1.9.9.48.1.1.1.3.1|2|0
1.3.6.1.4.1.9.9.48.1.1.1.3.2|2|0
1.3.6.1.4.1.9.9.48.1.1.1.3.16|2|0
1.3.6.1.4.1.9.9.48.1.1.1.4.1|2|1
1.3.6.1.4.1.9.9.48.1.1.1.4.2|2|1
1.3.6.1.4.1.9.9.48.1.1.1.4.16|2|1
1.3.6.1.4.1.9.9.48.1.1.1.5.1|66|34973844
1.3.6.1.4.1.9.9.48.1.1.1.5.2|66|8710324
1.3.6.1.4.1.9.9.48.1.1.1.5.16|66|40
1.3.6.1.4.1.9.9.48.1.1.1.6.1|66|33184936
1.3.6.1.4.1.9.9.48.1.1.1.6.2|66|3872588
1.3.6.1.4.1.9.9.48.1.1.1.6.16|66|1048536
1.3.6.1.4.1.9.9.48.1.1.1.7.1|66|16768892
1.3.6.1.4.1.9.9.48.1.1.1.7.2|66|3869584
1.3.6.1.4.1.9.9.48.1.1.1.7.16|66|1048532
1.3.6.1.4.1.9.9.61.1.1.1.1.3003|2|0
1.3.6.1.4.1.9.9.68.1.1.1.0|2|1
1.3.6.1.4.1.9.9.68.1.1.2.0|2|3
1.3.6.1.4.1.9.9.68.1.1.3.0|2|60
1.3.6.1.4.1.9.9.68.1.1.4.0|2|1
1.3.6.1.4.1.9.9.68.1.1.5.0|2|6
1.3.6.1.4.1.9.9.68.1.1.6.0|64x|00000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.1|4x|0000000000000000000000000004047ffffffe0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.4|4x|000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.10|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.35|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.60|4x|0000000000000000000000000001fb800000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.63|4x|000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.65|4x|000000000000000000000000000200000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.70|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.73|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.74|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.80|4x|000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.200|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.201|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.250|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.255|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.998|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.1002|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.1003|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.1004|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.2.1005|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.1|4x|0000000000000000000000000004047ffffffe0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.4|4x|000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.10|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.35|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.60|4x|0000000000000000000000000001fb800000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.63|4x|000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.65|4x|000000000000000000000000000200000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.70|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.73|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.74|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.80|4x|000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.200|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.201|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.250|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.255|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.998|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.1002|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.1003|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.1004|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.1.1.3.1005|4x|000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11001|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11002|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11003|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11004|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11005|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11006|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11007|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11008|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11009|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11010|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11011|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11012|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11013|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11014|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11015|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11016|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11017|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11018|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11019|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11020|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11021|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11022|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11023|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11024|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11025|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11026|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11027|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11028|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11029|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11030|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11031|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11032|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11033|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11034|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11035|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11036|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11037|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11038|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11039|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11040|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11041|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11042|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11043|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11044|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11045|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11047|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11101|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11102|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11103|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.1.11104|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11001|2|65
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11002|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11003|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11004|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11005|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11006|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11007|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11008|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11009|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11010|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11011|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11012|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11013|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11014|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11015|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11016|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11017|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11018|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11019|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11020|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11021|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11022|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11023|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11024|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11025|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11026|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11027|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11028|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11029|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11030|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11031|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11032|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11033|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11034|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11035|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11036|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11037|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11038|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11039|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11040|2|63
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11041|2|63
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11042|2|65
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11043|2|65
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11044|2|80
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11045|2|60
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11047|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11101|2|4
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11102|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11103|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.2.11104|2|1
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11001|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11002|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11003|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11004|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11005|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11006|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11007|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11008|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11009|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11010|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11011|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11012|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11013|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11014|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11015|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11016|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11017|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11018|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11019|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11020|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11021|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11022|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11023|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11024|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11025|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11026|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11027|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11028|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11029|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11030|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11031|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11032|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11033|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11034|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11035|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11036|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11037|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11038|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11039|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11040|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11041|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11042|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11043|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11044|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11045|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11047|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11101|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11102|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11103|2|2
1.3.6.1.4.1.9.9.68.1.2.2.1.3.11104|2|2
1.3.6.1.4.1.9.9.68.1.3.1.0|65|0
1.3.6.1.4.1.9.9.68.1.3.2.0|65|0
1.3.6.1.4.1.9.9.68.1.3.3.0|65|0
1.3.6.1.4.1.9.9.68.1.3.4.0|65|0
1.3.6.1.4.1.9.9.68.1.3.5.0|65|0
1.3.6.1.4.1.9.9.68.1.3.6.0|65|0
1.3.6.1.4.1.9.9.68.1.3.7.0|65|0
1.3.6.1.4.1.9.9.68.1.3.8.0|65|0
1.3.6.1.4.1.9.9.68.1.4.1.0|2|2
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11001|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11002|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11003|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11004|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11005|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11006|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11007|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11008|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11009|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11010|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11011|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11012|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11013|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11014|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11015|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11016|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11017|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11018|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11019|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11020|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11021|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11022|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11023|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11024|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11025|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11026|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11027|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11028|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11029|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11030|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11031|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11032|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11033|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11034|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11035|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11036|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11037|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11038|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11039|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11040|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11041|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11042|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11043|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11044|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11045|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11046|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11047|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11048|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11101|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11102|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11103|2|4096
1.3.6.1.4.1.9.9.68.1.5.1.1.1.11104|2|4096
1.3.6.1.4.1.9.9.80.1.1.1.0|66|0
1.3.6.1.4.1.9.9.80.1.1.2.0|66|0
1.3.6.1.4.1.9.9.80.1.1.3.0|66|0
1.3.6.1.4.1.9.9.80.1.1.4.0|65|0
1.3.6.1.4.1.9.9.81.1.1.1.0|66|0
1.3.6.1.4.1.9.9.81.1.1.2.0|66|0
1.3.6.1.4.1.9.9.81.1.1.3.0|66|0
1.3.6.1.4.1.9.9.81.1.1.4.0|65|0
1.3.6.1.4.1.9.9.81.1.1.5.0|66|0
1.3.6.1.4.1.9.9.81.1.1.6.0|66|0
1.3.6.1.4.1.9.9.81.1.1.7.0|66|0
1.3.6.1.4.1.9.9.81.1.1.8.0|65|0
1.3.6.1.4.1.9.9.81.1.2.1.0|66|0
1.3.6.1.4.1.9.9.81.1.2.2.0|66|0
1.3.6.1.4.1.9.9.81.1.2.3.0|66|0
1.3.6.1.4.1.9.9.81.1.2.4.0|65|0
1.3.6.1.4.1.9.9.82.1.1.1.0|2|2
1.3.6.1.4.1.9.9.82.1.1.3.0|2|15
1.3.6.1.4.1.9.9.82.1.1.5.0|2|2
1.3.6.1.4.1.9.9.82.1.2.2.1.2.1|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.4|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.10|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.35|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.60|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.63|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.65|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.70|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.73|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.74|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.80|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.200|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.201|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.250|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.255|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.998|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.1002|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.1003|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.1004|2|1
1.3.6.1.4.1.9.9.82.1.2.2.1.2.1005|2|1
1.3.6.1.4.1.9.9.82.1.4.1.0|2|2
1.3.6.1.4.1.9.9.82.1.4.2.0|65|0
1.3.6.1.4.1.9.9.82.1.4.3.0|65|0
1.3.6.1.4.1.9.9.82.1.4.4.0|65|0
1.3.6.1.4.1.9.9.82.1.4.5.0|65|0
1.3.6.1.4.1.9.9.82.1.4.6.0|65|0
1.3.6.1.4.1.9.9.82.1.4.7.0|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.109|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.110|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.111|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.112|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.113|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.114|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.115|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.116|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.117|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.118|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.119|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.120|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.121|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.122|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.123|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.124|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.125|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.126|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.127|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.128|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.129|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.130|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.131|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.132|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.133|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.134|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.135|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.136|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.137|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.138|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.139|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.140|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.141|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.142|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.143|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.144|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.145|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.146|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.147|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.148|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.149|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.150|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.151|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.152|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.153|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.154|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.155|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.156|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.157|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.158|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.159|2|2
1.3.6.1.4.1.9.9.82.1.5.1.1.2.160|2|2
1.3.6.1.4.1.9.9.82.1.6.1.0|2|1
1.3.6.1.4.1.9.9.82.1.6.2.0|2|1
1.3.6.1.4.1.9.9.82.1.6.4.0|2|1
1.3.6.1.4.1.9.9.82.1.6.5.0|2|1
1.3.6.1.4.1.9.9.82.1.6.6.0|4x|00
1.3.6.1.4.1.9.9.82.1.6.7.0|2|1
1.3.6.1.4.1.9.9.82.1.8.1.1.2.109|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.110|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.111|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.112|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.113|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.114|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.115|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.116|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.117|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.118|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.119|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.120|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.121|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.122|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.123|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.124|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.125|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.126|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.127|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.128|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.129|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.130|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.131|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.132|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.133|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.134|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.135|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.136|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.137|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.138|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.139|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.140|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.141|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.142|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.143|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.144|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.145|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.146|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.147|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.148|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.149|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.150|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.151|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.152|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.153|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.154|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.155|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.156|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.157|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.158|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.159|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.2.160|2|2
1.3.6.1.4.1.9.9.82.1.8.1.1.3.109|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.110|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.111|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.112|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.113|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.114|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.115|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.116|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.117|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.118|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.119|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.120|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.121|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.122|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.123|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.124|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.125|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.126|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.127|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.128|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.129|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.130|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.131|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.132|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.133|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.134|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.135|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.136|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.137|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.138|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.139|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.140|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.141|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.142|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.143|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.144|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.145|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.146|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.147|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.148|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.149|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.150|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.151|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.152|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.153|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.154|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.155|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.156|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.157|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.158|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.159|2|3
1.3.6.1.4.1.9.9.82.1.8.1.1.3.160|2|3
1.3.6.1.4.1.9.9.82.1.8.3.0|2|2
1.3.6.1.4.1.9.9.82.1.9.1.0|2|2
1.3.6.1.4.1.9.9.82.1.9.2.0|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.109|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.110|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.111|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.112|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.113|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.114|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.115|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.116|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.117|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.118|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.119|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.120|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.121|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.122|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.123|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.124|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.125|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.126|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.127|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.128|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.129|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.130|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.131|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.132|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.133|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.134|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.135|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.136|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.137|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.138|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.139|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.140|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.141|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.142|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.143|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.144|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.145|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.146|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.147|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.148|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.149|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.150|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.151|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.152|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.153|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.154|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.155|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.156|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.157|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.158|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.159|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.2.160|2|2
1.3.6.1.4.1.9.9.82.1.9.3.1.3.109|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.110|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.111|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.112|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.113|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.114|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.115|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.116|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.117|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.118|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.119|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.120|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.121|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.122|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.123|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.124|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.125|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.126|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.127|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.128|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.129|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.130|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.131|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.132|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.133|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.134|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.135|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.136|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.137|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.138|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.139|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.140|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.141|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.142|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.143|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.144|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.145|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.146|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.147|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.148|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.149|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.150|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.151|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.152|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.153|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.154|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.155|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.156|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.157|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.158|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.159|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.3.160|2|4
1.3.6.1.4.1.9.9.82.1.9.3.1.4.109|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.110|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.111|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.112|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.113|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.114|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.115|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.116|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.117|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.118|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.119|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.120|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.121|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.122|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.123|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.124|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.125|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.126|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.127|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.128|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.129|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.130|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.131|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.132|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.133|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.134|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.135|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.136|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.137|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.138|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.139|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.140|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.141|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.142|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.143|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.144|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.145|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.146|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.147|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.148|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.149|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.150|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.151|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.152|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.153|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.154|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.155|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.156|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.157|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.158|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.159|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.4.160|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.109|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.110|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.111|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.112|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.113|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.114|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.115|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.116|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.117|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.118|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.119|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.120|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.121|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.122|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.123|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.124|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.125|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.126|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.127|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.128|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.129|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.130|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.131|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.132|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.133|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.134|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.135|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.136|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.137|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.138|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.139|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.140|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.141|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.142|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.143|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.144|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.145|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.146|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.147|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.148|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.149|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.150|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.151|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.152|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.153|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.154|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.155|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.156|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.157|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.158|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.159|2|3
1.3.6.1.4.1.9.9.82.1.9.3.1.5.160|2|3
1.3.6.1.4.1.9.9.82.1.9.4.0|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.1.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.4.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.10.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.35.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.60.113|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.60.117|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.60.119|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.60.121|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.60.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.63.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.65.155|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.65.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.73.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.74.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.80.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.200.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.201.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.250.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.255.160|2|2
1.3.6.1.4.1.9.9.82.1.9.5.1.3.998.160|2|2
1.3.6.1.4.1.9.9.82.1.11.1.0|2|15
1.3.6.1.4.1.9.9.82.1.11.2.0|4|
1.3.6.1.4.1.9.9.82.1.11.3.0|2|0
1.3.6.1.4.1.9.9.82.1.11.4.1.2.0|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.82.1.11.4.1.2.1|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.2|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.3|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.4|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.5|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.6|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.7|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.8|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.9|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.10|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.11|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.12|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.13|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.14|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.2.15|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.0|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.82.1.11.4.1.3.1|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.2|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.3|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.4|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.5|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.6|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.7|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.8|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.9|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.10|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.11|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.12|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.13|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.14|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.3.15|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.0|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.82.1.11.4.1.4.1|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.2|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.3|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.4|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.5|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.6|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.7|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.8|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.9|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.10|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.11|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.12|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.13|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.14|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.4.15|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.0|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.82.1.11.4.1.5.1|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.2|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.3|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.4|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.5|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.6|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.7|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.8|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.9|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.10|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.11|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.12|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.13|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.14|4|
1.3.6.1.4.1.9.9.82.1.11.4.1.5.15|4|
1.3.6.1.4.1.9.9.82.1.11.5.0|2|1
1.3.6.1.4.1.9.9.82.1.11.6.0|2|1
1.3.6.1.4.1.9.9.82.1.11.11.1.2.109|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.110|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.111|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.112|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.113|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.114|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.115|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.116|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.117|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.118|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.119|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.120|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.121|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.122|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.123|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.124|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.125|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.126|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.127|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.128|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.129|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.130|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.131|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.132|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.133|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.134|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.135|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.136|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.137|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.138|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.139|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.140|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.141|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.142|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.143|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.144|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.145|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.146|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.147|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.148|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.149|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.150|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.151|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.152|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.153|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.154|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.155|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.156|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.157|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.158|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.159|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.2.160|2|3
1.3.6.1.4.1.9.9.82.1.11.11.1.4.109|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.110|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.111|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.112|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.113|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.114|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.115|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.116|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.117|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.118|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.119|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.120|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.121|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.122|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.123|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.124|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.125|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.126|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.127|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.128|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.129|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.130|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.131|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.132|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.133|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.134|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.135|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.136|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.137|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.138|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.139|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.140|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.141|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.142|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.143|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.144|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.145|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.146|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.147|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.148|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.149|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.150|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.151|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.152|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.153|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.154|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.155|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.156|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.157|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.158|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.159|2|2
1.3.6.1.4.1.9.9.82.1.11.11.1.4.160|2|2
1.3.6.1.4.1.9.9.82.1.11.13.0|2|20
1.3.6.1.4.1.9.9.82.1.12.1.1.2.109|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.110|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.111|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.112|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.113|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.114|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.115|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.116|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.117|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.118|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.119|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.120|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.121|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.122|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.123|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.124|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.125|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.126|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.127|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.128|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.129|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.130|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.131|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.132|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.133|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.134|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.135|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.136|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.137|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.138|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.139|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.140|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.141|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.142|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.143|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.144|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.145|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.146|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.147|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.148|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.149|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.150|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.151|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.152|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.153|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.154|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.155|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.156|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.157|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.158|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.159|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.2.160|2|3
1.3.6.1.4.1.9.9.82.1.12.1.1.4.109|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.110|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.111|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.112|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.113|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.114|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.115|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.116|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.117|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.118|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.119|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.120|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.121|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.122|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.123|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.124|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.125|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.126|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.127|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.128|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.129|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.130|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.131|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.132|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.133|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.134|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.135|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.136|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.137|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.138|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.139|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.140|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.141|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.142|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.143|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.144|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.145|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.146|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.147|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.148|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.149|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.150|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.151|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.152|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.153|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.154|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.155|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.156|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.157|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.158|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.159|2|2
1.3.6.1.4.1.9.9.82.1.12.1.1.4.160|2|2
1.3.6.1.4.1.9.9.82.1.12.3.0|66|6
1.3.6.1.4.1.9.9.82.1.14.1.0|66|65
1.3.6.1.4.1.9.9.82.1.14.2.0|66|4094
1.3.6.1.4.1.9.9.82.1.14.3.0|66|0
1.3.6.1.4.1.9.9.82.1.14.5.1.2.0|4x|ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
1.3.6.1.4.1.9.9.82.1.14.5.1.3.0|4x|fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
1.3.6.1.4.1.9.9.82.1.14.8.0|66|20
1.3.6.1.4.1.9.9.82.1.14.9.0|4x|ac36177f50283cd4b83821d8ab26de62
1.3.6.1.4.1.9.9.82.1.14.10.0|4x|bb3b6c15ef8d089bb55ed10d24df44de
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11003|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11004|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11005|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11006|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11007|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11008|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11009|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11010|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11011|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11012|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11013|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11014|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11015|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11016|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11017|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11018|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11019|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11020|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11021|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11022|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11023|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11024|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11025|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11026|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11027|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11028|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11029|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11030|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11031|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11032|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11033|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11034|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11035|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11036|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11037|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11038|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11039|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11040|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11041|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11042|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11043|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11044|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11045|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11046|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11047|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11048|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11101|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11102|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11103|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.1.11104|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11003|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11004|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11005|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11006|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11007|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11008|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11009|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11010|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11011|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11012|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11013|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11014|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11015|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11016|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11017|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11018|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11019|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11020|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11021|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11022|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11023|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11024|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11025|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11026|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11027|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11028|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11029|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11030|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11031|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11032|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11033|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11034|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11035|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11036|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11037|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11038|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11039|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11040|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11041|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11042|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11043|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11044|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11045|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11046|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11047|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11048|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11101|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11102|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11103|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.2.11104|4x|0016c7026e80
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11003|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11004|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11005|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11006|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11007|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11008|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11009|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11010|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11011|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11012|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11013|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11014|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11015|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11016|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11017|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11018|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11019|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11020|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11021|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11022|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11023|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11024|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11025|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11026|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11027|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11028|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11029|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11030|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11031|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11032|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11033|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11034|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11035|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11036|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11037|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11038|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11039|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11040|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11041|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11042|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11043|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11044|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11045|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11046|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11047|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11048|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11101|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11102|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11103|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.3.11104|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11003|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11004|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11005|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11006|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11007|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11008|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11009|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11010|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11011|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11012|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11013|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11014|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11015|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11016|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11017|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11018|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11019|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11020|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11021|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11022|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11023|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11024|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11025|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11026|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11027|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11028|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11029|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11030|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11031|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11032|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11033|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11034|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11035|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11036|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11037|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11038|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11039|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11040|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11041|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11042|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11043|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11044|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11045|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11046|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11047|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11048|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11101|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11102|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11103|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.4.11104|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11003|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11004|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11005|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11006|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11007|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11008|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11009|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11010|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11011|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11012|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11013|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11014|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11015|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11016|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11017|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11018|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11019|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11020|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11021|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11022|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11023|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11024|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11025|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11026|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11027|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11028|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11029|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11030|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11031|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11032|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11033|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11034|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11035|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11036|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11037|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11038|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11039|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11040|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11041|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11042|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11043|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11044|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11045|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11046|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11047|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11048|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11101|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11102|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11103|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.5.11104|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11003|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11004|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11005|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11006|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11007|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11008|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11009|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11010|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11011|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11012|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11013|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11014|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11015|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11016|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11017|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11018|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11019|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11020|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11021|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11022|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11023|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11024|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11025|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11026|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11027|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11028|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11029|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11030|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11031|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11032|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11033|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11034|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11035|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11036|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11037|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11038|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11039|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11040|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11041|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11042|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11043|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11044|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11045|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11046|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11047|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11048|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11101|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11102|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11103|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.6.11104|2|128
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11003|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11004|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11005|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11006|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11007|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11008|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11009|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11010|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11011|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11012|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11013|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11014|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11015|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11016|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11017|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11018|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11019|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11020|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11021|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11022|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11023|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11024|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11025|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11026|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11027|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11028|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11029|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11030|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11031|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11032|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11033|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11034|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11035|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11036|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11037|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11038|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11039|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11040|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11041|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11042|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11043|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11044|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11045|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11046|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11047|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11048|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11101|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11102|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11103|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.7.11104|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11003|2|11003
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11004|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11005|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11006|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11007|2|11007
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11008|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11009|2|11009
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11010|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11011|2|11011
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11012|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11013|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11014|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11015|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11016|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11017|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11018|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11019|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11020|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11021|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11022|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11023|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11024|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11025|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11026|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11027|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11028|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11029|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11030|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11031|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11032|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11033|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11034|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11035|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11036|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11037|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11038|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11039|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11040|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11041|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11042|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11043|2|11043
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11044|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11045|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11046|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11047|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11048|2|11048
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11101|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11102|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11103|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.8.11104|2|0
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11003|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11004|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11005|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11006|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11007|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11008|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11009|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11010|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11011|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11012|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11013|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11014|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11015|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11016|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11017|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11018|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11019|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11020|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11021|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11022|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11023|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11024|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11025|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11026|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11027|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11028|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11029|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11030|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11031|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11032|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11033|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11034|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11035|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11036|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11037|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11038|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11039|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11040|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11041|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11042|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11043|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11044|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11045|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11046|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11047|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11048|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11101|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11102|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11103|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.9.11104|2|2
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11003|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11004|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11005|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11006|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11007|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11008|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11009|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11010|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11011|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11012|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11013|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11014|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11015|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11016|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11017|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11018|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11019|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11020|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11021|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11022|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11023|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11024|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11025|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11026|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11027|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11028|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11029|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11030|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11031|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11032|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11033|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11034|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11035|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11036|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11037|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11038|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11039|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11040|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11041|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11042|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11043|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11044|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11045|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11046|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11047|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11048|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11101|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11102|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11103|2|1
1.3.6.1.4.1.9.9.98.1.1.1.1.10.11104|2|1
1.3.6.1.4.1.9.9.106.1.1.1.0|66|5
1.3.6.1.4.1.9.9.109.1.1.1.1.2.1|2|0
1.3.6.1.4.1.9.9.109.1.1.1.1.3.1|66|90
1.3.6.1.4.1.9.9.109.1.1.1.1.4.1|66|53
1.3.6.1.4.1.9.9.109.1.1.1.1.5.1|66|25
1.3.6.1.4.1.9.9.109.1.1.1.1.6.1|66|90
1.3.6.1.4.1.9.9.109.1.1.1.1.7.1|66|53
1.3.6.1.4.1.9.9.109.1.1.1.1.8.1|66|25
1.3.6.1.4.1.9.9.109.1.1.1.1.9.1|66|5
1.3.6.1.4.1.9.9.109.1.1.1.1.10.1|66|90
1.3.6.1.4.1.9.9.109.1.1.1.1.11.1|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.1|66|1
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.2|66|2
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.4|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.5|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.6|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.7|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.8|66|8
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.9|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.10|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.11|66|11
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.12|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.13|66|13
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.14|66|14
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.15|66|15
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.16|66|16
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.17|66|17
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.18|66|18
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.19|66|19
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.20|66|20
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.21|66|21
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.22|66|22
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.23|66|23
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.24|66|24
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.25|66|25
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.26|66|26
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.27|66|27
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.28|66|28
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.29|66|29
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.30|66|30
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.31|66|31
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.32|66|32
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.33|66|33
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.34|66|34
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.35|66|35
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.36|66|36
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.37|66|37
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.38|66|38
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.39|66|39
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.40|66|40
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.41|66|41
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.42|66|42
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.43|66|43
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.44|66|44
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.45|66|45
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.46|66|46
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.47|66|47
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.48|66|48
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.49|66|49
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.50|66|50
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.51|66|51
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.52|66|52
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.53|66|53
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.54|66|54
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.55|66|55
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.56|66|56
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.57|66|57
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.58|66|58
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.59|66|59
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.60|66|60
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.61|66|61
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.62|66|62
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.63|66|63
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.64|66|64
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.65|66|65
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.66|66|66
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.67|66|67
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.68|66|68
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.69|66|69
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.70|66|70
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.71|66|71
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.72|66|72
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.73|66|73
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.74|66|74
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.75|66|75
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.76|66|76
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.77|66|77
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.78|66|78
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.79|66|79
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.80|66|80
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.81|66|81
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.82|66|82
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.83|66|83
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.84|66|84
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.85|66|85
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.86|66|86
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.87|66|87
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.88|66|88
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.89|66|89
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.90|66|90
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.91|66|91
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.92|66|92
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.93|66|93
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.94|66|94
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.95|66|95
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.96|66|96
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.97|66|97
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.98|66|98
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.99|66|99
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.100|66|100
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.101|66|101
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.102|66|102
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.103|66|103
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.104|66|104
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.105|66|105
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.106|66|106
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.107|66|107
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.108|66|108
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.109|66|109
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.110|66|110
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.111|66|111
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.112|66|112
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.113|66|113
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.114|66|114
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.115|66|115
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.116|66|116
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.117|66|117
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.118|66|118
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.119|66|119
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.120|66|120
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.121|66|121
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.122|66|122
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.123|66|123
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.124|66|124
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.125|66|125
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.126|66|126
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.127|66|127
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.128|66|128
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.129|66|129
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.130|66|130
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.131|66|131
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.132|66|132
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.133|66|133
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.134|66|134
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.135|66|135
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.136|66|136
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.137|66|137
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.138|66|138
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.139|66|139
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.140|66|140
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.141|66|141
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.142|66|142
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.143|66|143
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.144|66|144
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.145|66|145
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.146|66|146
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.147|66|147
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.148|66|148
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.149|66|149
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.150|66|150
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.151|66|151
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.152|66|152
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.153|66|153
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.154|66|154
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.155|66|155
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.156|66|156
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.157|66|157
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.158|66|158
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.159|66|159
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.160|66|160
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.161|66|161
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.162|66|162
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.163|66|163
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.164|66|164
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.165|66|165
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.166|66|166
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.167|66|167
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.168|66|168
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.169|66|169
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.170|66|170
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.171|66|171
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.172|66|172
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.173|66|173
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.174|66|174
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.175|66|175
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.176|66|176
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.177|66|177
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.178|66|178
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.179|66|179
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.180|66|180
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.181|66|181
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.182|66|182
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.183|66|183
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.184|66|184
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.185|66|185
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.186|66|186
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.187|66|187
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.188|66|188
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.189|66|189
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.190|66|190
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.191|66|191
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.192|66|192
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.193|66|193
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.194|66|194
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.195|66|195
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.196|66|196
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.197|66|197
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.198|66|198
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.199|66|199
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.200|66|200
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.201|66|201
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.202|66|202
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.203|66|203
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.204|66|204
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.205|66|205
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.206|66|206
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.207|66|207
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.208|66|208
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.209|66|209
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.210|66|210
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.211|66|211
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.212|66|212
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.213|66|213
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.214|66|214
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.215|66|215
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.216|66|216
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.217|66|217
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.218|66|218
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.220|66|220
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.221|66|221
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.222|66|222
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.223|66|223
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.224|66|224
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.225|66|225
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.226|66|226
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.227|66|227
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.228|66|228
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.229|66|229
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.230|66|230
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.231|66|231
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.232|66|232
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.233|66|233
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.234|66|234
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.235|66|235
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.236|66|236
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.237|66|237
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.238|66|238
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.239|66|239
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.240|66|240
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.241|66|241
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.242|66|242
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.243|66|243
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.244|66|244
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.245|66|245
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.246|66|246
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.247|66|247
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.248|66|248
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.249|66|249
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.250|66|250
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.251|66|251
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.252|66|252
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.253|66|253
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.254|66|254
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.255|66|255
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.257|66|257
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.258|66|258
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.259|66|259
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.260|66|260
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.261|66|261
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.262|66|262
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.263|66|263
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.264|66|264
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.265|66|265
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.266|66|266
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.267|66|267
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.268|66|268
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.269|66|269
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.270|66|270
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.271|66|271
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.272|66|272
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.273|66|273
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.274|66|274
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.275|66|275
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.276|66|276
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.277|66|277
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.278|66|278
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.279|66|279
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.280|66|280
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.281|66|281
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.282|66|282
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.283|66|283
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.284|66|284
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.285|66|285
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.286|66|286
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.287|66|287
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.288|66|288
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.289|66|289
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.290|66|290
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.291|66|291
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.292|66|292
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.293|66|293
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.294|66|294
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.295|66|295
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.297|66|297
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.298|66|298
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.299|66|299
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.300|66|300
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.301|66|301
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.303|66|303
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.304|66|304
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.306|66|306
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.307|66|307
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.308|66|308
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.309|66|309
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.310|66|310
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.311|66|311
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.312|66|312
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.313|66|313
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.314|66|314
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.315|66|315
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.316|66|316
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.317|66|317
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.318|66|318
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.319|66|319
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.320|66|320
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.321|66|321
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.322|66|322
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.323|66|323
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.324|66|324
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.325|66|325
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.326|66|326
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.327|66|327
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.328|66|328
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.329|66|329
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.330|66|330
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.331|66|331
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.332|66|332
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.333|66|333
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.334|66|334
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.335|66|335
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.336|66|336
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.337|66|337
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.338|66|338
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.339|66|339
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.340|66|340
1.3.6.1.4.1.9.9.109.1.2.1.1.1.1.341|66|341
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.1|4x|4368756e6b204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.2|4x|4c6f6164204d65746572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.4|4x|436865636b206865617073
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.5|4x|506f6f6c204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.6|4|Timers
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.7|4x|4852504320617369632d737461747320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.8|4x|437261736820777269746572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.9|4x|41525020496e707574
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.10|4x|434546204d494220415049
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.11|4x|4141415f5345525645525f4445414454494d45
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.12|4x|41414120686967682d636170616369747920636f756e74657273
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.13|4x|506f6c696379204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.14|4x|456e74697479204d494220415049
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.15|4x|494653204167656e74204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.16|4x|4950432044796e616d6963204361636865
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.17|4x|495043205a6f6e65204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.18|4x|49504320506572696f6469632054696d6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.19|4x|495043204d616e616765642054696d6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.20|4x|49504320446566657272656420506f727420436c6f73757265
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.21|4x|4950432053656174204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.22|4x|4950432053657373696f6e2053657276696365
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.23|4|PrstVbl
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.24|4x|44796e616d69632041525020496e7370656374696f6e2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.25|4x|41525020536e6f6f70
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.26|4x|4c6963656e7365204950432073746174696320776f726b6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.27|4x|4c6963656e73652049504320736572766572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.28|4|GraphIt
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.29|4x|584d4c2050726f787920436c69656e74
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.30|4x|437269746963616c20426b676e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.31|4x|4e6574204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.32|4x|49444220576f726b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.33|4|Logger
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.34|4x|545459204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.35|4x|5065722d5365636f6e64204a6f6273
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.36|4x|5065722d6d696e757465204a6f6273
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.37|4x|49462d4d475220636f6e74726f6c2070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.38|4x|49462d4d4752206576656e742070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.39|4x|49502041646d697373696f6e2048412050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.40|4x|4e657420496e707574
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.41|4x|436f6d70757465206c6f61642061766773
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.42|4x|4167674d67722050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.43|4x|5472616e73706f727420506f7274204167656e74
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.44|4x|484320436f756e7465722054696d657273
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.45|4|SFF8472
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.46|4|DownWhenLooped
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.47|4x|48554c4320504252205463616d204d656d6f727920436f6e73697374656e6379
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.48|4x|48554c432041434c205463616d204d656d6f727920436f6e73697374656e6379
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.49|4x|48525043206864776c20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.50|4x|4852504320456e657267795769736520726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.51|4x|485250432061637475616c20706f77657220726571756573742068616e646c65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.52|4x|48525043206c70697020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.53|4x|484c5049502053796e632050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.54|4x|48525043204d756c74692d46532053796e6320726571756573742068616e646c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.55|4x|48554c43206d756c746966732070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.56|4x|4852504320686e657477706f6c20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.57|4x|48756c63205761726d20557067726164652050726570
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.58|4x|4852504320697061646d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.59|4x|534d2052424350204d6f6e69746f72
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.60|4x|48554c4320514d205463616d204d656d6f727920436f6e73697374656e637920
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.61|4x|48756c632045454d2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.62|4x|45454d204544204e44
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.63|4x|45454d204544204964656e74697479
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.64|4x|45454d204544204d4154
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.65|4x|485250432068736d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.66|4x|537461636b204d6772
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.67|4x|537461636b204d6772204e6f746966696572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.68|4x|4669666f204572726f7220446574656374696f6e2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.69|4x|41646a75737420526567696f6e73
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.70|4x|68727063202d3e20726573706f6e7365
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.71|4x|68727063202d3e2072657175657374
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.72|4x|68727063203c2d20726573706f6e7365
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.73|4x|485250432068636f6d7020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.74|4x|48554c4320446576696365204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.75|4x|485250432068646d206e6f6e20626c6f636b696e672072657175657374206861
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.76|4x|485250432068646d20626c6f636b696e6720726571756573742068616e646c65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.77|4x|4849504320626b6772642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.78|4x|52545459532050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.79|4x|48756c6320506f72742d5365637572697479
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.80|4x|4852504320687073656375726520726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.81|4x|4852504320686c666d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.82|4x|484c464d2061646472657373206c6561726e696e672070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.83|4x|484c464d206167696e672070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.84|4x|484c464d20616464726573732072657472792070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.85|4x|48525043206872636d6420726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.86|4x|4852504320656d616320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.87|4x|485250432068756c63206d6973632072706320726571756573742068616e646c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.88|4x|48554c43205463616d204d656d6f727920436f6e73697374656e637920436865
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.89|4x|48564c414e206d61696e20626b6772642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.90|4x|48564c414e204d617070656420566c616e204964205570646174652050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.91|4x|566c616e2073687574646f776e2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.92|4x|4852504320766c616e20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.93|4x|48554c4320564c414e20524546204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.94|4x|68756c635f7870735f70726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.95|4x|48525043206973697320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.96|4x|48525043206866626d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.97|4x|48434d502073796e632070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.98|4x|4852504320696c7020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.99|4x|496e6c696e6520506f776572205477746920726561642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.100|4x|48554c4320504d20566563746f722050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.101|4x|48504d204d73672052657472792050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.102|4x|43454620525020495043204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.103|4x|68706d206d61696e2070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.104|4x|48504d20537461636b2053796e632050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.105|4x|4852504320706d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.106|4x|48504d2069665f6e756d206d617070696e67
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.107|4x|68706d20636f756e7465722070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.108|4x|4852504320706d2d636f756e7465727320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.109|4x|68706d207670206576656e74732063616c6c6261636b2070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.110|4x|485250432068636d7020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.111|4x|484345462041444a20526566726573682062672070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.112|4x|4852504320686c336d6d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.113|4x|686c336d645f727066715f7468726c5f70726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.114|4|hl3mm
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.115|4x|686c336d6d5f7270
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.116|4x|4841434c2051756575652050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.117|4x|485250432061636c20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.118|4x|4841434c2041636c204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.119|4x|48525043206261636b757020696e746572666163652072657175657374206861
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.120|4x|436f6c6c656374696f6e2070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.121|4x|485250432063647020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.122|4x|48525043206c6c647020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.123|4x|48554c4320434953502050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.124|4x|4852504320646f74317820726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.125|4x|446f743158204d73672052657472792050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.126|4x|48554c4320444f5431582050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.127|4x|4852504320666f78686f756e6420726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.128|4x|48756c6320466f78686f756e642050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.129|4x|485250432073797374656d206d747520726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.130|4x|534d49204d53472052657472792050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.131|4x|4852504320536d61727420496e7374616c6c20726571756573742068616e646c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.132|4x|485250432073646d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.133|4x|48756c632053746f726d20436f6e74726f6c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.134|4x|485354502053796e632050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.135|4x|48525043207374705f636c6920726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.136|4x|48525043207374705f73746174655f73796e6320726571756573742068616e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.137|4x|532f57204272696467652050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.138|4x|48525043206875646c6420726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.139|4x|48525043207671706320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.140|4x|48525043206965635f6c6f61645f62616c616e63652072657175657374206861
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.141|4x|48525043206c32707420716e712072706320726571756573742068616e646c65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.142|4x|485250432061696d20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.143|4x|4d41437365632050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.144|4x|48525043206d616373656320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.145|4x|4852504320686c656420726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.146|4x|48756c63204c45442050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.147|4x|484c335520626b6772642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.148|4x|4852504320686c337520726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.149|4x|484950563620626b6772642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.150|4x|48525043204950763620556e696361737420527420726571756573742068616e
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.151|4x|484c33552050425220626b6772642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.152|4x|484c335520504252206e2d68207265736f6c76652070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.153|4x|485250432064747020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.154|4x|485250432073686f775f666f727761726420726571756573742068616e646c65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.155|4x|4852504320736e6d7020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.156|4x|48554c4320534e4d502050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.157|4x|48514d20537461636b2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.158|4x|4852504320716f7320726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.159|4x|48525043207370616e20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.160|4x|48525043206f62666c20726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.161|4x|485250432073797374656d20706f737420726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.162|4x|48756c632052656c6f6164204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.163|4x|48525043206872636c692d6576656e747320726571756573742068616e646c65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.164|4x|436f6e6e656374696f6e204d6772
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.165|4x|696d616765206d6772
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.166|4x|48524653204f49522050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.167|4x|506f776572205250532050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.168|4|HL2MCM
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.169|4|HL2MCM
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.170|4x|5049204d41544d204167696e672050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.171|4x|537769746368204261636b757020496e746572666163652050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.172|4x|4d4d4e20626b6772642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.173|4x|41757468204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.174|4x|446f743178204d67722050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.175|4x|4d4142204672616d65776f726b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.176|4x|4155544820504f4c494359204672616d65776f726b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.177|4x|434d442048414e444c4552
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.178|4x|3830322e317820737769746368
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.179|4x|3830322e3178204d4441204167696e672050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.180|4x|3830322e317820576562617574682046616c6c6261636b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.181|4x|4454502050726f746f636f6c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.182|4x|454150204672616d65776f726b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.183|4x|4541502054657374
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.184|4x|48525043204950763620486f737420726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.185|4x|4950763620506c6174666f726d20486f7374
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.186|4x|485250432064616920726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.187|4x|48554c43204441492050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.188|4x|485250432069702064657669636520747261636b20726571756573742068616e
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.189|4x|4852504320697020736f7572636520677561726420726571756573742068616e
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.190|4x|48554c4320495020536f757263652067756172642050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.191|4|UDLD
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.192|4x|506f72742d5365637572697479
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.193|4x|495020486f737420547261636b2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.194|4x|4c696e6b2053746174652047726f75702050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.195|4|Ethchnl
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.196|4x|564d41544d2043616c6c6261636b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.197|4x|43445020466f72776172642050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.198|4|MKA
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.199|4x|41414120536572766572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.200|4x|41414120414343542050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.201|4x|4143435420506572696f6469632050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.202|4x|4141412053797374656d20416363742050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.203|4x|417574682d70726f78792041414120426b6764
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.204|4x|49502041646d696e20534d2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.205|4x|4344502050726f746f636f6c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.206|4x|5370616e547265652048656c706572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.207|4x|4852504320785f736574757020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.208|4x|4141412044696374696f6e6172792052656379636c65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.209|4x|4448435020536e6f6f70696e67
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.210|4x|4448435020536e6f6f70696e67206462
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.211|4x|43454620737769746368696e67206261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.212|4x|495020496e707574
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.213|4x|49434d50206576656e742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.214|4x|49502041525020547261636b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.215|4x|495076362070696e672070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.216|4x|4d444653204d4649422050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.217|4x|41444a207265736f6c76652070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.218|4x|41444a204e53462070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.220|4x|534d49204469726563746f722044422050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.221|4x|534d4920434450205570646174652048616e646c65722050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.222|4x|534d49204261636b75702050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.223|4x|534d4920494243207365727665722070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.224|4x|534d492049424320636c69656e742070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.225|4x|534d492049424320446f776e6c6f61642050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.226|4x|5370616e6e696e672054726565
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.227|4x|5370616e6e696e6720547265652053746174652053796e63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.228|4x|4541506f5544502050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.229|4x|4b52423520414141
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.230|4x|53585020434f5245
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.231|4x|434546206261636b67726f756e642070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.232|4x|49502049524450
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.233|4x|4345462052462048554c4320436f6e7665726765
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.234|4x|584452206d63617374
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.235|4x|49502041434c20584452204c43204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.236|4x|495043204c43204d6573736167652048616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.237|4x|5844522052502050696e67204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.238|4x|584452205250206261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.239|4x|5844522052502054657374204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.240|4x|4d444653204c432050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.241|4x|5443502054696d6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.242|4x|5443502050726f746f636f6c73
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.243|4x|536f636b65742054696d657273
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.244|4x|4854545020434f5245
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.245|4x|436c7573746572204c32
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.246|4x|436c75737465722052415250
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.247|4x|436c75737465722042617365
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.248|4x|5241525020496e707574
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.249|4x|437269746963616c2041757468
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.250|4x|446f74317820537570706c6963616e742050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.251|4x|446f74317820537570706c6963616e74204261636b656e642050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.252|4x|446f74317820537570706c6963616e7420444843502050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.253|4x|48525043206468637020736e6f6f70696e6720726571756573742068616e646c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.254|4x|48554c43204448435020536e6f6f70696e672050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.255|4x|496e6c696e6520506f776572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.257|4x|4852504320737461636b20706f77657220726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.258|4x|49474d50534e204c324d434d
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.259|4x|49474d50534e204d5244
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.260|4|IGMPSN
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.261|4|IGMPQR
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.262|4x|4c32545241434520534552564552
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.263|4x|4d4c44534e204c324d434d
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.264|4|MRD
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.265|4x|4d4c445f534e4f4f50
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.266|4x|4852504320687763637020726571756573742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.267|4x|48554c435f574343505f4241434b47524f554e445f50524f43455353
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.268|4x|63727970746f20656e67696e652070726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.269|4x|49502052494220557064617465
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.270|4x|44484350442052656365697665
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.271|4x|4852504320686c326d636d2069676d70736e2020726571756573742068616e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.272|4x|4d4446532052502070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.273|4x|4852504320686c326d636d206d6c64736e2020726571756573742068616e646c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.274|4x|44484350442054696d6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.275|4x|45504d204d41494e2050524f43455353
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.276|4x|4c4f43414c20414141
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.277|4x|454e41424c4520414141
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.278|4x|4c494e4520414141
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.279|4x|4d444653204c4320446f776e6c6f61642041636b2050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.280|4|TPLUS
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.281|4x|43727970746f204341
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.282|4x|43727970746f20504b492d43524c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.283|4x|43727970746f2053534c20
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.284|4x|656e63727970742070726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.285|4x|56545020547261702050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.286|4x|5654504d4942204544495420425546464552204150504c59
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.287|4x|444843502053656375726974792048656c706572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.288|4x|4843442050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.289|4x|48525043206361626c6520646961676e6f737469637320726571756573742068
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.290|4x|4469616743617264332f2d31
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.291|4x|504d2043616c6c6261636b
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.292|4x|564c414e204d616e61676572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.293|4x|4448435044204461746162617365
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.294|4x|6468637020736e6f6f70696e672073772070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.295|4x|4c6963656e73696e67204d49422070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.297|4x|4141412053454e442053544f50204556454e54
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.298|4x|45454d20454420526f7574696e67
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.299|4x|45454d204544205379736c6f67
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.300|4x|5379736c6f67205472617073
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.301|4|Syslog
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.303|4x|45454d20536572766572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.304|4x|45454d20506f6c696379204469726563746f72
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.306|4x|45454d20454420434c49
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.307|4x|45454d20454420436f756e746572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.308|4x|45454d20454420496e74657266616365
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.309|4x|45454d20454420494f535744
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.310|4x|45454d204544204e6f6e65
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.311|4x|45454d204544204f4952
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.312|4x|535348204576656e742068616e646c6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.313|4x|45454d20454420534e4d50
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.314|4x|45454d20454420534e4d50204f626a656374
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.315|4x|45454d204544204970736c61
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.316|4x|45454d20454420534e4d50204e6f7469
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.317|4x|45454d2045442054696d6572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.318|4x|5354502046415354205452414e534954494f4e
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.319|4x|43535254205241504944205452414e534954494f4e
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.320|4x|45454d20454420525043
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.321|4x|52424d20434f5245
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.322|4x|534e4d502054696d657273
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.323|4x|495020534e4d50
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.324|4x|5044552044495350415443484552
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.325|4x|534e4d5020454e47494e45
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.326|4x|495020534e4d505636
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.327|4x|534e4d5020436f6e66436f707950726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.328|4x|534e4d50205472617073
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.329|4x|52414449555320504f4420534552564552
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.330|4x|4345463a20495076342070726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.331|4x|41444a206261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.332|4x|4950204261636b67726f756e64
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.333|4x|446f7431782041757468656e74696361746f722050726f63657373
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.334|4x|446f7431782041757468656e74696361746f72204261636b656e642050726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.335|4x|4c4c44502050726f746f636f6c
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.336|4|RADIUS
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.337|4x|63727970746f20737720706b2070726f63
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.338|4x|4d4143204e6f74696669636174696f6e
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.339|4x|68756c6320636667206d6772206d6173746572
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.340|4x|68756c632072756e6e696e6720636f6e666967
1.3.6.1.4.1.9.9.109.1.2.1.1.2.1.341|4x|4c4943454e5345204147454e54
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.2|66|1
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.4|66|21917
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.5|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.9|66|450
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.14|66|11000
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.16|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.18|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.20|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.21|66|34
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.23|66|29250
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.24|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.28|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.31|66|554
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.33|66|41
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.34|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.35|66|70
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.36|66|26907
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.37|66|2833
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.38|66|100
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.40|66|48
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.41|66|1791
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.43|66|26
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.44|66|90
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.46|66|1
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.62|66|175
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.67|66|36333
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.68|66|42
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.69|66|1888
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.70|66|21
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.71|66|32
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.72|66|177
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.77|66|35
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.79|66|22
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.82|66|45
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.83|66|40
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.84|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.87|66|145
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.88|66|1704
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.89|66|11
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.92|66|159
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.94|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.97|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.99|66|15628
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.103|66|359
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.104|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.107|66|1103
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.111|66|1832
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.114|66|13
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.115|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.120|66|879
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.133|66|38
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.146|66|341
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.147|66|86
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.149|66|68
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.151|66|8
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.152|66|19
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.157|66|2145
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.158|66|994
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.167|66|8
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.169|66|2666
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.170|66|375
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.171|66|4500
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.172|66|3
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.173|66|29
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.178|66|33
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.179|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.181|66|143
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.187|66|589
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.191|66|3
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.192|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.195|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.196|66|133
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.199|66|64
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.204|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.205|66|567
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.206|66|462
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.209|66|13
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.212|66|474
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.214|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.216|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.221|66|9000
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.226|66|117
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.227|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.230|66|200
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.231|66|103
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.235|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.238|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.241|66|48
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.242|66|150
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.243|66|2
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.244|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.245|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.246|66|15
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.247|66|61
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.248|66|159
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.255|66|431
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.258|66|310
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.259|66|250
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.260|66|257
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.263|66|391
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.268|66|1333
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.269|66|122
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.270|66|246
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.272|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.274|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.276|66|221
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.279|66|24
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.281|66|8250
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.291|66|11
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.292|66|2428
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.293|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.294|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.297|66|188
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.299|66|55
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.301|66|66
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.303|66|130
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.304|66|4500
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.312|66|218
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.317|66|20
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.319|66|4000
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.323|66|250
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.324|66|298
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.325|66|1250
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.328|66|38513
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.330|66|90
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.332|66|181
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.335|66|231
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.336|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.337|66|17703
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.338|66|2940
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.340|66|170415
1.3.6.1.4.1.9.9.109.1.2.1.1.4.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.1|67|644369176
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.2|67|697206930
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.4|67|697206673
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.5|67|696845126
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.6|67|9884
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.7|67|4610
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.8|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.9|67|697207375
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.10|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.11|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.12|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.13|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.14|67|9897
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.15|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.16|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.17|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.18|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.19|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.20|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.21|67|697206843
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.22|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.23|67|14545
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.24|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.25|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.26|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.27|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.28|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.29|67|9884
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.30|67|528
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.31|67|697207348
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.32|67|530
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.33|67|697207252
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.34|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.35|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.36|67|697205313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.37|67|9157
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.38|67|661665372
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.39|67|9847
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.40|67|697206546
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.41|67|697207155
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.42|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.43|67|649009318
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.44|67|697207251
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.45|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.46|67|697207383
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.47|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.48|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.49|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.50|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.51|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.52|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.53|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.54|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.55|67|464861932
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.56|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.57|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.58|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.59|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.60|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.61|67|553
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.62|67|697207151
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.63|67|8714
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.64|67|8688
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.65|67|4788
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.66|67|9758
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.67|67|9870
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.68|67|697207387
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.69|67|151978318
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.70|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.71|67|697207218
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.72|67|697207218
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.73|67|7204
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.74|67|8524
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.75|67|8014
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.76|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.77|67|697207155
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.78|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.79|67|697207230
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.80|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.81|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.82|67|697207386
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.83|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.84|67|697207386
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.85|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.86|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.87|67|697202653
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.88|67|697207013
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.89|67|697207270
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.90|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.91|67|9899
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.92|67|697207218
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.93|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.94|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.95|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.96|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.97|67|697203855
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.98|67|7211
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.99|67|661663998
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.100|67|8327
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.101|67|8327
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.102|67|9937
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.103|67|697207383
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.104|67|697207351
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.105|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.106|67|9826
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.107|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.108|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.109|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.110|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.111|67|697048091
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.112|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.113|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.114|67|697207276
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.115|67|697207363
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.116|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.117|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.118|67|9944
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.119|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.120|67|697134524
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.121|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.122|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.123|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.124|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.125|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.126|67|420482992
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.127|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.128|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.129|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.130|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.131|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.132|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.133|67|697207385
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.134|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.135|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.136|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.137|67|9753
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.138|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.139|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.140|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.141|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.142|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.143|67|9884
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.144|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.145|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.146|67|697207391
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.147|67|697207299
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.148|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.149|67|697207263
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.150|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.151|67|697206970
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.152|67|697195393
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.153|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.154|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.155|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.156|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.157|67|697206957
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.158|67|697207164
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.159|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.160|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.161|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.162|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.163|67|8469
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.164|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.165|67|9884
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.166|67|8501
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.167|67|697207270
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.168|67|9848
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.169|67|9848
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.170|67|697207313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.171|67|9847
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.172|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.173|67|697207230
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.174|67|420482992
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.175|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.176|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.177|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.178|67|697207230
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.179|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.180|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.181|67|697205453
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.182|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.183|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.184|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.185|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.186|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.187|67|697207390
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.188|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.189|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.190|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.191|67|697207383
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.192|67|697205511
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.193|67|9757
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.194|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.195|67|697207013
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.196|67|697200209
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.197|67|9884
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.198|67|9884
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.199|67|577148337
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.200|67|12945
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.201|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.202|67|14045
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.203|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.204|67|697183781
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.205|67|697206992
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.206|67|697207150
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.207|67|8659
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.208|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.209|67|697196503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.210|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.211|67|9927
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.212|67|697207396
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.213|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.214|67|697207389
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.215|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.216|67|697207388
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.217|67|13128
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.218|67|9899
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.220|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.221|67|8502
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.222|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.223|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.224|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.225|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.226|67|697207388
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.227|67|697203896
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.228|67|9743
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.229|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.230|67|577156658
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.231|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.232|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.233|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.234|67|9937
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.235|67|697207013
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.236|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.237|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.238|67|697203395
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.239|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.240|67|10385
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.241|67|648985313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.242|67|648985313
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.243|67|697207332
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.244|67|697183781
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.245|67|697200862
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.246|67|697207013
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.247|67|697207185
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.248|67|683849617
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.249|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.250|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.251|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.252|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.253|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.254|67|39828
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.255|67|697207151
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.257|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.258|67|697196706
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.259|67|697204473
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.260|67|697205490
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.261|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.262|67|9891
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.263|67|697196706
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.264|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.265|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.266|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.267|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.268|67|10110
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.269|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.270|67|697207332
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.271|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.272|67|697207396
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.273|67|8503
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.274|67|697204629
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.275|67|9848
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.276|67|577148337
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.277|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.278|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.279|67|697206843
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.280|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.281|67|10612
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.282|67|8659
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.283|67|8659
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.284|67|8659
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.285|67|171296048
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.286|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.287|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.288|67|8659
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.289|67|8659
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.290|67|9797
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.291|67|697207340
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.292|67|171296547
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.293|67|697205316
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.294|67|697207053
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.295|67|8823
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.297|67|577193303
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.298|67|8781
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.299|67|697207151
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.300|67|8662
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.301|67|697207252
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.303|67|577156854
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.304|67|8688
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.306|67|8781
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.307|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.308|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.309|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.310|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.311|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.312|67|696963200
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.313|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.314|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.315|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.316|67|8781
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.317|67|697206030
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.318|67|9882
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.319|67|9882
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.320|67|8802
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.321|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.322|67|237943020
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.323|67|697207401
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.324|67|697207401
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.325|67|697207403
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.326|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.327|67|9065
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.328|67|697198624
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.329|67|9893
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.330|67|697207346
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.331|67|9995
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.332|67|697206851
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.333|67|420482992
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.334|67|9885
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.335|67|697206430
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.336|67|697207403
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.337|67|696963194
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.338|67|697198624
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.339|67|464861705
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.340|67|464861704
1.3.6.1.4.1.9.9.109.1.2.1.1.5.1.341|67|9886
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.2|66|1
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.4|66|21917
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.5|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.9|66|450
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.14|66|11000
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.16|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.18|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.20|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.21|66|34
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.23|66|29250
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.24|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.28|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.31|66|554
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.33|66|41
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.34|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.35|66|70
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.36|66|26907
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.37|66|2833
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.38|66|100
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.40|66|48
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.41|66|1791
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.43|66|26
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.44|66|90
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.46|66|1
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.62|66|175
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.67|66|36333
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.68|66|42
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.69|66|1888
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.70|66|21
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.71|66|32
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.72|66|177
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.77|66|35
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.79|66|22
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.82|66|45
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.83|66|40
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.84|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.87|66|145
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.88|66|1704
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.89|66|11
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.92|66|159
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.94|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.97|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.99|66|15628
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.103|66|359
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.104|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.107|66|1103
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.111|66|1832
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.114|66|13
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.115|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.120|66|879
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.133|66|38
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.146|66|341
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.147|66|86
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.149|66|68
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.151|66|8
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.152|66|19
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.157|66|2145
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.158|66|994
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.167|66|8
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.169|66|2666
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.170|66|375
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.171|66|4500
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.172|66|3
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.173|66|29
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.178|66|33
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.179|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.181|66|143
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.187|66|589
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.191|66|3
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.192|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.195|66|9
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.196|66|133
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.199|66|64
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.204|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.205|66|567
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.206|66|462
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.209|66|13
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.212|66|474
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.214|66|5
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.216|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.221|66|9000
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.226|66|117
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.227|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.230|66|200
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.231|66|103
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.235|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.238|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.241|66|48
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.242|66|150
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.243|66|2
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.244|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.245|66|6
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.246|66|15
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.247|66|61
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.248|66|159
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.255|66|431
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.258|66|310
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.259|66|250
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.260|66|257
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.263|66|391
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.268|66|1333
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.269|66|122
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.270|66|246
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.272|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.274|66|12
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.276|66|221
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.279|66|24
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.281|66|8250
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.291|66|11
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.292|66|2428
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.293|66|4
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.294|66|7
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.297|66|188
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.299|66|55
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.301|66|66
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.303|66|130
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.304|66|4500
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.312|66|218
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.317|66|20
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.319|66|4000
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.323|66|250
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.324|66|298
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.325|66|1250
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.328|66|38513
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.330|66|90
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.332|66|181
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.335|66|231
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.336|66|10
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.337|66|17703
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.338|66|2940
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.340|66|170415
1.3.6.1.4.1.9.9.109.1.2.1.1.6.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.1|66|14824
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.2|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.5|66|94876
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.6|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.9|66|394480
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.12|66|204
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.14|66|109332
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.21|66|5232
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.23|66|539852
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.28|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.29|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.31|66|218363180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.33|66|359460
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.34|66|520040
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.35|66|64742168
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.36|66|7992
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.37|66|114916
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.39|66|4140
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.41|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.46|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.53|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.59|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.62|66|32168
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.63|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.64|66|4980
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.67|66|539116
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.68|66|10176
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.69|66|4088
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.72|66|1257233100
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.74|66|732
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.75|66|68
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.76|66|176
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.79|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.82|66|1663992
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.83|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.84|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.87|66|702411820
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.90|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.91|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.92|66|49300
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.94|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.99|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.102|66|216
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.103|66|718435876
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.104|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.106|66|5224
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.107|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.114|66|8282880
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.118|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.120|66|1136
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.128|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.133|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.134|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.137|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.143|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.146|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.147|66|9160
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.157|66|3242110788
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.158|66|797216656
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.165|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.167|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.168|66|294460
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.169|66|294460
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.170|66|1117944
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.171|66|81352
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.173|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.174|66|400
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.179|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.181|66|352712
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.187|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.191|66|472
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.192|66|216
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.193|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.195|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.196|66|3196
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.197|66|5224
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.198|66|7836
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.199|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.200|66|984
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.205|66|200879832
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.206|66|359044732
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.208|66|204
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.211|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.212|66|14757864
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.214|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.216|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.217|66|532
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.218|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.220|66|3140
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.221|66|10044
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.222|66|680
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.223|66|4052
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.224|66|364
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.225|66|4832
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.226|66|136705332
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.228|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.229|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.230|66|2060
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.231|66|476
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.235|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.240|66|7488
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.241|66|4076
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.242|66|2070344
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.244|66|109300
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.245|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.247|66|34463812
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.250|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.251|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.252|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.255|66|604
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.258|66|15901852
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.259|66|1000608
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.260|66|803756
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.262|66|15092
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.263|66|15813224
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.268|66|31252
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.269|66|146372
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.270|66|1697996
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.272|66|3405361408
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.276|66|56180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.277|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.278|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.280|66|2060
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.281|66|531968
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.285|66|4832
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.286|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.287|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.290|66|68
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.291|66|811835088
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.292|66|165276
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.293|66|216
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.294|66|4832
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.297|66|24292
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.298|66|5032
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.299|66|232872
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.301|66|80518908
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.303|66|170884
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.304|66|13240
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.306|66|4980
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.307|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.308|66|7512
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.309|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.310|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.311|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.312|66|2295504
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.313|66|5056
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.314|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.315|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.316|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.317|66|5208
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.318|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.319|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.320|66|4904
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.321|66|600
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.323|66|4030426516
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.324|66|1825976364
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.325|66|2320930216
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.326|66|1056
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.328|66|643354616
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.329|66|1088
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.330|66|256388
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.331|66|216
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.332|66|160
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.333|66|4488
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.334|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.335|66|372029120
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.336|66|60512
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.337|66|890612448
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.340|66|266811920
1.3.6.1.4.1.9.9.109.1.2.2.1.1.1.341|66|8856
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.1|66|6176
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.2|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.4|66|452
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.5|66|25376212
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.6|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.9|66|11841912
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.12|66|204
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.14|66|83048
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.23|66|539276
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.28|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.29|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.33|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.34|66|5328
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.35|66|64725268
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.36|66|396
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.37|66|154072
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.39|66|4140
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.41|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.43|66|348100
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.46|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.53|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.59|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.62|66|734398508
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.67|66|10808
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.68|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.69|66|4088
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.72|66|1343285812
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.74|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.75|66|68
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.76|66|176
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.79|66|187649444
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.82|66|26512
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.83|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.84|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.87|66|698651580
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.90|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.91|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.92|66|41320
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.94|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.99|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.103|66|2759422360
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.104|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.106|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.107|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.114|66|8282880
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.118|66|5884
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.120|66|42772
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.128|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.133|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.134|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.137|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.143|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.146|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.147|66|12536
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.151|66|4652
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.157|66|2801816252
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.158|66|797216656
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.165|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.167|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.168|66|1248
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.169|66|1248
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.170|66|144748
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.173|66|4424
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.174|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.178|66|187813392
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.179|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.181|66|47852
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.187|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.191|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.193|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.195|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.196|66|7977364
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.197|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.198|66|392
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.199|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.202|66|168
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.205|66|48835084
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.206|66|621176932
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.208|66|204
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.211|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.212|66|2496720
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.214|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.216|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.217|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.218|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.223|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.225|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.226|66|1332788
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.228|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.229|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.230|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.231|66|580
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.235|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.240|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.241|66|58176
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.242|66|1361076
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.244|66|101440
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.245|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.247|66|34463048
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.250|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.251|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.252|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.254|66|372
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.258|66|149410652
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.259|66|1531824
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.260|66|269820
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.262|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.263|66|148668152
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.268|66|1844
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.270|66|152224
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.276|66|53192
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.277|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.278|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.280|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.281|66|525988
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.285|66|1992
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.286|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.287|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.290|66|284
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.291|66|2290084704
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.292|66|134972
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.294|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.297|66|141760
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.301|66|80518908
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.304|66|1668
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.312|66|1942080
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.318|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.319|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.321|66|384
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.323|66|4026121768
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.324|66|2102028744
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.325|66|2397326176
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.326|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.328|66|636644952
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.329|66|780
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.330|66|340
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.333|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.334|66|180
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.335|66|38848
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.336|66|2980
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.337|66|890960700
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.338|66|2243460
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.340|66|266783576
1.3.6.1.4.1.9.9.109.1.2.2.1.2.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.1|65|11
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.2|65|1392181
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.4|65|3048071
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.5|65|1456
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.6|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.7|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.8|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.9|65|119997785
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.10|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.11|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.12|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.13|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.14|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.15|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.16|65|116157
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.17|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.18|65|6917077
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.19|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.20|65|6917053
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.21|65|464558
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.22|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.23|65|4
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.24|65|6917083
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.25|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.26|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.27|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.28|65|6917058
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.29|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.30|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.31|65|3617579
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.32|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.33|65|716840
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.34|65|6917010
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.35|65|6917115
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.36|65|117701
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.37|65|6
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.38|65|770
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.39|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.40|65|381128
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.41|65|1392147
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.42|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.43|65|1981
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.44|65|2086642
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.45|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.46|65|137981472
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.47|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.48|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.49|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.50|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.51|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.52|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.53|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.54|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.55|65|20
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.56|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.57|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.58|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.59|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.60|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.61|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.62|65|1125489
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.63|65|83
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.64|65|119
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.65|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.66|65|7
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.67|65|6
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.68|65|363728218
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.69|65|9
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.70|65|6916981
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.71|65|1954418
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.72|65|2100901
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.73|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.74|65|11
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.75|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.76|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.77|65|1392122
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.78|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.79|65|1956318
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.80|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.81|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.82|65|204328365
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.83|65|6917001
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.84|65|204601328
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.85|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.86|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.87|65|1876385
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.88|65|696662
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.89|65|2321286
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.90|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.91|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.92|65|327
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.93|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.94|65|116156
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.95|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.96|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.97|65|38734
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.98|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.99|65|194
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.100|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.101|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.102|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.103|65|81573238
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.104|65|579787
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.105|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.106|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.107|65|6916178
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.108|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.109|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.110|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.111|65|3323
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.112|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.113|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.114|65|4875901
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.115|65|3476738
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.116|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.117|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.118|65|26
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.119|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.120|65|1653
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.121|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.122|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.123|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.124|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.125|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.126|65|20
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.127|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.128|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.129|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.130|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.131|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.132|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.133|65|34535083
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.134|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.135|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.136|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.137|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.138|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.139|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.140|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.141|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.142|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.143|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.144|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.145|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.146|65|164263554
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.147|65|5099473
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.148|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.149|65|1591943
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.150|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.151|65|1591968
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.152|65|58097
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.153|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.154|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.155|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.156|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.157|65|1392104
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.158|65|2784188
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.159|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.160|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.161|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.162|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.163|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.164|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.165|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.166|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.167|65|2321279
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.168|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.169|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.170|65|6916907
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.171|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.172|65|116155
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.173|65|978176
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.174|65|19
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.175|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.176|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.177|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.178|65|978181
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.179|65|116156
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.180|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.181|65|464532
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.182|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.183|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.184|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.185|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.186|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.187|65|271734464
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.188|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.189|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.190|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.191|65|6971977
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.192|65|232400
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.193|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.194|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.195|65|696695
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.196|65|39640
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.197|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.198|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.199|65|374
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.200|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.201|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.202|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.203|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.204|65|23240
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.205|65|1493670
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.206|65|505905
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.207|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.208|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.209|65|58100
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.210|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.211|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.212|65|215928480
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.213|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.214|65|13453534
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.215|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.216|65|69124871
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.217|65|4
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.218|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.220|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.221|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.222|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.223|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.224|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.225|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.226|65|75136696
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.227|65|116195
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.228|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.229|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.230|65|210
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.231|65|139604
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.232|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.233|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.234|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.235|65|696693
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.236|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.237|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.238|65|58097
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.239|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.240|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.241|65|20386
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.242|65|1994
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.243|65|7200701
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.244|65|23655
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.245|65|87149
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.246|65|696693
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.247|65|1000156
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.248|65|66109
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.249|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.250|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.251|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.252|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.253|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.254|65|4
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.255|65|1380419
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.257|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.258|65|23892
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.259|65|81534
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.260|65|197371
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.261|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.262|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.263|65|23886
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.264|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.265|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.266|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.267|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.268|65|12
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.269|65|116156
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.270|65|14773518
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.271|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.272|65|69353958
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.273|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.274|65|60033
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.275|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.276|65|374
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.277|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.278|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.279|65|464556
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.280|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.281|65|4
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.282|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.283|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.284|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.285|65|30
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.286|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.287|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.288|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.289|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.290|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.291|65|36743939
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.292|65|7
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.293|65|116160
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.294|65|557433
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.295|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.297|65|186
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.298|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.299|65|389459
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.300|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.301|65|385933
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.303|65|269
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.304|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.306|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.307|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.308|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.309|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.310|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.311|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.312|65|3873
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.313|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.314|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.315|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.316|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.317|65|205414
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.318|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.319|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.320|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.321|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.322|65|52
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.323|65|374661491
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.324|65|187436429
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.325|65|188325905
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.326|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.327|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.328|65|26184
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.329|65|4
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.330|65|10810697
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.331|65|3
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.332|65|414740
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.333|65|20
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.334|65|2
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.335|65|1935459
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.336|65|204331314
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.337|65|171875
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.338|65|23491
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.339|65|59
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.340|65|1187
1.3.6.1.4.1.9.9.109.1.2.2.1.3.1.341|65|1
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.1|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.2|65|2618
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.4|65|66806692
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.5|65|16
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.6|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.7|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.8|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.9|65|54082650
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.10|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.11|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.12|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.13|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.14|65|33
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.15|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.16|65|694
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.17|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.18|65|52439
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.19|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.20|65|46690
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.21|65|16210
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.22|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.23|65|117
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.24|65|71738
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.25|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.26|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.27|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.28|65|48976
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.29|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.30|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.31|65|2006957
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.32|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.33|65|29567
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.34|65|87269
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.35|65|489204
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.36|65|3166991
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.37|65|17
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.38|65|77
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.39|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.40|65|18537
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.41|65|2493746
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.42|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.43|65|52
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.44|65|188436
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.45|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.46|65|272801
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.47|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.48|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.49|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.50|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.51|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.52|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.53|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.54|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.55|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.56|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.57|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.58|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.59|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.60|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.61|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.62|65|197335
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.63|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.64|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.65|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.66|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.67|65|218
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.68|65|15532988
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.69|65|17
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.70|65|147878
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.71|65|62759
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.72|65|372178
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.73|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.74|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.75|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.76|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.77|65|49143
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.78|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.79|65|44853
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.80|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.81|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.82|65|9396991
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.83|65|280632
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.84|65|2002647
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.85|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.86|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.87|65|273700
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.88|65|1187614
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.89|65|27069
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.90|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.91|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.92|65|52
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.93|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.94|65|769
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.95|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.96|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.97|65|216
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.98|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.99|65|3032
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.100|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.101|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.102|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.103|65|29309194
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.104|65|5500
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.105|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.106|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.107|65|7633493
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.108|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.109|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.110|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.111|65|6090
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.112|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.113|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.114|65|67531
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.115|65|22316
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.116|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.117|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.118|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.119|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.120|65|1454
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.121|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.122|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.123|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.124|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.125|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.126|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.127|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.128|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.129|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.130|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.131|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.132|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.133|65|1345079
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.134|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.135|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.136|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.137|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.138|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.139|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.140|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.141|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.142|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.143|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.144|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.145|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.146|65|56027813
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.147|65|442222
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.148|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.149|65|109502
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.150|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.151|65|13444
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.152|65|1107
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.153|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.154|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.155|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.156|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.157|65|2986310
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.158|65|2770265
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.159|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.160|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.161|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.162|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.163|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.164|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.165|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.166|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.167|65|20006
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.168|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.169|65|8
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.170|65|2599994
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.171|65|9
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.172|65|452
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.173|65|28415
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.174|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.175|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.176|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.177|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.178|65|32614
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.179|65|754
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.180|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.181|65|66466
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.182|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.183|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.184|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.185|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.186|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.187|65|160116443
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.188|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.189|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.190|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.191|65|23485
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.192|65|1073
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.193|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.194|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.195|65|6579
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.196|65|5303
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.197|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.198|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.199|65|24
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.200|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.201|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.202|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.203|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.204|65|136
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.205|65|847342
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.206|65|233815
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.207|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.208|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.209|65|786
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.210|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.211|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.212|65|102438873
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.213|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.214|65|78126
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.215|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.216|65|295985
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.217|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.218|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.220|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.221|65|9
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.222|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.223|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.224|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.225|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.226|65|8819515
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.227|65|486
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.228|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.229|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.230|65|42
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.231|65|14419
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.232|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.233|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.234|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.235|65|8557
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.236|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.237|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.238|65|369
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.239|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.240|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.241|65|995
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.242|65|301
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.243|65|15054
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.244|65|244
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.245|65|531
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.246|65|10701
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.247|65|61025
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.248|65|10565
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.249|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.250|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.251|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.252|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.253|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.254|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.255|65|595141
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.257|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.258|65|7422
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.259|65|20401
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.260|65|50844
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.261|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.262|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.263|65|9348
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.264|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.265|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.266|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.267|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.268|65|16
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.269|65|14238
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.270|65|3645005
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.271|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.272|65|880960
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.273|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.274|65|746
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.275|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.276|65|83
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.277|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.278|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.279|65|11447
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.280|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.281|65|33
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.282|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.283|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.284|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.285|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.286|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.287|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.288|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.289|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.290|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.291|65|436253
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.292|65|17
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.293|65|525
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.294|65|3958
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.295|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.297|65|35
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.298|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.299|65|21613
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.300|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.301|65|25484
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.303|65|35
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.304|65|9
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.306|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.307|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.308|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.309|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.310|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.311|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.312|65|847
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.313|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.314|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.315|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.316|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.317|65|4294
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.318|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.319|65|8
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.320|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.321|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.322|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.323|65|94011027
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.324|65|55865346
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.325|65|235435718
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.326|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.327|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.328|65|1008425
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.329|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.330|65|982731
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.331|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.332|65|75425
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.333|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.334|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.335|65|447773
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.336|65|2246997
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.337|65|3042797
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.338|65|69065
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.339|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.340|65|202283
1.3.6.1.4.1.9.9.109.1.2.2.1.4.1.341|65|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.2|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.5|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.9|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.14|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.23|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.28|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.33|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.34|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.35|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.36|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.37|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.41|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.46|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.62|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.67|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.68|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.69|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.72|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.79|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.82|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.83|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.84|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.87|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.92|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.94|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.99|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.103|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.104|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.107|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.114|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.120|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.133|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.146|66|5
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.147|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.157|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.158|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.167|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.169|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.170|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.173|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.179|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.181|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.187|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.191|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.195|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.196|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.199|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.205|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.206|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.212|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.214|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.216|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.226|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.230|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.231|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.235|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.241|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.242|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.244|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.245|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.247|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.258|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.259|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.260|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.263|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.268|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.270|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.276|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.281|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.291|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.292|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.294|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.297|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.301|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.304|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.312|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.319|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.323|66|2
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.324|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.325|66|48
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.328|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.330|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.335|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.336|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.337|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.340|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.5.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.2|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.5|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.9|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.14|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.23|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.28|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.33|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.34|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.35|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.36|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.37|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.41|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.46|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.62|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.67|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.68|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.69|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.72|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.79|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.82|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.83|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.84|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.87|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.92|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.94|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.99|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.103|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.104|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.107|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.114|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.120|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.133|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.146|66|2
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.147|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.157|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.158|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.167|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.169|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.170|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.173|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.179|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.181|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.187|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.191|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.195|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.196|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.199|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.205|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.206|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.212|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.214|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.216|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.226|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.230|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.231|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.235|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.241|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.242|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.244|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.245|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.247|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.258|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.259|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.260|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.263|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.268|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.270|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.276|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.281|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.291|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.292|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.294|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.297|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.301|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.304|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.312|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.319|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.323|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.324|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.325|66|38
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.328|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.330|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.335|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.336|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.337|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.340|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.6.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.2|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.5|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.9|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.14|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.23|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.28|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.33|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.34|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.35|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.36|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.37|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.41|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.46|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.62|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.67|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.68|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.69|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.72|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.79|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.82|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.83|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.84|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.87|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.92|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.94|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.99|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.103|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.104|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.107|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.114|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.120|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.133|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.146|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.147|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.157|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.158|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.167|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.169|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.170|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.173|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.179|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.181|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.187|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.191|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.195|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.196|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.199|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.205|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.206|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.212|66|1
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.214|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.216|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.226|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.230|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.231|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.235|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.241|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.242|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.244|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.245|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.247|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.258|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.259|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.260|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.263|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.268|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.270|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.276|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.281|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.291|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.292|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.294|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.297|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.301|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.304|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.312|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.319|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.323|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.324|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.325|66|11
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.328|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.330|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.335|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.336|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.337|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.340|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.7.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.1|2|1
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.2|2|1
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.4|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.5|2|1
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.6|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.7|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.8|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.9|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.10|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.11|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.12|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.13|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.14|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.15|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.16|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.17|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.18|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.19|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.20|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.21|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.22|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.23|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.24|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.25|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.26|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.27|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.28|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.29|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.30|2|1
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.31|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.32|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.33|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.34|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.35|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.36|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.37|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.38|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.39|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.40|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.41|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.42|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.43|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.44|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.45|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.46|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.47|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.48|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.49|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.50|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.51|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.52|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.53|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.54|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.55|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.56|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.57|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.58|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.59|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.60|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.61|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.62|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.63|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.64|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.65|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.66|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.67|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.68|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.69|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.70|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.71|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.72|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.73|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.74|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.75|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.76|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.77|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.78|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.79|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.80|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.81|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.82|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.83|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.84|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.85|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.86|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.87|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.88|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.89|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.90|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.91|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.92|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.93|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.94|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.95|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.96|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.97|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.98|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.99|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.100|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.101|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.102|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.103|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.104|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.105|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.106|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.107|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.108|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.109|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.110|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.111|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.112|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.113|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.114|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.115|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.116|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.117|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.118|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.119|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.120|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.121|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.122|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.123|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.124|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.125|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.126|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.127|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.128|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.129|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.130|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.131|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.132|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.133|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.134|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.135|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.136|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.137|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.138|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.139|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.140|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.141|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.142|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.143|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.144|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.145|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.146|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.147|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.148|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.149|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.150|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.151|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.152|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.153|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.154|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.155|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.156|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.157|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.158|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.159|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.160|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.161|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.162|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.163|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.164|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.165|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.166|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.167|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.168|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.169|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.170|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.171|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.172|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.173|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.174|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.175|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.176|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.177|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.178|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.179|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.180|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.181|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.182|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.183|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.184|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.185|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.186|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.187|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.188|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.189|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.190|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.191|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.192|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.193|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.194|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.195|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.196|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.197|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.198|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.199|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.200|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.201|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.202|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.203|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.204|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.205|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.206|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.207|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.208|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.209|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.210|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.211|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.212|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.213|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.214|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.215|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.216|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.217|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.218|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.220|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.221|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.222|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.223|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.224|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.225|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.226|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.227|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.228|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.229|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.230|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.231|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.232|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.233|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.234|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.235|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.236|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.237|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.238|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.239|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.240|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.241|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.242|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.243|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.244|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.245|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.246|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.247|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.248|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.249|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.250|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.251|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.252|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.253|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.254|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.255|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.257|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.258|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.259|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.260|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.261|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.262|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.263|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.264|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.265|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.266|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.267|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.268|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.269|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.270|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.271|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.272|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.273|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.274|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.275|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.276|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.277|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.278|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.279|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.280|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.281|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.282|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.283|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.284|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.285|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.286|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.287|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.288|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.289|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.290|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.291|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.292|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.293|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.294|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.295|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.297|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.298|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.299|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.300|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.301|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.303|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.304|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.306|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.307|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.308|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.309|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.310|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.311|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.312|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.313|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.314|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.315|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.316|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.317|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.318|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.319|2|2
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.320|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.321|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.322|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.323|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.324|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.325|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.326|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.327|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.328|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.329|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.330|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.331|2|4
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.332|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.333|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.334|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.335|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.336|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.337|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.338|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.339|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.340|2|3
1.3.6.1.4.1.9.9.109.1.2.2.1.8.1.341|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.1|66|14824
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.2|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.5|66|94876
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.6|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.9|66|394480
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.12|66|204
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.14|66|109332
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.21|66|5232
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.23|66|539852
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.28|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.29|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.31|66|218363544
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.33|66|359460
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.34|66|520040
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.35|66|64742168
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.36|66|7992
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.37|66|114916
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.39|66|4140
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.41|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.46|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.53|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.59|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.62|66|32168
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.63|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.64|66|4980
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.67|66|539116
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.68|66|10176
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.69|66|4088
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.72|66|1257233100
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.74|66|732
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.75|66|68
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.76|66|176
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.79|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.82|66|1663992
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.83|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.84|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.87|66|702411820
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.90|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.91|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.92|66|49300
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.94|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.99|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.102|66|216
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.103|66|718435876
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.104|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.106|66|5224
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.107|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.114|66|8282880
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.118|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.120|66|1136
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.128|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.133|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.134|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.137|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.143|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.146|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.147|66|9160
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.157|66|3242150128
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.158|66|797216656
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.165|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.167|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.168|66|294460
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.169|66|294460
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.170|66|1117944
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.171|66|81352
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.173|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.174|66|400
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.179|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.181|66|352712
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.187|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.191|66|472
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.192|66|216
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.193|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.195|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.196|66|3196
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.197|66|5224
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.198|66|7836
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.199|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.200|66|984
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.205|66|200879832
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.206|66|359044732
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.208|66|204
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.211|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.212|66|14757864
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.214|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.216|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.217|66|532
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.218|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.220|66|3140
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.221|66|10044
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.222|66|680
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.223|66|4052
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.224|66|364
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.225|66|4832
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.226|66|136705332
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.228|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.229|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.230|66|2060
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.231|66|476
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.235|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.240|66|7488
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.241|66|4076
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.242|66|2070344
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.244|66|109300
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.245|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.247|66|34463812
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.250|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.251|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.252|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.255|66|604
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.258|66|15901852
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.259|66|1000608
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.260|66|803756
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.262|66|15092
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.263|66|15813224
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.268|66|31252
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.269|66|146372
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.270|66|1697996
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.272|66|3405361408
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.276|66|56180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.277|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.278|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.280|66|2060
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.281|66|531968
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.285|66|4832
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.286|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.287|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.290|66|68
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.291|66|811835088
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.292|66|165276
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.293|66|216
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.294|66|4832
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.297|66|24292
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.298|66|5032
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.299|66|232872
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.301|66|80518908
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.303|66|170884
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.304|66|13240
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.306|66|4980
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.307|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.308|66|7512
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.309|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.310|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.311|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.312|66|2295504
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.313|66|5056
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.314|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.315|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.316|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.317|66|5208
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.318|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.319|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.320|66|4904
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.321|66|600
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.323|66|4030466748
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.324|66|1826008972
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.325|66|2321207684
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.326|66|1056
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.328|66|643354616
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.329|66|1088
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.330|66|256388
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.331|66|216
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.332|66|160
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.333|66|4488
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.334|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.335|66|372029120
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.336|66|60512
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.337|66|890612448
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.340|66|266811920
1.3.6.1.4.1.9.9.109.1.2.3.1.1.1.341|66|8856
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.1|66|6176
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.2|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.4|66|452
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.5|66|25376212
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.6|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.9|66|11841912
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.12|66|204
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.14|66|83048
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.23|66|539276
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.28|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.29|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.33|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.34|66|5328
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.35|66|64725268
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.36|66|396
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.37|66|154072
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.39|66|4140
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.41|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.43|66|348100
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.46|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.53|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.59|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.62|66|734398872
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.67|66|10808
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.68|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.69|66|4088
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.72|66|1343285812
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.74|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.75|66|68
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.76|66|176
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.79|66|187649444
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.82|66|26512
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.83|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.84|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.87|66|698651580
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.90|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.91|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.92|66|41320
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.94|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.99|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.103|66|2759422360
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.104|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.106|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.107|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.114|66|8282880
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.118|66|5884
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.120|66|42772
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.128|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.133|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.134|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.137|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.143|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.146|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.147|66|12536
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.151|66|4652
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.157|66|2801855288
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.158|66|797216656
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.165|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.167|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.168|66|1248
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.169|66|1248
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.170|66|144748
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.173|66|4424
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.174|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.178|66|187813392
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.179|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.181|66|47852
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.187|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.191|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.193|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.195|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.196|66|7977364
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.197|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.198|66|392
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.199|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.202|66|168
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.205|66|48835084
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.206|66|621176932
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.208|66|204
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.211|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.212|66|2496720
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.214|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.216|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.217|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.218|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.223|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.225|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.226|66|1332788
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.228|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.229|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.230|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.231|66|580
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.235|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.240|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.241|66|58176
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.242|66|1361076
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.244|66|101440
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.245|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.247|66|34463048
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.250|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.251|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.252|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.254|66|372
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.258|66|149410652
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.259|66|1531824
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.260|66|269820
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.262|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.263|66|148668152
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.268|66|1844
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.270|66|152224
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.276|66|53192
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.277|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.278|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.280|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.281|66|525988
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.285|66|1992
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.286|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.287|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.290|66|284
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.291|66|2290084704
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.292|66|134972
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.294|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.297|66|141760
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.301|66|80518908
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.304|66|1668
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.312|66|1942080
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.318|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.319|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.321|66|384
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.323|66|4026162000
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.324|66|2102028744
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.325|66|2397634568
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.326|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.328|66|636644952
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.329|66|780
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.330|66|340
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.333|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.334|66|180
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.335|66|38848
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.336|66|2980
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.337|66|890960700
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.338|66|2243460
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.340|66|266783576
1.3.6.1.4.1.9.9.109.1.2.3.1.2.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.1|65|11
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.2|65|1392181
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.4|65|3048071
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.5|65|1456
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.6|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.7|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.8|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.9|65|119997814
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.10|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.11|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.12|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.13|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.14|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.15|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.16|65|116157
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.17|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.18|65|6917078
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.19|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.20|65|6917054
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.21|65|464558
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.22|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.23|65|4
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.24|65|6917084
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.25|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.26|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.27|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.28|65|6917059
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.29|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.30|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.31|65|3617580
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.32|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.33|65|716840
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.34|65|6917011
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.35|65|6917116
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.36|65|117701
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.37|65|6
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.38|65|770
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.39|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.40|65|381128
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.41|65|1392147
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.42|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.43|65|1981
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.44|65|2086642
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.45|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.46|65|137981502
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.47|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.48|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.49|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.50|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.51|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.52|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.53|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.54|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.55|65|20
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.56|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.57|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.58|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.59|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.60|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.61|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.62|65|1125490
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.63|65|83
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.64|65|119
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.65|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.66|65|7
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.67|65|6
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.68|65|363728300
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.69|65|9
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.70|65|6916982
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.71|65|1954418
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.72|65|2100901
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.73|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.74|65|11
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.75|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.76|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.77|65|1392122
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.78|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.79|65|1956318
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.80|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.81|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.82|65|204328410
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.83|65|6917003
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.84|65|204601373
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.85|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.86|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.87|65|1876385
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.88|65|696662
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.89|65|2321287
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.90|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.91|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.92|65|327
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.93|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.94|65|116156
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.95|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.96|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.97|65|38734
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.98|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.99|65|194
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.100|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.101|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.102|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.103|65|81573250
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.104|65|579787
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.105|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.106|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.107|65|6916180
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.108|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.109|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.110|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.111|65|3323
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.112|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.113|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.114|65|4875902
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.115|65|3476739
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.116|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.117|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.118|65|26
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.119|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.120|65|1653
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.121|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.122|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.123|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.124|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.125|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.126|65|20
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.127|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.128|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.129|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.130|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.131|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.132|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.133|65|34535090
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.134|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.135|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.136|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.137|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.138|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.139|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.140|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.141|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.142|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.143|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.144|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.145|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.146|65|164263590
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.147|65|5099474
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.148|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.149|65|1591943
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.150|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.151|65|1591968
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.152|65|58097
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.153|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.154|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.155|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.156|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.157|65|1392104
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.158|65|2784188
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.159|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.160|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.161|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.162|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.163|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.164|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.165|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.166|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.167|65|2321280
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.168|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.169|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.170|65|6916909
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.171|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.172|65|116155
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.173|65|978176
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.174|65|19
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.175|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.176|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.177|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.178|65|978181
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.179|65|116156
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.180|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.181|65|464532
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.182|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.183|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.184|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.185|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.186|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.187|65|271734526
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.188|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.189|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.190|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.191|65|6971979
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.192|65|232400
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.193|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.194|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.195|65|696695
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.196|65|39640
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.197|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.198|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.199|65|374
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.200|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.201|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.202|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.203|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.204|65|23240
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.205|65|1493670
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.206|65|505905
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.207|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.208|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.209|65|58100
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.210|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.211|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.212|65|215928590
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.213|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.214|65|13453537
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.215|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.216|65|69124886
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.217|65|4
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.218|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.220|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.221|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.222|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.223|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.224|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.225|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.226|65|75136707
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.227|65|116195
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.228|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.229|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.230|65|210
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.231|65|139604
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.232|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.233|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.234|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.235|65|696693
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.236|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.237|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.238|65|58097
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.239|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.240|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.241|65|20386
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.242|65|1994
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.243|65|7200702
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.244|65|23655
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.245|65|87149
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.246|65|696693
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.247|65|1000156
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.248|65|66109
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.249|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.250|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.251|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.252|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.253|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.254|65|4
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.255|65|1380419
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.257|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.258|65|23892
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.259|65|81534
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.260|65|197371
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.261|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.262|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.263|65|23886
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.264|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.265|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.266|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.267|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.268|65|12
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.269|65|116156
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.270|65|14773520
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.271|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.272|65|69353974
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.273|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.274|65|60033
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.275|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.276|65|374
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.277|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.278|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.279|65|464556
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.280|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.281|65|4
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.282|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.283|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.284|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.285|65|30
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.286|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.287|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.288|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.289|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.290|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.291|65|36743943
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.292|65|7
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.293|65|116160
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.294|65|557433
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.295|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.297|65|186
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.298|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.299|65|389460
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.300|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.301|65|385933
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.303|65|269
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.304|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.306|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.307|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.308|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.309|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.310|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.311|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.312|65|3873
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.313|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.314|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.315|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.316|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.317|65|205414
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.318|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.319|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.320|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.321|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.322|65|52
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.323|65|374661705
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.324|65|187436536
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.325|65|188326012
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.326|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.327|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.328|65|26184
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.329|65|4
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.330|65|10810698
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.331|65|3
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.332|65|414741
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.333|65|20
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.334|65|2
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.335|65|1935460
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.336|65|204331359
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.337|65|171875
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.338|65|23491
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.339|65|59
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.340|65|1187
1.3.6.1.4.1.9.9.109.1.2.3.1.3.1.341|65|1
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.1|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.2|65|2618
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.4|65|66806692
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.5|65|16
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.6|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.7|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.8|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.9|65|54082667
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.10|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.11|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.12|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.13|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.14|65|33
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.15|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.16|65|694
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.17|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.18|65|52439
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.19|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.20|65|46690
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.21|65|16210
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.22|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.23|65|117
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.24|65|71738
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.25|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.26|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.27|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.28|65|48976
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.29|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.30|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.31|65|2006957
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.32|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.33|65|29567
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.34|65|87269
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.35|65|489204
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.36|65|3166991
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.37|65|17
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.38|65|77
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.39|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.40|65|18537
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.41|65|2493746
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.42|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.43|65|52
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.44|65|188436
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.45|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.46|65|272801
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.47|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.48|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.49|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.50|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.51|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.52|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.53|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.54|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.55|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.56|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.57|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.58|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.59|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.60|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.61|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.62|65|197335
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.63|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.64|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.65|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.66|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.67|65|218
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.68|65|15532988
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.69|65|17
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.70|65|147878
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.71|65|62759
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.72|65|372178
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.73|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.74|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.75|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.76|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.77|65|49143
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.78|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.79|65|44853
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.80|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.81|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.82|65|9396991
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.83|65|280632
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.84|65|2002647
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.85|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.86|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.87|65|273700
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.88|65|1187614
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.89|65|27069
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.90|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.91|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.92|65|52
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.93|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.94|65|769
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.95|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.96|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.97|65|216
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.98|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.99|65|3032
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.100|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.101|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.102|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.103|65|29309194
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.104|65|5500
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.105|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.106|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.107|65|7633501
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.108|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.109|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.110|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.111|65|6090
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.112|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.113|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.114|65|67531
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.115|65|22316
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.116|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.117|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.118|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.119|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.120|65|1454
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.121|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.122|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.123|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.124|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.125|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.126|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.127|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.128|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.129|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.130|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.131|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.132|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.133|65|1345079
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.134|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.135|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.136|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.137|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.138|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.139|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.140|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.141|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.142|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.143|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.144|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.145|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.146|65|56027830
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.147|65|442222
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.148|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.149|65|109502
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.150|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.151|65|13444
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.152|65|1107
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.153|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.154|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.155|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.156|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.157|65|2986310
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.158|65|2770265
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.159|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.160|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.161|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.162|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.163|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.164|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.165|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.166|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.167|65|20006
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.168|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.169|65|8
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.170|65|2599994
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.171|65|9
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.172|65|452
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.173|65|28415
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.174|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.175|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.176|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.177|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.178|65|32614
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.179|65|754
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.180|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.181|65|66466
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.182|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.183|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.184|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.185|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.186|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.187|65|160116519
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.188|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.189|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.190|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.191|65|23485
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.192|65|1073
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.193|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.194|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.195|65|6579
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.196|65|5303
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.197|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.198|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.199|65|24
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.200|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.201|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.202|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.203|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.204|65|136
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.205|65|847342
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.206|65|233815
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.207|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.208|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.209|65|786
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.210|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.211|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.212|65|102438907
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.213|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.214|65|78126
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.215|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.216|65|295985
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.217|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.218|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.220|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.221|65|9
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.222|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.223|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.224|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.225|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.226|65|8819515
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.227|65|486
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.228|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.229|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.230|65|42
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.231|65|14419
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.232|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.233|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.234|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.235|65|8557
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.236|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.237|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.238|65|369
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.239|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.240|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.241|65|995
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.242|65|301
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.243|65|15054
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.244|65|244
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.245|65|531
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.246|65|10701
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.247|65|61025
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.248|65|10565
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.249|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.250|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.251|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.252|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.253|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.254|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.255|65|595141
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.257|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.258|65|7422
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.259|65|20401
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.260|65|50844
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.261|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.262|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.263|65|9348
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.264|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.265|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.266|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.267|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.268|65|16
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.269|65|14238
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.270|65|3645005
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.271|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.272|65|880960
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.273|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.274|65|746
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.275|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.276|65|83
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.277|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.278|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.279|65|11447
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.280|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.281|65|33
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.282|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.283|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.284|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.285|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.286|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.287|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.288|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.289|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.290|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.291|65|436253
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.292|65|17
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.293|65|525
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.294|65|3958
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.295|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.297|65|35
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.298|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.299|65|21613
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.300|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.301|65|25484
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.303|65|35
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.304|65|9
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.306|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.307|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.308|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.309|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.310|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.311|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.312|65|847
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.313|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.314|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.315|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.316|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.317|65|4294
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.318|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.319|65|8
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.320|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.321|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.322|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.323|65|94011077
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.324|65|55865380
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.325|65|235436012
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.326|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.327|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.328|65|1008425
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.329|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.330|65|982731
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.331|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.332|65|75425
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.333|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.334|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.335|65|447773
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.336|65|2246997
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.337|65|3042797
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.338|65|69065
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.339|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.340|65|202283
1.3.6.1.4.1.9.9.109.1.2.3.1.4.1.341|65|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.2|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.5|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.9|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.14|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.23|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.28|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.33|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.34|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.35|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.36|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.37|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.41|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.46|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.62|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.67|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.68|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.69|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.72|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.79|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.82|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.83|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.84|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.87|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.92|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.94|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.99|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.103|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.104|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.107|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.114|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.120|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.133|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.146|66|5
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.147|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.157|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.158|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.167|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.169|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.170|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.173|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.179|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.181|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.187|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.191|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.195|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.196|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.199|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.205|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.206|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.212|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.214|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.216|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.226|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.230|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.231|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.235|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.241|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.242|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.244|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.245|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.247|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.258|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.259|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.260|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.263|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.268|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.270|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.276|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.281|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.291|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.292|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.294|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.297|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.301|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.304|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.312|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.319|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.323|66|2
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.324|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.325|66|48
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.328|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.330|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.335|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.336|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.337|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.340|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.5.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.2|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.5|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.9|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.14|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.23|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.28|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.33|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.34|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.35|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.36|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.37|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.41|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.46|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.62|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.67|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.68|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.69|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.72|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.79|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.82|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.83|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.84|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.87|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.92|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.94|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.99|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.103|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.104|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.107|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.114|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.120|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.133|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.146|66|2
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.147|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.157|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.158|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.167|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.169|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.170|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.173|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.179|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.181|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.187|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.191|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.195|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.196|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.199|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.205|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.206|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.212|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.214|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.216|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.226|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.230|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.231|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.235|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.241|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.242|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.244|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.245|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.247|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.258|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.259|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.260|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.263|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.268|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.270|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.276|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.281|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.291|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.292|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.294|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.297|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.301|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.304|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.312|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.319|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.323|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.324|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.325|66|38
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.328|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.330|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.335|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.336|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.337|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.340|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.6.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.1|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.2|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.4|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.5|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.6|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.7|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.8|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.9|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.10|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.11|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.12|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.13|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.14|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.15|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.16|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.17|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.18|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.19|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.20|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.21|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.22|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.23|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.24|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.25|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.26|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.27|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.28|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.29|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.30|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.31|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.32|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.33|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.34|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.35|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.36|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.37|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.38|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.39|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.40|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.41|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.42|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.43|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.44|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.45|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.46|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.47|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.48|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.49|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.50|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.51|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.52|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.53|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.54|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.55|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.56|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.57|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.58|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.59|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.60|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.61|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.62|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.63|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.64|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.65|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.66|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.67|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.68|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.69|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.70|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.71|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.72|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.73|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.74|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.75|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.76|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.77|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.78|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.79|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.80|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.81|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.82|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.83|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.84|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.85|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.86|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.87|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.88|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.89|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.90|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.91|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.92|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.93|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.94|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.95|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.96|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.97|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.98|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.99|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.100|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.101|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.102|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.103|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.104|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.105|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.106|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.107|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.108|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.109|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.110|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.111|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.112|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.113|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.114|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.115|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.116|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.117|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.118|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.119|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.120|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.121|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.122|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.123|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.124|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.125|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.126|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.127|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.128|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.129|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.130|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.131|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.132|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.133|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.134|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.135|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.136|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.137|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.138|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.139|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.140|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.141|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.142|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.143|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.144|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.145|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.146|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.147|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.148|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.149|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.150|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.151|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.152|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.153|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.154|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.155|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.156|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.157|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.158|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.159|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.160|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.161|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.162|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.163|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.164|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.165|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.166|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.167|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.168|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.169|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.170|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.171|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.172|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.173|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.174|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.175|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.176|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.177|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.178|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.179|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.180|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.181|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.182|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.183|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.184|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.185|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.186|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.187|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.188|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.189|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.190|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.191|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.192|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.193|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.194|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.195|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.196|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.197|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.198|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.199|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.200|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.201|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.202|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.203|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.204|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.205|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.206|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.207|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.208|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.209|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.210|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.211|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.212|66|1
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.213|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.214|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.215|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.216|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.217|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.218|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.220|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.221|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.222|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.223|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.224|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.225|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.226|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.227|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.228|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.229|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.230|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.231|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.232|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.233|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.234|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.235|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.236|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.237|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.238|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.239|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.240|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.241|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.242|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.243|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.244|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.245|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.246|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.247|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.248|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.249|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.250|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.251|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.252|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.253|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.254|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.255|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.257|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.258|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.259|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.260|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.261|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.262|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.263|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.264|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.265|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.266|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.267|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.268|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.269|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.270|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.271|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.272|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.273|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.274|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.275|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.276|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.277|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.278|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.279|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.280|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.281|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.282|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.283|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.284|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.285|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.286|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.287|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.288|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.289|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.290|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.291|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.292|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.293|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.294|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.295|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.297|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.298|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.299|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.300|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.301|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.303|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.304|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.306|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.307|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.308|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.309|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.310|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.311|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.312|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.313|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.314|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.315|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.316|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.317|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.318|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.319|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.320|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.321|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.322|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.323|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.324|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.325|66|11
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.326|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.327|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.328|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.329|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.330|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.331|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.332|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.333|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.334|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.335|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.336|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.337|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.338|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.339|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.340|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.7.1.341|66|0
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.1|2|1
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.2|2|1
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.4|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.5|2|1
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.6|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.7|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.8|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.9|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.10|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.11|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.12|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.13|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.14|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.15|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.16|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.17|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.18|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.19|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.20|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.21|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.22|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.23|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.24|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.25|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.26|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.27|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.28|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.29|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.30|2|1
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.31|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.32|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.33|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.34|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.35|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.36|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.37|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.38|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.39|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.40|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.41|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.42|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.43|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.44|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.45|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.46|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.47|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.48|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.49|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.50|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.51|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.52|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.53|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.54|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.55|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.56|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.57|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.58|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.59|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.60|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.61|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.62|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.63|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.64|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.65|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.66|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.67|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.68|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.69|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.70|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.71|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.72|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.73|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.74|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.75|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.76|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.77|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.78|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.79|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.80|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.81|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.82|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.83|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.84|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.85|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.86|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.87|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.88|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.89|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.90|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.91|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.92|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.93|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.94|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.95|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.96|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.97|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.98|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.99|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.100|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.101|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.102|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.103|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.104|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.105|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.106|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.107|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.108|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.109|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.110|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.111|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.112|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.113|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.114|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.115|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.116|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.117|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.118|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.119|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.120|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.121|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.122|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.123|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.124|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.125|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.126|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.127|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.128|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.129|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.130|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.131|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.132|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.133|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.134|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.135|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.136|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.137|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.138|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.139|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.140|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.141|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.142|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.143|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.144|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.145|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.146|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.147|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.148|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.149|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.150|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.151|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.152|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.153|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.154|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.155|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.156|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.157|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.158|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.159|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.160|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.161|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.162|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.163|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.164|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.165|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.166|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.167|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.168|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.169|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.170|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.171|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.172|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.173|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.174|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.175|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.176|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.177|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.178|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.179|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.180|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.181|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.182|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.183|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.184|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.185|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.186|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.187|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.188|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.189|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.190|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.191|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.192|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.193|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.194|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.195|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.196|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.197|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.198|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.199|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.200|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.201|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.202|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.203|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.204|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.205|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.206|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.207|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.208|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.209|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.210|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.211|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.212|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.213|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.214|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.215|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.216|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.217|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.218|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.220|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.221|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.222|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.223|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.224|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.225|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.226|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.227|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.228|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.229|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.230|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.231|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.232|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.233|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.234|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.235|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.236|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.237|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.238|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.239|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.240|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.241|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.242|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.243|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.244|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.245|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.246|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.247|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.248|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.249|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.250|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.251|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.252|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.253|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.254|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.255|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.257|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.258|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.259|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.260|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.261|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.262|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.263|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.264|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.265|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.266|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.267|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.268|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.269|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.270|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.271|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.272|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.273|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.274|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.275|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.276|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.277|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.278|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.279|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.280|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.281|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.282|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.283|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.284|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.285|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.286|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.287|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.288|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.289|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.290|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.291|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.292|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.293|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.294|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.295|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.297|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.298|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.299|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.300|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.301|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.303|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.304|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.306|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.307|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.308|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.309|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.310|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.311|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.312|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.313|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.314|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.315|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.316|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.317|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.318|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.319|2|2
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.320|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.321|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.322|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.323|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.324|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.325|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.326|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.327|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.328|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.329|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.330|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.331|2|4
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.332|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.333|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.334|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.335|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.336|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.337|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.338|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.339|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.340|2|3
1.3.6.1.4.1.9.9.109.1.2.3.1.8.1.341|2|3
1.3.6.1.4.1.9.9.117.1.3.1.0|2|2
1.3.6.1.4.1.9.9.118.1.1.2.0|2|15
1.3.6.1.4.1.9.9.118.1.1.3.0|2|2
1.3.6.1.4.1.9.9.118.1.1.4.0|66|15
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11001|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11002|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11003|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11004|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11005|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11006|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11007|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11008|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11009|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11010|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11011|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11012|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11013|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11014|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11015|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11016|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11017|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11018|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11019|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11020|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11021|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11022|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11023|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11024|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11025|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11026|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11027|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11028|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11029|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11030|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11031|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11032|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11033|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11034|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11035|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11036|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11037|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11038|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11039|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11040|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11041|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11042|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11043|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11044|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11045|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11046|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11047|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11048|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11101|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11102|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11103|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.2.11104|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11001|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11002|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11003|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11004|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11005|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11006|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11007|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11008|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11009|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11010|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11011|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11012|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11013|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11014|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11015|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11016|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11017|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11018|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11019|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11020|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11021|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11022|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11023|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11024|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11025|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11026|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11027|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11028|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11029|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11030|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11031|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11032|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11033|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11034|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11035|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11036|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11037|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11038|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11039|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11040|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11041|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11042|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11043|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11044|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11045|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11046|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11047|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11048|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11101|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11102|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11103|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.4.11104|2|4
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11001|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11002|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11003|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11004|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11005|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11006|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11007|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11008|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11009|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11010|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11011|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11012|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11013|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11014|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11015|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11016|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11017|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11018|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11019|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11020|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11021|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11022|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11023|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11024|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11025|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11026|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11027|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11028|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11029|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11030|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11031|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11032|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11033|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11034|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11035|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11036|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11037|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11038|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11039|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11040|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11041|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11042|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11043|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11044|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11045|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11046|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11047|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11048|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11101|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11102|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11103|2|2
1.3.6.1.4.1.9.9.118.1.2.1.1.5.11104|2|2
1.3.6.1.4.1.9.9.128.1.1.1.1.3.1.0|2|1
1.3.6.1.4.1.9.9.128.1.1.1.1.3.60.0|2|60
1.3.6.1.4.1.9.9.128.1.1.1.1.3.70.0|2|70
1.3.6.1.4.1.9.9.134.1.1.1.0|4|
1.3.6.1.4.1.9.9.134.1.1.2.0|2|3
1.3.6.1.4.1.9.9.134.1.1.3.0|6|1.3.6.1.6.1.1
1.3.6.1.4.1.9.9.134.1.1.4.0|4|
1.3.6.1.4.1.9.9.134.1.1.5.0|4|
1.3.6.1.4.1.9.9.134.1.1.6.0|67|0
1.3.6.1.4.1.9.9.134.1.1.7.0|6|1.3.6.1.6.1.1
1.3.6.1.4.1.9.9.134.1.1.8.0|4|
1.3.6.1.4.1.9.9.134.1.1.9.0|2|1
1.3.6.1.4.1.9.9.134.1.1.10.0|66|0
1.3.6.1.4.1.9.9.134.1.1.11.0|4|
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11008|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11012|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11013|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11014|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11015|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11016|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11017|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11018|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11019|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11020|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11021|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11022|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11023|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11024|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11025|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11026|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11027|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11028|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11029|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11030|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11031|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11032|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11033|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11034|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11035|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11036|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11037|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11038|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11047|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11101|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11102|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11103|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.1.11104|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11001|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11002|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11003|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11004|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11005|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11006|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11007|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11008|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11009|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11010|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11011|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11012|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11013|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11014|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11015|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11016|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11017|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11018|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11019|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11020|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11021|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11022|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11023|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11024|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11025|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11026|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11027|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11028|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11029|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11030|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11031|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11032|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11033|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11034|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11035|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11036|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11037|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11038|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11039|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11040|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11041|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11042|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11043|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11044|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11045|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11046|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11047|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11048|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11101|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11102|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11103|2|2
1.3.6.1.4.1.9.9.151.1.1.1.1.2.11104|2|2
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.4|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.10|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.35|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.60|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.63|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.65|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.70|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.73|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.74|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.80|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.200|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.201|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.250|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.255|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.998|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1002|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1003|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1004|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1005|2|1
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.4|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.10|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.35|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.60|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.63|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.65|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.70|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.73|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.74|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.80|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.200|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.201|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.250|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.255|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.998|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1002|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1003|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1004|2|0
1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1005|2|0
1.3.6.1.4.1.9.9.184.1.1.1.0|65|0
1.3.6.1.4.1.9.9.184.1.1.2.0|65|0
1.3.6.1.4.1.9.9.184.1.1.3.0|2|1
1.3.6.1.4.1.9.9.184.1.1.4.0|2|0
1.3.6.1.4.1.9.9.184.1.1.5.0|4|
1.3.6.1.4.1.9.9.184.1.1.6.0|2|0
1.3.6.1.4.1.9.9.184.1.1.7.0|4|
1.3.6.1.4.1.9.9.184.1.1.8.0|2|0
1.3.6.1.4.1.9.9.184.1.1.9.0|4|
1.3.6.1.4.1.9.9.189.1.3.1.0|2|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11001.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11001.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11002.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11002.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11003.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11003.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11004.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11004.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11005.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11005.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11006.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11006.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11007.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11007.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11008.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11008.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11009.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11009.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11010.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11010.2.1|70|1429
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11011.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11011.2.1|70|1076
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11012.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11012.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11013.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11013.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11014.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11014.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11015.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11015.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11016.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11016.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11017.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11017.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11018.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11018.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11019.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11019.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11020.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11020.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11021.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11021.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11022.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11022.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11023.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11023.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11024.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11024.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11025.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11025.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11026.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11026.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11027.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11027.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11028.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11028.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11029.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11029.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11030.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11030.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11031.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11031.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11032.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11032.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11033.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11033.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11034.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11034.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11035.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11035.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11036.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11036.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11037.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11037.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11038.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11038.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11039.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11039.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11040.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11040.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11041.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11041.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11042.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11042.2.1|70|358
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11043.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11043.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11044.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11044.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11045.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11045.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11046.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11046.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11047.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11047.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11048.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11048.2.1|70|24692
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11101.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11101.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11102.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11102.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11103.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11103.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11104.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.2.1.7.11104.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.3.0|2|1
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11001.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11002.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.2.1|70|104729619
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.2.2|70|209359860
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.2.3|70|3217189
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11003.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11004.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11005.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.2.1|70|181260
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.2.2|70|774288
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.2.3|70|15094
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11006.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.2.1|70|98872116
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.2.2|70|304527911
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.2.3|70|4718479
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11007.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11008.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.2.1|70|95151049
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.2.2|70|304389078
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.2.3|70|4718479
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11009.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.2.1|70|57376415
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.2.2|70|108867545
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.2.3|70|1630317
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11010.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.2.1|70|75078919
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.2.2|70|197678349
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.2.3|70|3029987
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11011.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11012.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11013.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11014.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11015.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11016.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11017.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11018.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11019.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11020.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11021.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11022.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11023.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.1.1|70|26
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11024.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11025.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11026.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11027.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11028.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11029.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11030.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11031.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11032.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11033.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11034.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11035.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11036.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11037.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11038.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.2.1|70|1076
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.2.2|70|433541
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.2.3|70|8221
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11039.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.2.1|70|889696
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.2.2|70|3287575
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.2.3|70|52192
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11040.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.2.1|70|2497
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.2.2|70|78258
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.2.3|70|1566
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11041.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.2.1|70|6081319
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.2.2|70|257794736
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.2.3|70|4087199
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11042.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.2.1|70|9318619
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.2.2|70|303664142
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.2.3|70|4531546
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11043.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11044.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.2.1|70|7113
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.2.2|70|98116
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.2.3|70|2623
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11045.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11046.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.1.1|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11047.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.1.1|70|26
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.2.1|70|172792656
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.2.2|70|679846195
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.2.3|70|35809485
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11048.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11101.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11102.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11103.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.3.11104.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11001.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11002.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11003.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11004.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11005.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11006.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11007.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11008.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11009.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.2.1|70|1427
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.2.2|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11010.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.2.1|70|1076
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11011.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11012.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11013.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11014.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11015.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11016.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11017.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11018.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11019.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11020.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11021.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11022.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11023.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11024.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11025.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11026.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11027.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11028.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11029.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11030.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11031.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11032.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11033.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11034.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11035.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11036.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11037.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11038.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11039.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11040.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11041.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.2.1|70|356
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.2.2|70|2
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11042.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11043.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11044.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11045.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11046.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11047.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.2.1|70|15135
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.2.2|70|9557
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11048.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11101.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11102.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11103.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.1.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.1.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.1.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.2.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.2.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.2.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.3.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.3.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.3.3|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.4.1|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.4.2|70|0
1.3.6.1.4.1.9.9.189.1.3.5.1.4.11104.4.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11001.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11002.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.0|70|37182873
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.4|70|210432
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.40|70|6717694
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.46|70|156
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.48|70|770445
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11003.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11004.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11005.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.0|70|16388
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11006.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.0|70|3731660
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11007.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11008.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.0|70|371246
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11009.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.0|70|1077234
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11010.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.0|70|1447062
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11011.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11012.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11013.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11014.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11015.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11016.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11017.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11018.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11019.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11020.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11021.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11022.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11023.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11024.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11025.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11026.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11027.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11028.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11029.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11030.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11031.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11032.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11033.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11034.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11035.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11036.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11037.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11038.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.0|70|1299
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11039.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.0|70|203111
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.8|70|70
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.40|70|2977
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.48|70|938
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11040.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.0|70|729
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.46|70|4
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11041.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.0|70|498572
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.4|70|629
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.40|70|1741759
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.48|70|804
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11042.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.0|70|357294
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.2|70|370
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.4|70|65
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.40|70|217594
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.48|70|293
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11043.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11044.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.0|70|4094
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11045.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11046.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11047.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.0|70|321544867
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.48|70|219
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.56|70|23310
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11048.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11101.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11102.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11103.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.2.11104.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11001.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11002.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.0|70|105074026
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.48|70|14
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.56|70|7
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11003.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11004.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11005.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.0|70|179229
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11006.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.0|70|99209500
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.48|70|15
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.56|70|21
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11007.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11008.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.0|70|95745267
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.48|70|15
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.56|70|21
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11009.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.0|70|57578046
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.48|70|1
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.56|70|14
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11010.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.0|70|75321684
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.48|70|1
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.56|70|14
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11011.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11012.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11013.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11014.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11015.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11016.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11017.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11018.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11019.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11020.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11021.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11022.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11023.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11024.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11025.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11026.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11027.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11028.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11029.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11030.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11031.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11032.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11033.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11034.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11035.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11036.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11037.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11038.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.0|70|11
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11039.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.0|70|889659
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11040.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.0|70|2360
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11041.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.0|70|5996581
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.48|70|6
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11042.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.0|70|9189804
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.48|70|8
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11043.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11044.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.0|70|6785
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11045.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11046.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11047.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.0|70|421022082
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.48|70|19357
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11048.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11101.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11102.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11103.63|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.0|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.1|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.2|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.3|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.4|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.5|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.6|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.7|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.8|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.9|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.10|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.11|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.12|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.13|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.14|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.15|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.16|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.17|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.18|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.19|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.20|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.21|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.22|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.23|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.24|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.25|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.26|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.27|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.28|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.29|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.30|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.31|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.32|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.33|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.34|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.35|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.36|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.37|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.38|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.39|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.40|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.41|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.42|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.43|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.44|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.45|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.46|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.47|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.48|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.49|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.50|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.51|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.52|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.53|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.54|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.55|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.56|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.57|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.58|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.59|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.60|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.61|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.62|70|0
1.3.6.1.4.1.9.9.189.1.3.8.1.4.11104.63|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11001.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11002.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.0|70|45243467
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11003.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11004.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11005.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.0|70|17075
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11006.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.0|70|3952805
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11007.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11008.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.0|70|11731424
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11009.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.0|70|2024799
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11010.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.0|70|3837641
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11011.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11012.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11013.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11014.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11015.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11016.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11017.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11018.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11019.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11020.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11021.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11022.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11023.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.0|70|26
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11024.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11025.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11026.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11027.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11028.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11029.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11030.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11031.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11032.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11033.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11034.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11035.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11036.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11037.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11038.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.0|70|1325
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11039.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.0|70|209800
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11040.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.0|70|1028
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11041.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.0|70|2810119
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11042.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.0|70|820216
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11043.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11044.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.0|70|4167
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11045.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11046.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.0|70|2
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11047.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.0|70|655939583
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.1|70|12027
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.2|70|236678
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.3|70|11100
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.4|70|57975
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.5|70|51923
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.6|70|18085
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11048.7|70|21985099
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11101.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11102.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11103.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.2.11104.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11001.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11002.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.0|70|201039775
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.1|70|2675
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.2|70|3530
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.3|70|153
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.4|70|3133
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.5|70|69
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.6|70|246
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11003.7|70|2685
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11004.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11005.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.0|70|428117
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.1|70|79
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.2|70|98
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.4|70|80
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11006.7|70|73
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.0|70|239266678
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.1|70|5727
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.2|70|6912
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.3|70|227
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.4|70|6307
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.5|70|69
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.6|70|352
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11007.7|70|5897
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11008.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.0|70|224430191
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.1|70|5727
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.2|70|6912
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.3|70|227
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.4|70|6307
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.5|70|69
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.6|70|352
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11009.7|70|5897
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.0|70|108248800
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.1|70|4351
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.2|70|4944
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.3|70|194
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.4|70|4401
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.6|70|142
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11010.7|70|4360
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.0|70|166938941
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.1|70|4859
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.2|70|5711
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.3|70|201
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.4|70|5122
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.6|70|235
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11011.7|70|4976
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11012.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11013.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11014.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11015.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11016.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11017.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11018.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11019.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11020.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11021.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11022.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11023.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11024.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11025.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11026.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11027.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11028.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11029.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11030.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11031.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11032.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11033.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11034.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11035.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11036.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11037.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11038.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.0|70|11
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11039.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.0|70|1344784
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11040.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.0|70|4434
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11041.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.0|70|9134041
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.1|70|1
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.2|70|6
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.4|70|17
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.6|70|15
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11042.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.0|70|13294212
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.1|70|1
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.2|70|6
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.4|70|17
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.6|70|17
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11043.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11044.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.0|70|12332
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11045.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11046.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11047.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.0|70|441625061
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.6|70|19357
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11048.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11101.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11102.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11103.7|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.0|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.1|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.2|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.3|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.4|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.5|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.6|70|0
1.3.6.1.4.1.9.9.189.1.3.9.1.4.11104.7|70|0
1.3.6.1.4.1.9.9.215.1.1.1.0|2|1
1.3.6.1.4.1.9.9.215.1.1.2.0|66|0
1.3.6.1.4.1.9.9.215.1.1.3.0|65|11745
1.3.6.1.4.1.9.9.215.1.1.4.0|65|11745
1.3.6.1.4.1.9.9.215.1.1.5.0|2|1
1.3.6.1.4.1.9.9.215.1.1.6.0|65|23490
1.3.6.1.4.1.9.9.215.1.1.7.0|66|1
1.3.6.1.4.1.9.9.215.1.1.8.1.2.1|4x|01004158b633199ee0009b00
1.3.6.1.4.1.9.9.215.1.1.8.1.3.1|67|697198624
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11003|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11006|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11008|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11012|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11013|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11014|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11015|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11016|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11017|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11018|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11019|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11020|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11021|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11022|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11023|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11024|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11025|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11026|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11027|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11028|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11029|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11030|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11031|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11032|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11033|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11034|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11035|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11036|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11037|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11038|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11043|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11045|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11047|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11101|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11102|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11103|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.1.11104|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11001|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11002|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11003|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11004|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11005|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11006|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11007|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11008|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11009|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11010|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11011|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11012|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11013|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11014|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11015|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11016|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11017|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11018|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11019|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11020|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11021|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11022|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11023|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11024|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11025|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11026|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11027|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11028|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11029|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11030|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11031|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11032|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11033|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11034|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11035|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11036|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11037|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11038|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11039|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11040|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11041|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11042|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11043|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11044|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11045|2|1
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11046|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11047|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11048|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11101|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11102|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11103|2|2
1.3.6.1.4.1.9.9.215.1.2.1.1.2.11104|2|2
1.3.6.1.4.1.9.9.215.1.3.1.0|2|1
1.3.6.1.4.1.9.9.215.1.3.2.0|2|1
1.3.6.1.4.1.9.9.215.1.3.3.0|4x|005056bf4e69
1.3.6.1.4.1.9.9.215.1.3.4.0|2|60
1.3.6.1.4.1.9.9.215.1.3.5.0|2|160
1.3.6.1.4.1.9.9.215.1.3.6.0|2|119
1.3.6.1.4.1.9.9.215.1.3.7.0|67|421288545
1.3.6.1.4.1.9.9.215.1.4.1.0|2|2
1.3.6.1.4.1.9.9.215.1.4.2.0|2|50
1.3.6.1.4.1.9.9.215.1.4.3.0|66|120
1.3.6.1.4.1.9.9.215.1.4.4.0|2|1
1.3.6.1.4.1.9.9.220.1.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.220.1.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.220.1.1.1.2.11001|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11002|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11003|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11004|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11005|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11006|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11007|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11009|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11010|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11011|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11039|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11040|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11041|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11042|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11043|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11044|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11045|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11046|2|1
1.3.6.1.4.1.9.9.220.1.1.1.2.11048|2|1
1.3.6.1.4.1.9.9.220.1.1.1.3.11001|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11002|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11003|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11004|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11005|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11006|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11007|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11009|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11010|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11011|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11039|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11040|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11041|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11042|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11043|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11044|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11045|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11046|2|0
1.3.6.1.4.1.9.9.220.1.1.1.3.11048|2|0
1.3.6.1.4.1.9.9.220.1.1.1.4.11001|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11002|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11003|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11004|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11005|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11006|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11007|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11009|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11010|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11011|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11039|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11040|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11041|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11042|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11043|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11044|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11045|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11046|2|2
1.3.6.1.4.1.9.9.220.1.1.1.4.11048|2|2
1.3.6.1.4.1.9.9.220.1.1.1.6.11001|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11002|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11003|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11004|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11005|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11006|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11007|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11009|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11010|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11011|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11039|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11040|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11041|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11042|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11043|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11044|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11045|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11046|2|0
1.3.6.1.4.1.9.9.220.1.1.1.6.11048|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11001|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11002|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11003|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11004|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11005|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11006|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11007|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11009|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11010|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11011|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11039|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11040|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11041|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11042|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11043|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11044|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11045|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11046|2|0
1.3.6.1.4.1.9.9.220.1.1.1.7.11048|2|0
1.3.6.1.4.1.9.9.220.1.1.1.8.11001|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11002|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11003|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11004|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11005|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11006|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11007|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11009|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11010|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11011|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11039|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11040|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11041|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11042|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11043|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11044|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11045|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11046|2|2
1.3.6.1.4.1.9.9.220.1.1.1.8.11048|2|2
1.3.6.1.4.1.9.9.220.1.1.1.9.11001|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11002|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11003|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11004|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11005|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11006|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11007|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11009|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11010|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11011|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11039|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11040|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11041|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11042|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11043|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11044|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11045|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11046|66|3
1.3.6.1.4.1.9.9.220.1.1.1.9.11048|66|3
1.3.6.1.4.1.9.9.220.1.1.1.10.11001|4x|80
1.3.6.1.4.1.9.9.220.1.1.1.10.11002|4x|80
1.3.6.1.4.1.9.9.220.1.1.1.10.11003|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11004|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11005|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11006|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11007|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11009|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11010|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11011|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11039|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11040|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11041|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11042|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11043|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11044|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11045|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11046|4x|00
1.3.6.1.4.1.9.9.220.1.1.1.10.11048|4x|00
1.3.6.1.4.1.9.9.220.1.7.1.0|2|2
1.3.6.1.4.1.9.9.220.1.7.2.0|2|2
1.3.6.1.4.1.9.9.220.1.7.3.0|2|2
1.3.6.1.4.1.9.9.220.1.7.4.0|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11001|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11002|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11003|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11004|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11005|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11006|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11007|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11009|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11010|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11011|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11039|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11040|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11041|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11042|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11043|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11044|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11045|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11046|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.1.11048|2|2
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11001|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11002|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11003|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11004|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11005|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11006|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11007|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11009|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11010|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11011|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11039|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11040|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11041|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11042|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11043|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11044|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11045|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11046|2|1
1.3.6.1.4.1.9.9.220.1.8.6.1.8.11048|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11001|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11002|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11003|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11004|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11005|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11006|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11007|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11009|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11010|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11011|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11039|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11040|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11041|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11042|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11043|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11044|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11045|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11046|2|1
1.3.6.1.4.1.9.9.220.1.10.1.1.11048|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11001|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11002|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11003|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11004|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11005|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11006|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11007|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11009|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11010|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11011|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11039|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11040|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11041|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11042|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11043|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11044|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11045|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11046|2|1
1.3.6.1.4.1.9.9.220.1.10.1.2.11048|2|1
1.3.6.1.4.1.9.9.220.1.10.1.3.11001|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11002|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11003|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11004|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11005|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11006|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11007|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11009|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11010|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11011|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11039|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11040|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11041|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11042|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11043|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11044|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11045|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11046|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.3.11048|66|3600
1.3.6.1.4.1.9.9.220.1.10.1.4.11001|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11002|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11003|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11004|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11005|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11006|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11007|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11009|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11010|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11011|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11039|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11040|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11041|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11042|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11043|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11044|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11045|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11046|66|0
1.3.6.1.4.1.9.9.220.1.10.1.4.11048|66|0
1.3.6.1.4.1.9.9.220.1.10.1.5.11001|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11002|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11003|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11004|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11005|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11006|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11007|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11009|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11010|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11011|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11039|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11040|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11041|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11042|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11043|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11044|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11045|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11046|2|3
1.3.6.1.4.1.9.9.220.1.10.1.5.11048|2|3
1.3.6.1.4.1.9.9.220.1.10.1.6.11001|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11002|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11003|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11004|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11005|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11006|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11007|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11009|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11010|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11011|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11039|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11040|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11041|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11042|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11043|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11044|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11045|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11046|66|2
1.3.6.1.4.1.9.9.220.1.10.1.6.11048|66|2
1.3.6.1.4.1.9.9.220.1.14.1.0|2|2
1.3.6.1.4.1.9.9.220.1.18.0|2|1
1.3.6.1.4.1.9.9.225.1.1.1.0|2|2
1.3.6.1.4.1.9.9.225.1.1.2.0|2|1
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11008|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11012|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11013|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11014|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11015|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11016|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11017|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11018|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11019|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11020|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11021|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11022|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11023|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11024|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11025|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11026|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11027|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11028|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11029|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11030|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11031|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11032|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11033|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11034|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11035|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11036|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11037|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11038|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11047|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11101|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11102|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11103|2|2
1.3.6.1.4.1.9.9.225.1.2.1.1.1.11104|2|2
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11001|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11002|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11003|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11004|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11005|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11006|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11007|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11008|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11009|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11010|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11011|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11012|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11013|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11014|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11015|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11016|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11017|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11018|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11019|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11020|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11021|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11022|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11023|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11024|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11025|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11026|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11027|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11028|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11029|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11030|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11031|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11032|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11033|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11034|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11035|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11036|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11037|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11038|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11039|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11040|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11041|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11042|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11043|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11044|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11045|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11046|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11047|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11048|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11101|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11102|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11103|2|1
1.3.6.1.4.1.9.9.225.1.3.1.1.1.11104|2|1
1.3.6.1.4.1.9.9.238.1.1.1.0|2|1
1.3.6.1.4.1.9.9.238.1.1.2.0|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11001|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11002|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11003|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11004|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11005|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11006|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11007|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11008|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11009|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11010|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11011|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11012|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11013|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11014|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11015|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11016|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11017|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11018|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11019|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11020|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11021|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11022|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11023|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11024|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11025|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11026|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11027|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11028|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11029|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11030|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11031|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11032|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11033|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11034|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11035|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11036|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11037|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11038|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11039|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11040|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11041|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11042|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11043|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11044|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11045|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11046|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11047|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11048|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11101|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11102|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11103|66|0
1.3.6.1.4.1.9.9.238.1.2.2.1.1.11104|66|0
1.3.6.1.4.1.9.9.238.1.3.1.0|2|0
1.3.6.1.4.1.9.9.238.1.3.2.0|66|0
1.3.6.1.4.1.9.9.238.1.3.3.0|2|1
1.3.6.1.4.1.9.9.238.1.3.4.0|4x|00000000
1.3.6.1.4.1.9.9.238.1.3.5.0|2|1
1.3.6.1.4.1.9.9.238.1.3.6.0|4x|00000000
1.3.6.1.4.1.9.9.238.1.3.7.0|2|0
1.3.6.1.4.1.9.9.238.1.3.8.0|2|1
1.3.6.1.4.1.9.9.238.1.3.9.0|2|2
1.3.6.1.4.1.9.9.276.1.1.1.1.1.1|66|350679508
1.3.6.1.4.1.9.9.276.1.1.1.1.1.60|66|0
1.3.6.1.4.1.9.9.276.1.1.1.1.1.70|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11001|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11002|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11003|66|19680
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11004|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11005|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11006|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11007|66|2767253905
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11008|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11009|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11010|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11011|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11012|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11013|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11014|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11015|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11016|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11017|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11018|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11019|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11020|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11021|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11022|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11023|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11024|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11025|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11026|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11027|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11028|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11029|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11030|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11031|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11032|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11033|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11034|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11035|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11036|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11037|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11038|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11039|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11040|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11041|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11042|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11043|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11044|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11045|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11046|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11047|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11048|66|101
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11101|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11102|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11103|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.11104|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.1.14501|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.1|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.60|66|0
1.3.6.1.4.1.9.9.276.1.1.1.1.2.70|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11001|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11002|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11003|66|1854
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11004|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11005|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11006|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11007|66|1854
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11008|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11009|66|1854
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11010|66|1551262555
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11011|66|1854
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11012|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11013|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11014|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11015|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11016|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11017|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11018|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11019|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11020|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11021|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11022|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11023|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11024|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11025|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11026|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11027|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11028|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11029|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11030|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11031|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11032|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11033|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11034|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11035|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11036|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11037|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11038|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11039|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11040|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11041|66|2423154673
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11042|66|931
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11043|66|1988
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11044|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11045|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11046|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11047|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11048|66|730
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11101|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11102|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11103|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.11104|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.2.14501|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.1|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.60|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.70|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11001|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11002|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11003|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11004|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11005|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11006|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11007|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11008|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11009|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11010|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11011|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11012|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11013|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11014|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11015|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11016|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11017|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11018|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11019|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11020|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11021|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11022|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11023|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11024|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11025|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11026|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11027|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11028|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11029|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11030|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11031|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11032|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11033|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11034|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11035|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11036|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11037|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11038|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11039|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11040|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11041|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11042|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11043|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11044|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11045|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11046|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11047|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11048|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11101|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11102|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11103|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.11104|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.3.14501|66|4294967295
1.3.6.1.4.1.9.9.276.1.1.1.1.4.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.4.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11040|65|595
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.5.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.6.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.7.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.8.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.9.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.60|65|168915
1.3.6.1.4.1.9.9.276.1.1.1.1.10.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.10.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.1|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.60|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.70|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11010|65|1429
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11011|65|1076
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11042|65|358
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11048|65|24692
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.11.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.1.1.12.1|67|8318
1.3.6.1.4.1.9.9.276.1.1.1.1.12.60|67|9141
1.3.6.1.4.1.9.9.276.1.1.1.1.12.70|67|9153
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11001|67|8320
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11002|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11003|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11004|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11005|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11006|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11007|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11008|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11009|67|8321
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11010|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11011|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11012|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11013|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11014|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11015|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11016|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11017|67|8322
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11018|67|8323
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11019|67|8323
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11020|67|8323
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11021|67|8323
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11022|67|8323
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11023|67|8323
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11024|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11025|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11026|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11027|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11028|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11029|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11030|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11031|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11032|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11033|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11034|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11035|67|8325
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11036|67|8325
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11037|67|8325
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11038|67|8325
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11039|67|8325
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11040|67|8325
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11041|67|8326
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11042|67|8326
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11043|67|8326
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11044|67|8326
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11045|67|8326
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11046|67|8326
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11047|67|8327
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11048|67|8327
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11101|67|8320
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11102|67|8320
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11103|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.11104|67|8324
1.3.6.1.4.1.9.9.276.1.1.1.1.12.14501|67|8622
1.3.6.1.4.1.9.9.276.1.1.2.1.1.1|65|2
1.3.6.1.4.1.9.9.276.1.1.2.1.1.60|65|2
1.3.6.1.4.1.9.9.276.1.1.2.1.1.70|65|2
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11001|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11002|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11003|65|3
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11004|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11005|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11006|65|3
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11007|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11008|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11009|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11010|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11011|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11012|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11013|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11014|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11015|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11016|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11017|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11018|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11019|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11020|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11021|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11022|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11023|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11024|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11025|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11026|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11027|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11028|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11029|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11030|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11031|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11032|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11033|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11034|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11035|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11036|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11037|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11038|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11039|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11040|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11041|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11042|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11043|65|25
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11044|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11045|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11048|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11101|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11102|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11103|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.11104|65|1
1.3.6.1.4.1.9.9.276.1.1.2.1.1.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.2.1|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.60|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.70|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11001|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11002|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11003|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11004|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11005|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11006|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11007|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11008|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11009|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11010|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11011|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11012|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11013|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11014|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11015|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11016|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11017|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11018|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11019|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11020|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11021|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11022|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11023|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11024|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11025|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11026|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11027|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11028|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11029|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11030|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11031|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11032|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11033|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11034|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11035|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11036|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11037|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11038|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11039|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11040|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11041|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11042|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11043|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11044|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11045|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11046|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11047|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11048|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11101|2|2
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11102|2|2
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11103|2|2
1.3.6.1.4.1.9.9.276.1.1.2.1.2.11104|2|2
1.3.6.1.4.1.9.9.276.1.1.2.1.2.14501|2|1
1.3.6.1.4.1.9.9.276.1.1.2.1.3.1|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.60|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.70|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11001|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11002|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11003|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11004|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11005|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11006|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11007|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11008|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11009|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11010|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11011|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11012|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11013|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11014|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11015|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11016|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11017|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11018|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11019|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11020|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11021|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11022|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11023|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11024|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11025|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11026|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11027|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11028|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11029|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11030|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11031|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11032|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11033|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11034|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11035|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11036|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11037|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11038|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11039|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11040|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11041|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11042|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11043|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11044|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11045|4|down
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11046|4x|61646d696e6973747261746976656c7920646f776e
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11047|4x|61646d696e6973747261746976656c7920646f776e
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11048|4|up
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11101|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11102|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11103|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.11104|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.3.14501|4|
1.3.6.1.4.1.9.9.276.1.1.2.1.4.1|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.60|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.70|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11001|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11002|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11003|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11004|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11005|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11006|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11007|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11008|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11009|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11010|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11011|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11012|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11013|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11014|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11015|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11016|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11017|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11018|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11019|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11020|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11021|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11022|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11023|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11024|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11025|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11026|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11027|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11028|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11029|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11030|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11031|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11032|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11033|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11034|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11035|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11036|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11037|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11038|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11039|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11040|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11041|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11042|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11043|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11044|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11045|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11046|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11047|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11048|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11101|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11102|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11103|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.11104|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.4.14501|65|0
1.3.6.1.4.1.9.9.276.1.1.2.1.5.1|67|8318
1.3.6.1.4.1.9.9.276.1.1.2.1.5.60|67|9141
1.3.6.1.4.1.9.9.276.1.1.2.1.5.70|67|9153
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11001|67|8320
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11002|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11003|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11004|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11005|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11006|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11007|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11008|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11009|67|8321
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11010|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11011|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11012|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11013|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11014|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11015|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11016|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11017|67|8322
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11018|67|8323
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11019|67|8323
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11020|67|8323
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11021|67|8323
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11022|67|8323
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11023|67|8323
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11024|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11025|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11026|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11027|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11028|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11029|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11030|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11031|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11032|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11033|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11034|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11035|67|8325
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11036|67|8325
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11037|67|8325
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11038|67|8325
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11039|67|8325
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11040|67|8325
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11041|67|8326
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11042|67|8326
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11043|67|8326
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11044|67|8326
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11045|67|8326
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11046|67|8326
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11047|67|8327
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11048|67|8327
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11101|67|8320
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11102|67|8320
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11103|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.11104|67|8324
1.3.6.1.4.1.9.9.276.1.1.2.1.5.14501|67|8622
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11001|2|111
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11002|2|112
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11003|2|113
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11004|2|114
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11005|2|115
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11006|2|116
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11007|2|117
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11008|2|118
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11009|2|119
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11010|2|120
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11011|2|121
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11012|2|122
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11013|2|123
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11014|2|124
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11015|2|125
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11016|2|126
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11017|2|127
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11018|2|128
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11019|2|129
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11020|2|130
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11021|2|131
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11022|2|132
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11023|2|133
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11024|2|134
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11025|2|137
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11026|2|138
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11027|2|139
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11028|2|140
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11029|2|141
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11030|2|142
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11031|2|143
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11032|2|144
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11033|2|145
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11034|2|146
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11035|2|147
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11036|2|148
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11037|2|149
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11038|2|150
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11039|2|151
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11040|2|152
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11041|2|153
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11042|2|154
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11043|2|155
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11044|2|156
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11045|2|157
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11046|2|158
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11047|2|159
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11048|2|160
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11101|2|109
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11102|2|110
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11103|2|135
1.3.6.1.4.1.9.9.276.1.5.1.1.1.11104|2|136
1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.78.117.48|2|14501
1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.86.108.49|2|1
1.3.6.1.4.1.9.9.276.1.6.1.1.2.4.86.108.54.48|2|60
1.3.6.1.4.1.9.9.276.1.6.1.1.2.4.86.108.55.48|2|70
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.49|2|11001
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.50|2|11002
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.51|2|11003
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.52|2|11004
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.53|2|11005
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.54|2|11006
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.55|2|11007
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.56|2|11008
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.70.97.51.47.48.47.57|2|11009
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.71.105.51.47.48.47.49|2|11101
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.71.105.51.47.48.47.50|2|11102
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.71.105.51.47.48.47.51|2|11103
1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.71.105.51.47.48.47.52|2|11104
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.48|2|11010
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.49|2|11011
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.50|2|11012
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.51|2|11013
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.52|2|11014
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.53|2|11015
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.54|2|11016
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.55|2|11017
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.56|2|11018
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.49.57|2|11019
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.48|2|11020
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.49|2|11021
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.50|2|11022
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.51|2|11023
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.52|2|11024
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.53|2|11025
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.54|2|11026
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.55|2|11027
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.56|2|11028
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.50.57|2|11029
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.48|2|11030
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.49|2|11031
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.50|2|11032
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.51|2|11033
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.52|2|11034
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.53|2|11035
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.54|2|11036
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.55|2|11037
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.56|2|11038
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.51.57|2|11039
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.48|2|11040
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.49|2|11041
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.50|2|11042
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.51|2|11043
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.52|2|11044
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.53|2|11045
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.54|2|11046
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.55|2|11047
1.3.6.1.4.1.9.9.276.1.6.1.1.2.8.70.97.51.47.48.47.52.56|2|11048
1.3.6.1.4.1.9.9.276.1.6.1.1.2.10.83.116.97.99.107.80.111.114.116.51|2|5185
1.3.6.1.4.1.9.9.276.1.6.1.1.2.14.83.116.97.99.107.83.117.98.45.83.116.51.45.49|2|5186
1.3.6.1.4.1.9.9.276.1.6.1.1.2.14.83.116.97.99.107.83.117.98.45.83.116.51.45.50|2|5187
1.3.6.1.4.1.9.9.315.1.1.1.0|2|2048
1.3.6.1.4.1.9.9.315.1.1.2.0|2|0
1.3.6.1.4.1.9.9.315.1.1.3.0|2|1
1.3.6.1.4.1.9.9.315.1.1.4.0|2|0
1.3.6.1.4.1.9.9.315.1.1.5.0|2|2
1.3.6.1.4.1.9.9.315.1.1.6.0|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11008|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11012|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11013|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11014|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11015|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11016|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11017|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11018|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11019|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11020|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11021|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11022|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11023|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11024|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11025|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11026|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11027|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11028|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11029|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11030|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11031|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11032|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11033|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11034|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11035|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11036|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11037|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11038|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11047|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11101|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11102|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11103|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.1.11104|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11001|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11002|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11003|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11004|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11005|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11006|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11007|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11008|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11009|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11010|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11011|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11012|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11013|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11014|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11015|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11016|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11017|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11018|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11019|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11020|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11021|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11022|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11023|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11024|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11025|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11026|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11027|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11028|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11029|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11030|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11031|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11032|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11033|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11034|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11035|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11036|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11037|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11038|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11039|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11040|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11041|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11042|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11043|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11044|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11045|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11046|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11047|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11048|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11101|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11102|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11103|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.2.11104|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11001|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11002|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11003|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11004|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11005|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11006|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11007|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11008|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11009|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11010|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11011|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11012|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11013|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11014|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11015|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11016|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11017|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11018|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11019|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11020|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11021|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11022|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11023|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11024|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11025|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11026|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11027|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11028|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11029|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11030|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11031|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11032|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11033|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11034|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11035|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11036|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11037|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11038|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11039|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11040|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11041|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11042|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11043|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11044|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11045|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11046|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11047|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11048|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11101|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11102|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11103|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.3.11104|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11001|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11002|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11003|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11004|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11005|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11006|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11007|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11008|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11009|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11010|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11011|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11012|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11013|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11014|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11015|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11016|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11017|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11018|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11019|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11020|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11021|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11022|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11023|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11024|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11025|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11026|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11027|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11028|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11029|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11030|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11031|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11032|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11033|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11034|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11035|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11036|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11037|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11038|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11039|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11040|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11041|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11042|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11043|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11044|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11045|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11046|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11047|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11048|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11101|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11102|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11103|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.4.11104|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11001|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11002|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11003|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11004|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11005|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11006|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11007|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11008|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11009|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11010|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11011|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11012|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11013|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11014|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11015|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11016|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11017|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11018|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11019|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11020|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11021|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11022|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11023|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11024|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11025|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11026|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11027|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11028|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11029|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11030|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11031|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11032|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11033|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11034|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11035|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11036|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11037|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11038|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11039|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11040|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11041|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11042|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11043|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11044|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11045|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11046|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11047|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11048|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11101|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11102|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11103|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.5.11104|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11001|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11002|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11003|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11004|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11005|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11006|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11007|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11008|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11009|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11010|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11011|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11012|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11013|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11014|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11015|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11016|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11017|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11018|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11019|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11020|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11021|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11022|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11023|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11024|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11025|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11026|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11027|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11028|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11029|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11030|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11031|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11032|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11033|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11034|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11035|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11036|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11037|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11038|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11039|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11040|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11041|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11042|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11043|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11044|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11045|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11046|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11047|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11048|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11101|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11102|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11103|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.6.11104|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11001|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11002|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11003|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11004|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11005|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11006|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11007|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11008|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11009|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11010|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11011|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11012|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11013|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11014|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11015|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11016|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11017|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11018|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11019|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11020|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11021|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11022|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11023|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11024|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11025|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11026|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11027|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11028|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11029|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11030|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11031|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11032|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11033|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11034|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11035|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11036|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11037|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11038|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11039|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11040|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11041|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11042|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11043|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11044|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11045|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11046|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11047|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11048|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11101|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11102|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11103|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.7.11104|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11001|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11002|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11003|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11004|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11005|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11006|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11007|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11008|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11009|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11010|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11011|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11012|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11013|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11014|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11015|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11016|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11017|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11018|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11019|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11020|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11021|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11022|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11023|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11024|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11025|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11026|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11027|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11028|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11029|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11030|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11031|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11032|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11033|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11034|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11035|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11036|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11037|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11038|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11039|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11040|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11041|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11042|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11043|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11044|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11045|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11046|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11047|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11048|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11101|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11102|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11103|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.8.11104|2|1
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11001|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11002|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11003|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11004|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11005|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11006|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11007|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11008|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11009|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11010|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11011|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11012|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11013|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11014|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11015|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11016|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11017|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11018|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11019|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11020|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11021|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11022|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11023|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11024|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11025|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11026|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11027|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11028|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11029|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11030|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11031|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11032|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11033|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11034|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11035|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11036|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11037|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11038|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11039|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11040|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11041|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11042|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11043|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11044|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11045|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11046|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11047|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11048|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11101|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11102|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11103|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.9.11104|65|0
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11001|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11002|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11003|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11004|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11005|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11006|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11007|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11008|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11009|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11010|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11011|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11012|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11013|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11014|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11015|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11016|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11017|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11018|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11019|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11020|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11021|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11022|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11023|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11024|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11025|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11026|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11027|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11028|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11029|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11030|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11031|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11032|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11033|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11034|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11035|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11036|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11037|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11038|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11039|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11040|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11041|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11042|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11043|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11044|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11045|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11046|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11047|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11048|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11101|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11102|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11103|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.10.11104|4x|000000000000
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11001|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11002|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11003|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11004|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11005|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11006|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11007|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11008|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11009|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11010|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11011|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11012|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11013|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11014|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11015|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11016|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11017|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11018|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11019|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11020|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11021|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11022|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11023|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11024|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11025|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11026|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11027|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11028|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11029|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11030|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11031|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11032|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11033|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11034|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11035|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11036|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11037|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11038|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11039|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11040|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11041|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11042|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11043|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11044|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11045|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11046|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11047|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11048|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11101|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11102|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11103|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.11.11104|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11001|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11002|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11003|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11004|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11005|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11006|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11007|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11008|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11009|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11010|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11011|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11012|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11013|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11014|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11015|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11016|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11017|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11018|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11019|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11020|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11021|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11022|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11023|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11024|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11025|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11026|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11027|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11028|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11029|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11030|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11031|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11032|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11033|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11034|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11035|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11036|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11037|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11038|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11039|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11040|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11041|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11042|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11043|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11044|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11045|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11046|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11047|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11048|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11101|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11102|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11103|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.14.11104|2|0
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11001|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11002|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11003|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11004|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11005|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11006|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11007|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11008|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11009|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11010|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11011|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11012|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11013|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11014|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11015|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11016|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11017|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11018|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11019|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11020|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11021|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11022|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11023|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11024|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11025|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11026|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11027|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11028|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11029|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11030|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11031|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11032|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11033|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11034|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11035|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11036|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11037|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11038|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11039|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11040|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11041|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11042|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11043|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11044|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11045|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11046|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11047|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11048|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11101|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11102|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11103|2|2
1.3.6.1.4.1.9.9.315.1.2.1.1.15.11104|2|2
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11001.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11001.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11001.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11002.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11002.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11002.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11003.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11003.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11003.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11004.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11004.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11004.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11005.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11005.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11005.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11006.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11006.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11006.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11007.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11007.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11007.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11008.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11008.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11008.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11009.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11009.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11009.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11010.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11010.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11010.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11011.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11011.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11011.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11012.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11012.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11012.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11013.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11013.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11013.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11014.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11014.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11014.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11015.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11015.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11015.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11016.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11016.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11016.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11017.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11017.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11017.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11018.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11018.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11018.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11019.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11019.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11019.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11020.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11020.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11020.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11021.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11021.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11021.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11022.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11022.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11022.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11023.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11023.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11023.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11024.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11024.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11024.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11025.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11025.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11025.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11026.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11026.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11026.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11027.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11027.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11027.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11028.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11028.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11028.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11029.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11029.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11029.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11030.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11030.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11030.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11031.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11031.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11031.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11032.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11032.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11032.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11033.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11033.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11033.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11034.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11034.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11034.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11035.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11035.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11035.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11036.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11036.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11036.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11037.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11037.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11037.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11038.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11038.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11038.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11039.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11039.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11039.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11040.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11040.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11040.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11041.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11041.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11041.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11042.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11042.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11042.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11043.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11043.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11043.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11044.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11044.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11044.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11045.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11045.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11045.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11046.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11046.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11046.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11047.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11047.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11047.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11048.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11048.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11048.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11101.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11101.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11101.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11102.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11102.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11102.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11103.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11103.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11103.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11104.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11104.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.2.11104.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11001.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11001.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11001.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11002.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11002.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11002.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11003.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11003.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11003.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11004.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11004.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11004.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11005.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11005.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11005.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11006.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11006.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11006.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11007.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11007.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11007.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11008.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11008.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11008.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11009.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11009.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11009.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11010.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11010.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11010.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11011.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11011.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11011.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11012.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11012.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11012.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11013.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11013.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11013.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11014.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11014.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11014.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11015.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11015.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11015.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11016.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11016.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11016.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11017.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11017.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11017.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11018.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11018.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11018.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11019.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11019.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11019.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11020.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11020.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11020.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11021.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11021.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11021.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11022.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11022.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11022.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11023.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11023.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11023.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11024.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11024.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11024.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11025.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11025.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11025.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11026.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11026.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11026.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11027.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11027.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11027.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11028.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11028.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11028.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11029.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11029.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11029.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11030.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11030.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11030.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11031.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11031.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11031.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11032.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11032.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11032.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11033.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11033.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11033.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11034.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11034.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11034.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11035.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11035.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11035.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11036.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11036.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11036.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11037.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11037.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11037.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11038.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11038.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11038.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11039.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11039.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11039.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11040.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11040.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11040.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11041.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11041.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11041.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11042.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11042.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11042.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11043.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11043.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11043.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11044.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11044.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11044.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11045.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11045.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11045.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11046.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11046.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11046.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11047.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11047.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11047.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11048.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11048.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11048.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11101.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11101.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11101.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11102.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11102.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11102.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11103.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11103.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11103.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11104.1|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11104.2|2|10000
1.3.6.1.4.1.9.9.362.1.1.1.1.3.11104.3|2|10000
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11001|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11002|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11003|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11004|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11005|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11006|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11007|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11008|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11009|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11010|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11011|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11012|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11013|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11014|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11015|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11016|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11017|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11018|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11019|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11020|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11021|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11022|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11023|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11024|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11025|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11026|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11027|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11028|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11029|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11030|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11031|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11032|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11033|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11034|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11035|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11036|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11037|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11038|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11039|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11040|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11041|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11042|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11043|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11044|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11045|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11046|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11047|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11048|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11101|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11102|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11103|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.1.11104|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11001|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11002|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11003|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11004|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11005|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11006|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11007|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11008|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11009|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11010|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11011|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11012|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11013|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11014|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11015|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11016|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11017|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11018|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11019|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11020|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11021|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11022|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11023|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11024|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11025|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11026|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11027|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11028|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11029|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11030|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11031|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11032|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11033|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11034|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11035|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11036|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11037|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11038|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11039|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11040|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11041|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11042|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11043|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11044|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11045|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11046|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11047|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11048|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11101|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11102|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11103|2|1
1.3.6.1.4.1.9.9.362.1.1.2.1.2.11104|2|1
1.3.6.1.4.1.9.9.362.1.1.3.0|2|0
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11001.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11001.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11001.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11002.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11002.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11002.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11003.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11003.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11003.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11004.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11004.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11004.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11005.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11005.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11005.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11006.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11006.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11006.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11007.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11007.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11007.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11008.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11008.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11008.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11009.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11009.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11009.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11010.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11010.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11010.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11011.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11011.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11011.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11012.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11012.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11012.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11013.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11013.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11013.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11014.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11014.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11014.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11015.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11015.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11015.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11016.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11016.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11016.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11017.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11017.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11017.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11018.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11018.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11018.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11019.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11019.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11019.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11020.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11020.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11020.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11021.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11021.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11021.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11022.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11022.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11022.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11023.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11023.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11023.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11024.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11024.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11024.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11025.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11025.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11025.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11026.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11026.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11026.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11027.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11027.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11027.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11028.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11028.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11028.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11029.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11029.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11029.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11030.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11030.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11030.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11031.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11031.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11031.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11032.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11032.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11032.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11033.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11033.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11033.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11034.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11034.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11034.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11035.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11035.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11035.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11036.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11036.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11036.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11037.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11037.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11037.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11038.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11038.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11038.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11039.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11039.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11039.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11040.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11040.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11040.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11041.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11041.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11041.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11042.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11042.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11042.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11043.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11043.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11043.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11044.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11044.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11044.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11045.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11045.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11045.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11046.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11046.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11046.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11047.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11047.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11047.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11048.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11048.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11048.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11101.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11101.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11101.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11102.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11102.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11102.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11103.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11103.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11103.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11104.1|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11104.2|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.1.11104.3|2|1
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11001.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11001.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11001.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11002.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11002.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11002.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11003.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11003.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11003.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11004.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11004.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11004.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11005.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11005.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11005.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11006.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11006.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11006.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11007.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11007.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11007.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11008.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11008.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11008.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11009.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11009.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11009.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11010.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11010.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11010.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11011.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11011.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11011.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11012.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11012.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11012.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11013.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11013.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11013.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11014.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11014.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11014.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11015.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11015.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11015.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11016.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11016.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11016.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11017.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11017.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11017.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11018.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11018.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11018.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11019.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11019.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11019.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11020.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11020.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11020.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11021.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11021.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11021.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11022.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11022.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11022.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11023.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11023.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11023.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11024.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11024.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11024.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11025.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11025.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11025.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11026.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11026.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11026.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11027.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11027.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11027.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11028.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11028.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11028.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11029.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11029.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11029.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11030.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11030.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11030.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11031.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11031.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11031.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11032.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11032.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11032.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11033.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11033.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11033.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11034.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11034.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11034.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11035.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11035.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11035.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11036.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11036.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11036.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11037.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11037.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11037.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11038.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11038.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11038.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11039.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11039.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11039.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11040.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11040.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11040.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11041.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11041.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11041.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11042.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11042.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11042.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11043.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11043.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11043.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11044.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11044.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11044.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11045.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11045.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11045.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11046.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11046.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11046.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11047.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11047.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11047.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11048.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11048.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11048.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11101.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11101.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11101.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11102.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11102.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11102.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11103.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11103.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11103.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11104.1|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11104.2|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.2.11104.3|2|10000
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11001.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11001.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11001.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11002.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11002.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11002.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11003.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11003.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11003.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11004.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11004.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11004.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11005.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11005.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11005.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11006.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11006.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11006.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11007.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11007.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11007.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11008.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11008.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11008.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11009.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11009.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11009.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11010.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11010.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11010.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11011.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11011.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11011.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11012.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11012.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11012.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11013.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11013.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11013.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11014.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11014.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11014.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11015.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11015.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11015.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11016.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11016.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11016.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11017.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11017.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11017.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11018.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11018.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11018.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11019.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11019.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11019.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11020.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11020.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11020.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11021.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11021.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11021.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11022.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11022.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11022.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11023.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11023.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11023.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11024.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11024.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11024.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11025.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11025.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11025.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11026.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11026.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11026.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11027.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11027.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11027.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11028.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11028.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11028.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11029.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11029.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11029.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11030.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11030.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11030.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11031.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11031.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11031.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11032.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11032.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11032.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11033.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11033.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11033.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11034.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11034.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11034.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11035.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11035.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11035.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11036.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11036.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11036.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11037.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11037.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11037.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11038.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11038.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11038.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11039.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11039.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11039.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11040.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11040.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11040.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11041.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11041.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11041.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11042.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11042.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11042.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11043.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11043.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11043.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11044.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11044.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11044.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11045.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11045.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11045.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11046.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11046.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11046.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11047.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11047.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11047.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11048.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11048.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11048.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11101.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11101.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11101.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11102.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11102.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11102.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11103.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11103.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11103.3|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11104.1|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11104.2|70|0
1.3.6.1.4.1.9.9.362.1.2.1.1.3.11104.3|70|0
1.3.6.1.4.1.9.9.380.1.1.1.0|2|2
1.3.6.1.4.1.9.9.380.1.1.4.0|2|1
1.3.6.1.4.1.9.9.380.1.1.6.0|2|1
1.3.6.1.4.1.9.9.380.1.1.8.0|4x|0016c7026e80
1.3.6.1.4.1.9.9.380.1.2.1.1.2.1|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.4|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.10|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.35|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.60|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.63|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.65|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.70|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.73|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.74|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.80|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.200|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.201|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.250|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.255|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.998|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.1002|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.1003|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.1004|2|2
1.3.6.1.4.1.9.9.380.1.2.1.1.2.1005|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11008|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11012|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11013|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11014|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11015|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11016|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11017|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11018|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11019|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11020|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11021|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11022|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11023|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11024|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11025|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11026|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11027|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11028|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11029|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11030|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11031|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11032|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11033|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11034|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11035|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11036|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11037|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11038|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11047|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11101|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11102|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11103|2|2
1.3.6.1.4.1.9.9.380.1.3.1.1.1.11104|2|2
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11001|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11002|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11003|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11004|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11005|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11006|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11007|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11008|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11009|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11010|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11011|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11012|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11013|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11014|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11015|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11016|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11017|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11018|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11019|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11020|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11021|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11022|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11023|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11024|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11025|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11026|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11027|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11028|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11029|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11030|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11031|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11032|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11033|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11034|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11035|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11036|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11037|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11038|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11039|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11040|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11041|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11042|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11043|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11044|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11045|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11046|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11047|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11048|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11101|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11102|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11103|66|0
1.3.6.1.4.1.9.9.380.1.3.2.1.1.11104|66|0
1.3.6.1.4.1.9.9.390.1.2.1.1.1.11101|2|4
1.3.6.1.4.1.9.9.390.1.2.1.1.1.11102|2|4
1.3.6.1.4.1.9.9.390.1.2.1.1.1.11103|2|4
1.3.6.1.4.1.9.9.390.1.2.1.1.1.11104|2|4
1.3.6.1.4.1.9.9.390.1.2.1.1.2.11101|2|1
1.3.6.1.4.1.9.9.390.1.2.1.1.2.11102|2|1
1.3.6.1.4.1.9.9.390.1.2.1.1.2.11103|2|1
1.3.6.1.4.1.9.9.390.1.2.1.1.2.11104|2|1
1.3.6.1.4.1.9.9.390.1.2.1.1.3.11101|67|0
1.3.6.1.4.1.9.9.390.1.2.1.1.3.11102|67|0
1.3.6.1.4.1.9.9.390.1.2.1.1.3.11103|67|0
1.3.6.1.4.1.9.9.390.1.2.1.1.3.11104|67|0
1.3.6.1.4.1.9.9.390.1.2.1.1.4.11101|2|2
1.3.6.1.4.1.9.9.390.1.2.1.1.4.11102|2|2
1.3.6.1.4.1.9.9.390.1.2.1.1.4.11103|2|2
1.3.6.1.4.1.9.9.390.1.2.1.1.4.11104|2|2
1.3.6.1.4.1.9.9.401.1.1.1.0|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.1|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.4|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.10|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.35|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.60|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.63|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.65|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.70|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.73|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.74|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.80|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.200|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.201|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.250|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.255|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.998|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.1002|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.1003|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.1004|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.2.1005|66|3600
1.3.6.1.4.1.9.9.401.1.1.2.1.3.1|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.4|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.10|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.35|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.60|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.63|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.65|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.70|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.73|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.74|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.80|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.200|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.201|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.250|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.255|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.998|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.1002|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.1003|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.1004|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.3.1005|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.1|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.4|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.10|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.35|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.60|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.63|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.65|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.70|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.73|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.74|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.80|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.200|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.201|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.250|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.255|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.998|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.1002|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.1003|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.1004|2|1
1.3.6.1.4.1.9.9.401.1.1.2.1.4.1005|2|1
1.3.6.1.4.1.9.9.402.1.1.0|66|0
1.3.6.1.4.1.9.9.402.1.2.1.1.3.3|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.4|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.5|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.6|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.7|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.8|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.9|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.10|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.11|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.12|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.13|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.14|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.15|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.16|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.17|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.18|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.19|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.20|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.21|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.22|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.23|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.24|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.25|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.26|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.29|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.30|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.31|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.32|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.33|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.34|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.35|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.36|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.37|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.38|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.39|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.40|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.41|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.42|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.43|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.44|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.45|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.46|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.47|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.48|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.49|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.50|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.51|2|1
1.3.6.1.4.1.9.9.402.1.2.1.1.3.52|2|1
1.3.6.1.4.1.9.9.402.1.2.1.2.3.3|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.4|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.5|2|3
1.3.6.1.4.1.9.9.402.1.2.1.2.3.6|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.7|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.8|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.9|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.10|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.11|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.12|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.13|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.14|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.15|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.16|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.17|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.18|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.19|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.20|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.21|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.22|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.23|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.24|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.25|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.26|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.29|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.30|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.31|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.32|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.33|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.34|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.35|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.36|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.37|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.38|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.39|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.40|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.41|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.42|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.43|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.44|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.45|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.46|2|3
1.3.6.1.4.1.9.9.402.1.2.1.2.3.47|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.48|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.49|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.50|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.51|2|2
1.3.6.1.4.1.9.9.402.1.2.1.2.3.52|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.3|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.4|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.5|2|1
1.3.6.1.4.1.9.9.402.1.2.1.3.3.6|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.7|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.8|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.9|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.10|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.11|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.12|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.13|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.14|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.15|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.16|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.17|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.18|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.19|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.20|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.21|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.22|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.23|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.24|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.25|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.26|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.29|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.30|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.31|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.32|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.33|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.34|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.35|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.36|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.37|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.38|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.39|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.40|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.41|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.42|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.43|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.44|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.45|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.46|2|1
1.3.6.1.4.1.9.9.402.1.2.1.3.3.47|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.48|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.49|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.50|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.51|2|2
1.3.6.1.4.1.9.9.402.1.2.1.3.3.52|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.3|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.4|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.5|2|1
1.3.6.1.4.1.9.9.402.1.2.1.4.3.6|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.7|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.8|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.9|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.10|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.11|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.12|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.13|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.14|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.15|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.16|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.17|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.18|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.19|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.20|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.21|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.22|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.23|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.24|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.25|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.26|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.29|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.30|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.31|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.32|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.33|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.34|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.35|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.36|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.37|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.38|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.39|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.40|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.41|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.42|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.43|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.44|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.45|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.46|2|1
1.3.6.1.4.1.9.9.402.1.2.1.4.3.47|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.48|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.49|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.50|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.51|2|2
1.3.6.1.4.1.9.9.402.1.2.1.4.3.52|2|2
1.3.6.1.4.1.9.9.402.1.2.1.5.3.3|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.4|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.5|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.6|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.7|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.8|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.9|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.10|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.11|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.12|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.13|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.14|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.15|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.16|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.17|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.18|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.19|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.20|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.21|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.22|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.23|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.24|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.25|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.26|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.29|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.30|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.31|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.32|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.33|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.34|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.35|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.36|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.37|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.38|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.39|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.40|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.41|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.42|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.43|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.44|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.45|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.46|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.47|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.48|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.49|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.50|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.51|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.5.3.52|4x|00
1.3.6.1.4.1.9.9.402.1.2.1.6.3.3|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.4|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.5|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.6|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.7|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.8|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.9|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.10|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.11|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.12|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.13|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.14|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.15|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.16|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.17|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.18|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.19|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.20|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.21|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.22|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.23|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.24|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.25|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.26|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.29|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.30|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.31|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.32|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.33|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.34|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.35|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.36|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.37|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.38|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.39|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.40|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.41|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.42|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.43|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.44|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.45|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.46|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.47|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.48|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.49|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.50|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.51|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.6.3.52|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.7.3.3|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.4|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.5|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.7.3.6|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.7|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.8|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.9|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.10|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.11|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.12|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.13|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.14|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.15|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.16|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.17|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.18|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.19|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.20|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.21|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.22|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.23|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.24|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.25|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.26|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.29|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.30|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.31|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.32|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.33|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.34|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.35|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.36|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.37|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.38|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.39|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.40|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.41|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.42|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.43|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.44|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.45|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.46|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.7.3.47|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.48|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.49|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.50|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.51|66|0
1.3.6.1.4.1.9.9.402.1.2.1.7.3.52|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.3|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.4|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.5|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.8.3.6|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.7|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.8|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.9|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.10|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.11|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.12|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.13|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.14|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.15|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.16|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.17|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.18|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.19|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.20|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.21|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.22|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.23|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.24|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.25|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.26|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.29|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.30|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.31|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.32|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.33|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.34|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.35|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.36|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.37|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.38|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.39|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.40|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.41|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.42|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.43|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.44|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.45|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.46|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.8.3.47|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.48|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.49|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.50|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.51|66|0
1.3.6.1.4.1.9.9.402.1.2.1.8.3.52|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.3|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.4|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.5|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.9.3.6|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.7|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.8|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.9|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.10|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.11|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.12|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.13|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.14|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.15|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.16|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.17|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.18|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.19|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.20|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.21|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.22|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.23|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.24|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.25|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.26|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.29|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.30|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.31|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.32|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.33|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.34|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.35|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.36|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.37|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.38|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.39|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.40|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.41|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.42|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.43|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.44|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.45|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.46|66|15400
1.3.6.1.4.1.9.9.402.1.2.1.9.3.47|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.48|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.49|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.50|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.51|66|0
1.3.6.1.4.1.9.9.402.1.2.1.9.3.52|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.3|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.4|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.5|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.6|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.7|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.8|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.9|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.10|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.11|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.12|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.13|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.14|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.15|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.16|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.17|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.18|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.19|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.20|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.21|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.22|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.23|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.24|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.25|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.26|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.29|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.30|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.31|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.32|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.33|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.34|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.35|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.36|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.37|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.38|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.39|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.40|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.41|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.42|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.43|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.44|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.45|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.46|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.47|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.48|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.49|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.50|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.51|66|0
1.3.6.1.4.1.9.9.402.1.2.1.10.3.52|66|0
1.3.6.1.4.1.9.9.402.1.2.1.11.3.3|2|3008
1.3.6.1.4.1.9.9.402.1.2.1.11.3.4|2|3009
1.3.6.1.4.1.9.9.402.1.2.1.11.3.5|2|3010
1.3.6.1.4.1.9.9.402.1.2.1.11.3.6|2|3011
1.3.6.1.4.1.9.9.402.1.2.1.11.3.7|2|3012
1.3.6.1.4.1.9.9.402.1.2.1.11.3.8|2|3013
1.3.6.1.4.1.9.9.402.1.2.1.11.3.9|2|3014
1.3.6.1.4.1.9.9.402.1.2.1.11.3.10|2|3015
1.3.6.1.4.1.9.9.402.1.2.1.11.3.11|2|3016
1.3.6.1.4.1.9.9.402.1.2.1.11.3.12|2|3017
1.3.6.1.4.1.9.9.402.1.2.1.11.3.13|2|3018
1.3.6.1.4.1.9.9.402.1.2.1.11.3.14|2|3019
1.3.6.1.4.1.9.9.402.1.2.1.11.3.15|2|3020
1.3.6.1.4.1.9.9.402.1.2.1.11.3.16|2|3021
1.3.6.1.4.1.9.9.402.1.2.1.11.3.17|2|3022
1.3.6.1.4.1.9.9.402.1.2.1.11.3.18|2|3023
1.3.6.1.4.1.9.9.402.1.2.1.11.3.19|2|3024
1.3.6.1.4.1.9.9.402.1.2.1.11.3.20|2|3025
1.3.6.1.4.1.9.9.402.1.2.1.11.3.21|2|3026
1.3.6.1.4.1.9.9.402.1.2.1.11.3.22|2|3027
1.3.6.1.4.1.9.9.402.1.2.1.11.3.23|2|3028
1.3.6.1.4.1.9.9.402.1.2.1.11.3.24|2|3029
1.3.6.1.4.1.9.9.402.1.2.1.11.3.25|2|3030
1.3.6.1.4.1.9.9.402.1.2.1.11.3.26|2|3031
1.3.6.1.4.1.9.9.402.1.2.1.11.3.29|2|3034
1.3.6.1.4.1.9.9.402.1.2.1.11.3.30|2|3035
1.3.6.1.4.1.9.9.402.1.2.1.11.3.31|2|3036
1.3.6.1.4.1.9.9.402.1.2.1.11.3.32|2|3037
1.3.6.1.4.1.9.9.402.1.2.1.11.3.33|2|3038
1.3.6.1.4.1.9.9.402.1.2.1.11.3.34|2|3039
1.3.6.1.4.1.9.9.402.1.2.1.11.3.35|2|3040
1.3.6.1.4.1.9.9.402.1.2.1.11.3.36|2|3041
1.3.6.1.4.1.9.9.402.1.2.1.11.3.37|2|3042
1.3.6.1.4.1.9.9.402.1.2.1.11.3.38|2|3043
1.3.6.1.4.1.9.9.402.1.2.1.11.3.39|2|3044
1.3.6.1.4.1.9.9.402.1.2.1.11.3.40|2|3045
1.3.6.1.4.1.9.9.402.1.2.1.11.3.41|2|3046
1.3.6.1.4.1.9.9.402.1.2.1.11.3.42|2|3047
1.3.6.1.4.1.9.9.402.1.2.1.11.3.43|2|3048
1.3.6.1.4.1.9.9.402.1.2.1.11.3.44|2|3049
1.3.6.1.4.1.9.9.402.1.2.1.11.3.45|2|3050
1.3.6.1.4.1.9.9.402.1.2.1.11.3.46|2|3051
1.3.6.1.4.1.9.9.402.1.2.1.11.3.47|2|3052
1.3.6.1.4.1.9.9.402.1.2.1.11.3.48|2|3053
1.3.6.1.4.1.9.9.402.1.2.1.11.3.49|2|3054
1.3.6.1.4.1.9.9.402.1.2.1.11.3.50|2|3055
1.3.6.1.4.1.9.9.402.1.2.1.11.3.51|2|3056
1.3.6.1.4.1.9.9.402.1.2.1.11.3.52|2|3057
1.3.6.1.4.1.9.9.402.1.2.1.12.3.3|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.4|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.5|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.6|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.7|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.8|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.9|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.10|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.11|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.12|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.13|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.14|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.15|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.16|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.17|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.18|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.19|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.20|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.21|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.22|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.23|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.24|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.25|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.26|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.29|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.30|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.31|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.32|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.33|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.34|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.35|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.36|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.37|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.38|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.39|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.40|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.41|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.42|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.43|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.44|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.45|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.46|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.47|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.48|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.49|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.50|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.51|2|2
1.3.6.1.4.1.9.9.402.1.2.1.12.3.52|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.3|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.4|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.5|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.6|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.7|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.8|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.9|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.10|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.11|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.12|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.13|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.14|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.15|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.16|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.17|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.18|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.19|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.20|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.21|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.22|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.23|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.24|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.25|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.26|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.29|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.30|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.31|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.32|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.33|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.34|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.35|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.36|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.37|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.38|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.39|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.40|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.41|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.42|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.43|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.44|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.45|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.46|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.47|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.48|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.49|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.50|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.51|2|2
1.3.6.1.4.1.9.9.402.1.2.1.13.3.52|2|2
1.3.6.1.4.1.9.9.402.1.2.1.14.3.3|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.4|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.5|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.6|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.7|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.8|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.9|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.10|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.11|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.12|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.13|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.14|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.15|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.16|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.17|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.18|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.19|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.20|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.21|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.22|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.23|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.24|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.25|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.26|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.29|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.30|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.31|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.32|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.33|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.34|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.35|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.36|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.37|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.38|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.39|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.40|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.41|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.42|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.43|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.44|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.45|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.46|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.47|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.48|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.49|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.50|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.51|2|1
1.3.6.1.4.1.9.9.402.1.2.1.14.3.52|2|1
1.3.6.1.4.1.9.9.402.1.2.1.15.3.3|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.4|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.5|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.6|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.7|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.8|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.9|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.10|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.11|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.12|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.13|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.14|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.15|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.16|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.17|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.18|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.19|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.20|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.21|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.22|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.23|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.24|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.25|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.26|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.29|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.30|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.31|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.32|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.33|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.34|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.35|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.36|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.37|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.38|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.39|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.40|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.41|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.42|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.43|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.44|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.45|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.46|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.47|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.48|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.49|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.50|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.51|66|0
1.3.6.1.4.1.9.9.402.1.2.1.15.3.52|66|0
1.3.6.1.4.1.9.9.402.1.3.1.1.3|2|3001
1.3.6.1.4.1.9.9.402.1.3.1.2.3|4x|57532d43333735302d343850
1.3.6.1.4.1.9.9.402.1.3.1.3.3|2|2
1.3.6.1.4.1.9.9.402.1.4.1.0|66|2
1.3.6.1.4.1.9.9.402.1.4.2.1.2.0|66|0
1.3.6.1.4.1.9.9.402.1.4.2.1.2.1|66|0
1.3.6.1.4.1.9.9.402.1.4.2.1.2.2|66|0
1.3.6.1.4.1.9.9.402.1.4.2.1.2.3|66|0
1.3.6.1.4.1.9.9.402.1.4.2.1.2.4|66|0
1.3.6.1.4.1.9.9.402.1.4.2.1.2.5|66|1
1.3.6.1.4.1.9.9.402.1.5.0|2|2
1.3.6.1.4.1.9.9.412.1.1.1.0|2|1
1.3.6.1.4.1.9.9.412.1.1.2.0|4x|31302e3230342e38382e323237
1.3.6.1.4.1.9.9.451.1.1.1.0|2|300
1.3.6.1.4.1.9.9.451.1.1.2.0|2|30
1.3.6.1.4.1.9.9.451.1.1.3.0|2|300
1.3.6.1.4.1.9.9.451.1.2.1.1.2.1|65|0
1.3.6.1.4.1.9.9.451.1.2.1.1.3.1|66|0
1.3.6.1.4.1.9.9.484.1.1.1.0|66|1
1.3.6.1.4.1.9.9.484.1.1.2.0|2|1
1.3.6.1.4.1.9.9.484.1.1.3.0|2|2
1.3.6.1.4.1.9.9.484.1.1.4.0|2|2
1.3.6.1.4.1.9.9.484.1.1.5.0|2|2
1.3.6.1.4.1.9.9.484.1.1.6.0|2|3
1.3.6.1.4.1.9.9.484.1.1.7.0|66|21862
1.3.6.1.4.1.9.9.484.1.1.8.0|66|20
1.3.6.1.4.1.9.9.484.1.1.9.0|66|60
1.3.6.1.4.1.9.9.484.1.1.10.0|66|180
1.3.6.1.4.1.9.9.484.1.1.11.0|66|3
1.3.6.1.4.1.9.9.484.1.1.12.0|66|36000
1.3.6.1.4.1.9.9.484.1.1.13.0|66|300
1.3.6.1.4.1.9.9.484.1.1.14.0|2|1
1.3.6.1.4.1.9.9.484.1.3.1.1.1.1|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.60|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.70|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11001|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11002|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11008|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11012|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11013|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11014|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11015|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11016|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11017|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11018|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11019|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11020|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11021|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11022|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11023|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11024|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11025|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11026|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11027|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11028|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11029|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11030|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11031|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11032|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11033|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11034|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11035|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11036|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11037|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11038|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11047|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11101|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11102|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11103|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.11104|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.1.14501|2|2
1.3.6.1.4.1.9.9.484.1.3.1.1.2.1|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.60|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.70|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11001|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11002|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11003|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11004|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11005|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11006|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11007|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11008|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11009|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11010|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11011|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11012|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11013|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11014|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11015|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11016|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11017|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11018|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11019|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11020|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11021|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11022|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11023|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11024|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11025|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11026|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11027|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11028|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11029|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11030|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11031|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11032|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11033|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11034|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11035|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11036|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11037|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11038|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11039|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11040|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11041|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11042|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11043|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11044|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11045|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11046|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11047|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11048|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11101|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11102|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11103|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.11104|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.2.14501|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.1|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.60|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.70|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11001|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11002|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11003|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11004|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11005|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11006|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11007|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11008|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11009|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11010|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11011|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11012|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11013|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11014|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11015|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11016|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11017|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11018|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11019|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11020|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11021|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11022|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11023|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11024|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11025|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11026|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11027|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11028|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11029|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11030|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11031|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11032|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11033|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11034|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11035|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11036|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11037|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11038|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11039|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11040|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11041|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11042|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11043|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11044|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11045|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11046|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11047|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11048|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11101|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11102|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11103|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.11104|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.3.14501|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.4.1|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.60|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.70|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11001|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11002|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11003|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11004|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11005|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11006|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11007|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11008|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11009|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11010|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11011|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11012|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11013|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11014|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11015|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11016|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11017|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11018|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11019|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11020|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11021|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11022|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11023|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11024|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11025|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11026|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11027|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11028|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11029|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11030|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11031|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11032|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11033|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11034|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11035|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11036|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11037|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11038|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11039|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11040|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11041|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11042|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11043|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11044|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11045|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11046|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11047|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11048|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11101|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11102|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11103|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.11104|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.4.14501|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.5.1|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.60|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.70|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11001|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11002|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11003|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11004|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11005|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11006|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11007|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11008|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11009|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11010|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11011|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11012|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11013|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11014|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11015|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11016|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11017|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11018|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11019|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11020|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11021|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11022|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11023|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11024|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11025|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11026|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11027|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11028|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11029|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11030|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11031|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11032|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11033|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11034|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11035|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11036|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11037|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11038|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11039|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11040|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11041|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11042|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11043|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11044|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11045|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11046|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11047|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11048|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11101|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11102|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11103|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.11104|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.5.14501|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.1|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.60|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.70|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11001|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11002|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11003|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11004|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11005|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11006|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11007|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11008|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11009|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11010|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11011|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11012|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11013|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11014|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11015|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11016|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11017|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11018|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11019|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11020|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11021|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11022|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11023|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11024|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11025|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11026|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11027|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11028|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11029|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11030|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11031|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11032|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11033|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11034|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11035|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11036|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11037|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11038|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11039|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11040|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11041|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11042|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11043|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11044|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11045|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11046|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11047|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11048|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11101|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11102|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11103|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.11104|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.6.14501|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.1|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.60|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.70|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11001|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11002|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11003|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11004|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11005|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11006|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11007|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11008|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11009|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11010|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11011|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11012|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11013|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11014|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11015|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11016|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11017|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11018|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11019|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11020|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11021|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11022|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11023|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11024|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11025|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11026|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11027|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11028|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11029|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11030|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11031|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11032|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11033|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11034|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11035|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11036|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11037|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11038|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11039|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11040|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11041|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11042|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11043|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11044|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11045|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11046|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11047|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11048|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11101|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11102|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11103|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.11104|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.7.14501|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.1|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.60|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.70|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11001|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11002|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11003|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11004|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11005|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11006|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11007|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11008|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11009|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11010|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11011|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11012|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11013|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11014|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11015|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11016|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11017|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11018|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11019|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11020|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11021|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11022|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11023|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11024|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11025|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11026|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11027|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11028|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11029|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11030|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11031|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11032|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11033|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11034|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11035|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11036|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11037|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11038|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11039|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11040|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11041|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11042|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11043|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11044|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11045|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11046|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11047|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11048|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11101|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11102|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11103|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.11104|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.8.14501|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.1|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.60|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.70|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11001|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11002|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11003|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11004|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11005|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11006|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11007|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11008|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11009|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11010|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11011|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11012|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11013|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11014|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11015|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11016|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11017|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11018|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11019|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11020|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11021|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11022|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11023|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11024|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11025|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11026|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11027|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11028|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11029|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11030|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11031|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11032|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11033|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11034|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11035|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11036|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11037|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11038|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11039|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11040|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11041|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11042|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11043|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11044|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11045|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11046|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11047|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11048|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11101|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11102|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11103|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.11104|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.9.14501|66|0
1.3.6.1.4.1.9.9.484.1.3.1.1.10.1|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.60|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.70|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11001|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11002|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11003|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11004|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11005|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11006|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11007|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11008|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11009|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11010|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11011|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11012|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11013|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11014|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11015|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11016|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11017|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11018|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11019|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11020|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11021|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11022|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11023|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11024|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11025|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11026|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11027|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11028|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11029|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11030|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11031|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11032|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11033|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11034|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11035|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11036|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11037|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11038|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11039|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11040|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11041|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11042|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11043|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11044|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11045|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11046|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11047|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11048|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11101|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11102|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11103|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.11104|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.10.14501|4|
1.3.6.1.4.1.9.9.484.1.3.1.1.11.1|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.60|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.70|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11001|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11002|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11003|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11004|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11005|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11006|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11007|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11008|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11009|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11010|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11011|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11012|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11013|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11014|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11015|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11016|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11017|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11018|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11019|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11020|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11021|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11022|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11023|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11024|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11025|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11026|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11027|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11028|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11029|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11030|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11031|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11032|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11033|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11034|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11035|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11036|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11037|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11038|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11039|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11040|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11041|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11042|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11043|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11044|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11045|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11046|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11047|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11048|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11101|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11102|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11103|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.11104|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.11.14501|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.1|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.60|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.70|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11001|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11002|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11003|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11004|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11005|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11006|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11007|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11008|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11009|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11010|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11011|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11012|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11013|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11014|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11015|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11016|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11017|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11018|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11019|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11020|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11021|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11022|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11023|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11024|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11025|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11026|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11027|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11028|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11029|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11030|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11031|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11032|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11033|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11034|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11035|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11036|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11037|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11038|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11039|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11040|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11041|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11042|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11043|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11044|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11045|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11046|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11047|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11048|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11101|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11102|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11103|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.11104|2|0
1.3.6.1.4.1.9.9.484.1.3.1.1.12.14501|2|0
1.3.6.1.4.1.9.9.484.1.4.1.0|2|1
1.3.6.1.4.1.9.9.484.1.4.2.0|2|1
1.3.6.1.4.1.9.9.484.1.4.3.0|4|
1.3.6.1.4.1.9.9.484.1.4.4.0|4|
1.3.6.1.4.1.9.9.484.1.4.5.0|2|0
1.3.6.1.4.1.9.9.484.1.4.6.0|66|16
1.3.6.1.4.1.9.9.484.1.4.9.0|4|
1.3.6.1.4.1.9.9.484.1.5.1.0|2|2
1.3.6.1.4.1.9.9.484.1.5.2.0|66|3
1.3.6.1.4.1.9.9.484.1.5.3.0|66|30
1.3.6.1.4.1.9.9.492.1.7.1.1.1.1|2|1
1.3.6.1.4.1.9.9.492.1.7.1.1.1.2|2|1
1.3.6.1.4.1.9.9.492.1.7.1.1.2.1|66|10
1.3.6.1.4.1.9.9.492.1.7.1.1.2.2|66|10
1.3.6.1.4.1.9.9.492.1.7.1.1.3.1|66|300
1.3.6.1.4.1.9.9.492.1.7.1.1.3.2|66|300
1.3.6.1.4.1.9.9.492.1.7.1.1.4.1|2|2
1.3.6.1.4.1.9.9.492.1.7.1.1.4.2|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.1|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.2|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.3|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.4|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.5|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.1|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.2|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.3|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.5|2|2
1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.1|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.2|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.3|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.4|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.5|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.1|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.2|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.3|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.5|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.1|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.2|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.3|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.4|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.5|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.1|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.2|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.3|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.5|66|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.4|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.4|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.4|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.4|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.5|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.1|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.2|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.3|65|0
1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.5|65|0
1.3.6.1.4.1.9.9.492.1.7.4.0|67|0
1.3.6.1.4.1.9.9.492.1.9.1.0|2|2
1.3.6.1.4.1.9.9.492.1.9.2.0|2|2
1.3.6.1.4.1.9.9.492.1.9.3.0|2|2
1.3.6.1.4.1.9.9.492.1.9.4.0|2|0
1.3.6.1.4.1.9.9.492.1.9.5.0|2|2
1.3.6.1.4.1.9.9.500.1.1.1.0|66|9
1.3.6.1.4.1.9.9.500.1.1.2.0|66|15
1.3.6.1.4.1.9.9.500.1.1.3.0|2|2
1.3.6.1.4.1.9.9.500.1.1.4.0|2|2
1.3.6.1.4.1.9.9.500.1.1.5.0|4x|00000000
1.3.6.1.4.1.9.9.500.1.2.1.1.1.3001|66|3
1.3.6.1.4.1.9.9.500.1.2.1.1.2.3001|66|3
1.3.6.1.4.1.9.9.500.1.2.1.1.3.3001|2|1
1.3.6.1.4.1.9.9.500.1.2.1.1.4.3001|66|1
1.3.6.1.4.1.9.9.500.1.2.1.1.5.3001|66|2
1.3.6.1.4.1.9.9.500.1.2.1.1.6.3001|2|4
1.3.6.1.4.1.9.9.500.1.2.1.1.7.3001|4x|0016c7026e80
1.3.6.1.4.1.9.9.500.1.2.1.1.8.3001|4x|43333735302d495053455256494345534b392d4d
1.3.6.1.4.1.9.9.500.1.2.1.1.9.3001|66|0
1.3.6.1.4.1.9.9.500.1.2.1.1.10.3001|66|0
1.3.6.1.4.1.9.9.500.1.2.1.1.11.3001|66|0
1.3.6.1.4.1.9.9.500.1.2.1.1.12.3001|66|0
1.3.6.1.4.1.9.9.500.1.2.1.1.13.3001|66|0
1.3.6.1.4.1.9.9.500.1.2.2.1.1.5186|2|2
1.3.6.1.4.1.9.9.500.1.2.2.1.1.5187|2|2
1.3.6.1.4.1.9.9.500.1.2.2.1.2.5186|2|0
1.3.6.1.4.1.9.9.500.1.2.2.1.2.5187|2|0
1.3.6.1.4.1.9.9.543.1.1.1.0|66|1
1.3.6.1.4.1.9.9.543.1.3.1.0|66|1
1.3.6.1.4.1.9.9.543.1.4.1.0|2|2
1.3.6.1.4.1.9.9.543.1.4.2.0|2|2
1.3.6.1.4.1.9.9.543.1.4.3.0|2|2
1.3.6.1.4.1.9.9.548.1.1.1.0|66|300
1.3.6.1.4.1.9.9.548.1.1.2.0|2|2
1.3.6.1.4.1.9.9.548.1.1.3.0|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.1|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.2|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.3|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.4|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.5|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.6|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.7|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.8|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.9|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.10|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.11|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.13|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.14|4x|40
1.3.6.1.4.1.9.9.548.1.2.1.1.2.15|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.16|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.2.17|4x|c0
1.3.6.1.4.1.9.9.548.1.2.1.1.3.1|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.2|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.3|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.4|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.5|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.6|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.7|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.8|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.9|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.10|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.11|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.13|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.14|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.15|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.16|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.3.17|2|1
1.3.6.1.4.1.9.9.548.1.2.1.1.4.1|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.2|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.3|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.4|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.5|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.6|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.7|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.8|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.9|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.10|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.11|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.13|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.14|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.15|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.16|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.4.17|2|2
1.3.6.1.4.1.9.9.548.1.2.1.1.5.1|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.2|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.3|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.4|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.5|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.6|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.7|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.8|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.9|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.10|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.11|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.13|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.14|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.15|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.16|66|0
1.3.6.1.4.1.9.9.548.1.2.1.1.5.17|66|0
1.3.6.1.4.1.9.9.653.1.1.1.0|65|0
1.3.6.1.4.1.9.9.653.1.1.2.0|66|0
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11001|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11002|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11003|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11004|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11005|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11006|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11007|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11009|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11010|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11011|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11039|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11040|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11041|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11042|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11043|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11044|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11045|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11046|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.1.11048|2|2
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11001|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11002|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11003|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11004|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11005|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11006|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11007|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11009|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11010|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11011|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11039|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11040|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11041|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11042|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11043|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11044|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11045|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11046|2|1
1.3.6.1.4.1.9.9.654.1.1.1.1.2.11048|2|1
1.3.6.1.4.1.9.9.656.1.1.1.0|66|100
1.3.6.1.4.1.9.9.656.1.1.2.1.2.2|66|0
1.3.6.1.4.1.9.9.656.1.1.2.1.2.3|66|1
1.3.6.1.4.1.9.9.656.1.1.2.1.2.4|66|2
1.3.6.1.4.1.9.9.656.1.1.2.1.3.2|66|1
1.3.6.1.4.1.9.9.656.1.1.2.1.3.3|66|2
1.3.6.1.4.1.9.9.656.1.1.2.1.3.4|66|3
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11001|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11002|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11003|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11004|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11005|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11006|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11007|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11009|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11010|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11011|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11039|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11040|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11041|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11042|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11043|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11044|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11045|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11046|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.1.11048|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11001|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11002|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11003|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11004|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11005|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11006|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11007|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11009|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11010|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11011|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11039|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11040|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11041|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11042|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11043|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11044|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11045|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11046|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.2.11048|4|
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11001|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11002|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11003|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11004|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11005|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11006|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11007|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11009|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11010|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11011|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11039|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11040|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11041|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11042|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11043|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11044|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11045|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11046|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.3.11048|2|1
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11001|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11002|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11003|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11004|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11005|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11006|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11007|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11009|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11010|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11011|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11039|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11040|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11041|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11042|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11043|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11044|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11045|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11046|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.4.11048|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11001|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11002|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11003|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11004|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11005|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11006|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11007|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11009|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11010|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11011|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11039|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11040|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11041|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11042|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11043|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11044|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11045|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11046|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.5.11048|2|3
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11001|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11002|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11003|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11004|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11005|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11006|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11007|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11009|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11010|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11011|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11039|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11040|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11041|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11042|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11043|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11044|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11045|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11046|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.6.11048|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11001|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11002|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11003|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11004|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11005|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11006|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11007|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11009|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11010|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11011|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11039|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11040|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11041|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11042|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11043|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11044|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11045|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11046|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.7.11048|66|3600
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11001|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11002|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11003|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11004|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11005|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11006|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11007|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11009|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11010|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11011|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11039|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11040|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11041|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11042|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11043|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11044|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11045|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11046|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.8.11048|66|60
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11001|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11002|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11003|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11004|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11005|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11006|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11007|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11009|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11010|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11011|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11039|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11040|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11041|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11042|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11043|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11044|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11045|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11046|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.9.11048|2|0
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11001|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11002|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11003|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11004|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11005|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11006|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11007|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11009|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11010|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11011|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11039|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11040|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11041|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11042|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11043|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11044|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11045|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11046|2|2
1.3.6.1.4.1.9.9.656.1.2.1.1.10.11048|2|2
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11001|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11002|4x|0203
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11003|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11004|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11005|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11006|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11007|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11009|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11010|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11011|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11039|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11040|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11041|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11042|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11043|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11044|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11045|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11046|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.1.11048|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11001|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11002|4x|0203
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11003|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11004|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11005|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11006|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11007|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11009|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11010|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11011|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11039|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11040|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11041|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11042|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11043|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11044|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11045|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11046|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.2.11048|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11001|4x|c0
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11002|4x|c0
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11003|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11004|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11005|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11006|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11007|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11009|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11010|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11011|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11039|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11040|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11041|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11042|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11043|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11044|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11045|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11046|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.3.11048|4x|00
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11001|4x|0203
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11002|4x|0203
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11003|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11004|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11005|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11006|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11007|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11009|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11010|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11011|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11039|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11040|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11041|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11042|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11043|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11044|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11045|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11046|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.4.11048|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11001|4x|0203
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11002|4x|0203
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11003|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11004|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11005|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11006|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11007|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11009|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11010|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11011|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11039|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11040|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11041|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11042|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11043|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11044|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11045|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11046|4|
1.3.6.1.4.1.9.9.656.1.2.2.1.5.11048|4|
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11001|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11002|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11003|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11004|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11005|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11006|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11007|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11009|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11010|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11011|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11039|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11040|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11041|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11042|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11043|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11044|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11045|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11046|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.1.11048|66|2
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11001|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11002|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11003|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11004|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11005|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11006|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11007|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11009|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11010|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11011|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11039|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11040|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11041|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11042|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11043|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11044|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11045|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11046|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.2.11048|2|1
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11001|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11002|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11003|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11004|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11005|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11006|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11007|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11009|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11010|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11011|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11039|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11040|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11041|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11042|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11043|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11044|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11045|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11046|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.3.11048|2|0
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11001|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11002|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11003|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11004|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11005|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11006|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11007|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11009|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11010|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11011|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11039|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11040|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11041|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11042|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11043|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11044|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11045|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11046|2|2
1.3.6.1.4.1.9.9.656.1.3.1.1.4.11048|2|2
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11001|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11002|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11003|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11004|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11005|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11006|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11007|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11009|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11010|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11011|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11039|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11040|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11041|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11042|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11043|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11044|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11045|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11046|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.1.11048|2|1
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11001|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11002|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11003|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11004|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11005|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11006|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11007|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11009|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11010|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11011|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11039|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11040|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11041|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11042|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11043|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11044|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11045|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11046|2|0
1.3.6.1.4.1.9.9.656.1.3.2.1.2.11048|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11001|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11002|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11003|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11004|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11005|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11006|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11007|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11009|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11010|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11011|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11039|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11040|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11041|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11042|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11043|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11044|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11045|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11046|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.1.11048|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11001|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11002|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11003|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11004|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11005|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11006|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11007|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11009|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11010|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11011|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11039|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11040|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11041|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11042|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11043|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11044|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11045|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11046|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.2.11048|2|2
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11001|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11002|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11003|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11004|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11005|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11006|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11007|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11009|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11010|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11011|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11039|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11040|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11041|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11042|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11043|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11044|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11045|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11046|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.3.11048|2|0
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11001|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11002|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11003|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11004|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11005|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11006|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11007|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11009|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11010|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11011|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11039|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11040|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11041|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11042|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11043|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11044|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11045|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11046|2|1
1.3.6.1.4.1.9.9.656.1.3.3.1.4.11048|2|1
1.3.6.1.4.1.9.9.656.1.5.1.0|2|2
1.3.6.1.4.1.9.9.683.1.1.0|4x|0000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.683.1.2.0|66|0
1.3.6.1.4.1.9.9.683.1.3.0|4|
1.3.6.1.4.1.9.9.683.1.4.0|66|0
1.3.6.1.4.1.9.9.683.1.5.0|4x|0000000000000000000000000000000000000000000000000000000000000000
1.3.6.1.4.1.9.9.683.1.11.0|2|2
1.3.6.1.4.1.9.9.683.1.12.0|2|2
1.3.6.1.4.1.9.9.683.1.13.0|2|2
1.3.6.1.4.1.9.9.683.1.14.0|2|2
1.3.6.1.4.1.9.9.683.1.16.0|4|
1.3.6.1.4.1.9.9.683.1.17.0|4|
1.3.6.1.4.1.9.9.683.1.18.0|4|
1.3.6.1.4.1.9.9.683.1.19.0|2|0
1.3.6.1.4.1.9.9.683.1.20.0|2|0
1.3.6.1.4.1.9.9.683.1.21.0|4|
1.3.6.1.4.1.9.9.683.1.22.0|66|0
1.3.6.1.4.1.9.9.683.1.23.0|2|2
1.3.6.1.4.1.9.9.683.1.24.0|4|
1.3.6.1.4.1.9.9.683.1.25.0|66|0
1.3.6.1.4.1.9.9.683.1.26.0|2|0
1.3.6.1.4.1.9.9.683.1.27.0|4|
1.3.6.1.4.1.9.9.683.1.28.0|2|0
1.3.6.1.4.1.9.9.725.1.1.1.0|2|1
1.3.6.1.4.1.9.9.725.1.1.2.0|2|1
1.3.6.1.4.1.9.9.725.1.1.3.0|4x|00000000
1.3.6.1.4.1.9.9.725.1.1.4.0|2|1
1.3.6.1.4.1.9.9.725.1.1.5.0|4x|40
1.3.6.1.4.1.9.9.725.1.1.6.0|4x|00
1.3.6.1.4.1.9.9.725.1.1.7.1.0|4|
1.3.6.1.4.1.9.9.725.1.1.7.2.0|2|1
1.3.6.1.4.1.9.9.725.1.1.8.1.0|2|2
1.3.6.1.4.1.9.9.725.1.1.8.2.0|66|1
1.3.6.1.4.1.9.9.725.1.2.1.0|4|
1.3.6.1.4.1.9.9.725.1.2.2.0|4|
1.3.6.1.4.1.9.9.725.1.2.3.0|4|
1.3.6.1.4.1.9.9.725.1.2.4.0|66|2
1.3.6.1.4.1.9.9.725.1.4.1.0|4x|00
1.3.6.1.4.1.9.9.725.1.4.2.0|2|1
1.3.6.1.4.1.9.9.725.1.4.3.0|4|
1.3.6.1.4.1.9.10.2.1.1.1.0|66|0
1.3.6.1.4.1.9.10.91.1.1.1.1.2.1|4|application
1.3.6.1.4.1.9.10.91.1.1.1.1.2.21|4x|74696d6572207761746368646f67
1.3.6.1.4.1.9.10.91.1.1.1.1.2.22|4x|74696d657220636f756e74646f776e
1.3.6.1.4.1.9.10.91.1.1.1.1.2.23|4x|74696d6572206162736f6c757465
1.3.6.1.4.1.9.10.91.1.1.1.1.2.24|4x|74696d65722063726f6e
1.3.6.1.4.1.9.10.91.1.1.1.1.2.31|4|counter
1.3.6.1.4.1.9.10.91.1.1.1.1.2.41|4|syslog
1.3.6.1.4.1.9.10.91.1.1.1.1.2.51|4|snmp
1.3.6.1.4.1.9.10.91.1.1.1.1.2.71|4|interface
1.3.6.1.4.1.9.10.91.1.1.1.1.2.81|4|ioswdsysmon
1.3.6.1.4.1.9.10.91.1.1.1.1.2.121|4|cli
1.3.6.1.4.1.9.10.91.1.1.1.1.2.131|4|none
1.3.6.1.4.1.9.10.91.1.1.1.1.2.141|4|oir
1.3.6.1.4.1.9.10.91.1.1.1.1.2.221|4|rpc
1.3.6.1.4.1.9.10.91.1.1.1.1.2.231|4x|736e6d705f6e6f74696669636174696f6e
1.3.6.1.4.1.9.10.91.1.1.1.1.2.241|4|ipsla
1.3.6.1.4.1.9.10.91.1.1.1.1.2.251|4|routing
1.3.6.1.4.1.9.10.91.1.1.1.1.2.271|4x|736e6d702d6f626a656374
1.3.6.1.4.1.9.10.91.1.1.1.1.2.291|4|identity
1.3.6.1.4.1.9.10.91.1.1.1.1.2.301|4x|6e65696768626f722d646973636f76657279
1.3.6.1.4.1.9.10.91.1.1.1.1.2.311|4|mat
1.3.6.1.4.1.9.10.91.1.1.1.1.3.1|4|application
1.3.6.1.4.1.9.10.91.1.1.1.1.3.21|4x|74696d6572207761746368646f67
1.3.6.1.4.1.9.10.91.1.1.1.1.3.22|4x|74696d657220636f756e74646f776e
1.3.6.1.4.1.9.10.91.1.1.1.1.3.23|4x|74696d6572206162736f6c757465
1.3.6.1.4.1.9.10.91.1.1.1.1.3.24|4x|74696d65722063726f6e
1.3.6.1.4.1.9.10.91.1.1.1.1.3.31|4|counter
1.3.6.1.4.1.9.10.91.1.1.1.1.3.41|4|syslog
1.3.6.1.4.1.9.10.91.1.1.1.1.3.51|4|snmp
1.3.6.1.4.1.9.10.91.1.1.1.1.3.71|4|interface
1.3.6.1.4.1.9.10.91.1.1.1.1.3.81|4|ioswdsysmon
1.3.6.1.4.1.9.10.91.1.1.1.1.3.121|4|cli
1.3.6.1.4.1.9.10.91.1.1.1.1.3.131|4|none
1.3.6.1.4.1.9.10.91.1.1.1.1.3.141|4|oir
1.3.6.1.4.1.9.10.91.1.1.1.1.3.221|4|rpc
1.3.6.1.4.1.9.10.91.1.1.1.1.3.231|4x|736e6d705f6e6f74696669636174696f6e
1.3.6.1.4.1.9.10.91.1.1.1.1.3.241|4|ipsla
1.3.6.1.4.1.9.10.91.1.1.1.1.3.251|4|routing
1.3.6.1.4.1.9.10.91.1.1.1.1.3.271|4x|736e6d702d6f626a656374
1.3.6.1.4.1.9.10.91.1.1.1.1.3.291|4|identity
1.3.6.1.4.1.9.10.91.1.1.1.1.3.301|4x|6e65696768626f722d646973636f76657279
1.3.6.1.4.1.9.10.91.1.1.1.1.3.311|4|mat
1.3.6.1.4.1.9.10.91.1.2.1.0|2|10
1.3.6.1.4.1.9.10.91.1.2.2.0|66|0
1.3.6.1.6.3.1.1.6.1.0|2|0
1.3.6.1.6.3.10.2.1.1.0|4x|8000000903000016c7026e83
1.3.6.1.6.3.10.2.1.2.0|2|7
1.3.6.1.6.3.10.2.1.3.0|2|6971948
1.3.6.1.6.3.10.2.1.4.0|2|1500
1.3.6.1.6.3.11.2.1.1.0|65|0
1.3.6.1.6.3.11.2.1.2.0|65|0
1.3.6.1.6.3.11.2.1.3.0|65|0
1.3.6.1.6.3.12.1.1.0|2|2091000
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|6|1.3.6.1.6.1.1
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|0acc353400a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|4x|0acc587d00a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4x|0acc3a0300a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|4x|0acc58b700a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|4x|0acc3a6b00a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|4x|0acc587800a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4x|0acc5b1400a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|0acc589e00a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|0acc58b900a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4x|0acc59b600a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|0acc353400a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|0acc589e00a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4x|0acc5b1400a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|0acc353400a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|4x|0acc364000a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|0acc58b900a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4x|0acc59b600a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|4x|0acc3a9c00a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4x|0acc3a0300a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|0acc589e00a2
1.3.6.1.6.3.12.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|0acc58b900a2
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1500
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4|trap
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|74726170686f73742e50726f662e31302e3230342e35332e35322e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|4x|74726170686f73742e50726f662e31302e3230342e38382e3132352e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4x|74726170686f73742e545241502e31302e3230342e35382e332e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|4x|74726170686f73742e545241502e31302e3230342e38382e3138332e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|4x|74726170686f73742e707261646565702e31302e3230342e35382e3130372e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|4x|74726170686f73742e707261646565702e31302e3230342e38382e3132302e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4x|74726170686f73742e736f7772692e31302e3230342e39312e32302e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|74726170686f73742e737572656e6472612e31302e3230342e38382e3135382e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|74726170686f73742e737572656e6472612e31302e3230342e38382e3138352e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4x|74726170686f73742e737572656e6472612e31302e3230342e38392e3138322e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|74726170686f73742e737572656e647261312e31302e3230342e35332e35322e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|74726170686f73742e737572656e647261312e31302e3230342e38382e3135382e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4x|74726170686f73742e737572656e647261312e31302e3230342e39312e32302e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e35332e35322e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e35342e36342e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e38382e3138352e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e38392e3138322e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e35382e3135362e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e35382e332e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e38382e3135382e313632
1.3.6.1.6.3.12.1.2.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e38382e3138352e313632
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.8.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.12.1.2.1.9.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4|Prof
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|4|Prof
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4|TRAP
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|4|TRAP
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|4|pradeep
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|4|pradeep
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4|sowri
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4|surendra
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4|surendra
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4|surendra
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4|surendra1
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4|surendra1
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4|surendra1
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4|suresh
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|4|suresh
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4|suresh
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4|suresh
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|4|trap1
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4|trap1
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4|trap1
1.3.6.1.6.3.12.1.3.1.4.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4|trap1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.5.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|2
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.6.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|3
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.12.1.3.1.7.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.12.1.4.0|65|0
1.3.6.1.6.3.12.1.5.0|65|0
1.3.6.1.6.3.13.1.1.1.2.116.114.97.112|4|trap
1.3.6.1.6.3.13.1.1.1.3.116.114.97.112|2|1
1.3.6.1.6.3.13.1.1.1.4.116.114.97.112|2|3
1.3.6.1.6.3.13.1.1.1.5.116.114.97.112|2|1
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|74726170686f73742e50726f662e31302e3230342e35332e35322e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|4x|74726170686f73742e50726f662e31302e3230342e38382e3132352e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4x|74726170686f73742e545241502e31302e3230342e35382e332e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|4x|74726170686f73742e545241502e31302e3230342e38382e3138332e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|4x|74726170686f73742e707261646565702e31302e3230342e35382e3130372e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|4x|74726170686f73742e707261646565702e31302e3230342e38382e3132302e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4x|74726170686f73742e736f7772692e31302e3230342e39312e32302e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|74726170686f73742e737572656e6472612e31302e3230342e38382e3135382e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|74726170686f73742e737572656e6472612e31302e3230342e38382e3138352e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4x|74726170686f73742e737572656e6472612e31302e3230342e38392e3138322e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|74726170686f73742e737572656e647261312e31302e3230342e35332e35322e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|74726170686f73742e737572656e647261312e31302e3230342e38382e3135382e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|4x|74726170686f73742e737572656e647261312e31302e3230342e39312e32302e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e35332e35322e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e35342e36342e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e38382e3138352e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|4x|74726170686f73742e7375726573682e31302e3230342e38392e3138322e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e35382e3135362e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e35382e332e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e38382e3135382e313632
1.3.6.1.6.3.13.1.2.1.1.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|4x|74726170686f73742e74726170312e31302e3230342e38382e3138352e313632
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.2.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|2
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50|2|1
1.3.6.1.6.3.13.1.2.1.3.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50|2|1
1.3.6.1.6.3.13.1.3.1.2.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.2.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|4|
1.3.6.1.6.3.13.1.3.1.2.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|4|
1.3.6.1.6.3.13.1.3.1.3.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.3.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.3.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.4.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.4.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|2
1.3.6.1.6.3.13.1.3.1.4.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|2
1.3.6.1.6.3.13.1.3.1.5.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.29.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.30.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.80.114.111.102.46.49.48.46.50.48.52.46.56.56.46.49.50.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.84.82.65.80.46.49.48.46.50.48.52.46.56.56.46.49.56.51.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.31.116.114.97.112.104.111.115.116.46.115.111.119.114.105.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.53.52.46.54.52.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.53.56.46.49.53.54.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.32.116.114.97.112.104.111.115.116.46.116.114.97.112.49.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.33.116.114.97.112.104.111.115.116.46.115.117.114.101.115.104.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.53.56.46.49.48.55.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.34.116.114.97.112.104.111.115.116.46.112.114.97.100.101.101.112.46.49.48.46.50.48.52.46.56.56.46.49.50.48.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.56.46.49.56.53.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.46.49.48.46.50.48.52.46.56.57.46.49.56.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.12|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.13|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.14|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.15|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.14.16.2.16|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.15.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.17.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.47.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.2.1.105.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.61.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.3.92.1.1.7.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.10.1.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.13.3.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.41.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.42.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.43.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.46.2.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.82.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.96.2.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.106.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.117.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.134.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.184.2.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.187.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.215.2.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.220.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.315.0.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.402.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.449.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.543.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.548.0.1.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.656.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.683.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.9.725.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.2.3.1.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.91.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.101.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.2|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.3|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.4|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.5|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.6|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.7|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.8|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.9|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.10|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.11|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.12|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.13|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.14|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.15|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.16|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.17|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.53.51.46.53.50.46.49.54.50.1.3.6.1.4.1.9.10.118.0.18|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.35.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.57.49.46.50.48.46.49.54.50.1.2.840.10036|2|1
1.3.6.1.6.3.13.1.3.1.5.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1|2|1
1.3.6.1.6.3.13.1.3.1.5.36.116.114.97.112.104.111.115.116.46.115.117.114.101.110.100.114.97.49.46.49.48.46.50.48.52.46.56.56.46.49.53.56.46.49.54.50.1.2.840.10036|2|1
snmpsim-0.4.5/CHANGES.txt 0000664 0063214 0063214 00000052065 13412164152 015230 0 ustar ietingof ietingof
Revision 0.4.5, released 30-12-2018
-----------------------------------
- Copyright notice bumped up to year 2019
- Bumped upper Python version to 3.7
- Use absolute paths of Simulator data files and variation modules
and reflect that in the log -- that should ease troubleshooting
- Optional .snmprec tag modifier is ignored by the *error*,
*delay*, *writecache* and *notification* variation modules
- Fixed DBM file index detection code to operate correctly
- Fixed pysnmp/pyasn1 debugging flags print out in `--help` to work
with newer pyasn1/pysnmp
Revision 0.4.4, released 20-02-2018
-----------------------------------
- Fixed regression to non-snmprec format evaluator when
called in a non-simulation context (e.g. datafile.py)
- Fixed non-functional SQL isolation level setup at the
`sql` variation module
Revision 0.4.3, released 12-02-2018
-----------------------------------
- Copyright notice bumped up to year 2018
- Fix to strip labels from enumerations when producing .snmprec
file
- Fix to SNMP GET command processing by the non-snmprec storage
backends - it used to return next OID instead of noSuchObject
Revision 0.4.2, released 22-12-2017
-----------------------------------
- Python literal string representation added as a new flavor of .snmprec
string type field (4e)
- Migrated references from SourceForge
- Integer and enumerations parsing of snmpwalk output improved
- Added strong AES privacy algorithms with Blumenthal key localization
- Fixed SNMP crypto algorithm identifiers to be named consistently after
key length rather than MAC length
Revision 0.4.1, released 29-10-2017
-----------------------------------
- SHA2 authentication protocol suite added.
- Sphinx documentation added based on the original web-site
user manual
- Simulator's SNMPv3 command line option processing hardened to
make easier to understand.
- Notification variation module now accepts hex strings in var-binds
- Fixes to Windows path to log file handling.
- Fixes to MIB objects command-line parsing.
- Source code PEP8'ed
Revision 0.3.1, released 21-01-2017
-----------------------------------
- Fix to __doc__ use in setup.py to make -O0 installation mode working.
- Copyright notes added to source code files.
- Per-OID access control added to 'writecache' variation module.
- Data file binary search performance improved
- Option --string-pool-file for mib2dev.py tool implemented
- Default string pool for mib2dev.py tool changed to a pangram
- Author's e-mail changed, copyright extended to year 2017
- Fix to PID file creation when running Python 3.
- Fix to datafile.py tool that apparently stopped working.
- Fix to snmpwalk Timeticks parser
- Fix to mib2dev.py stopping prematurely iterating over OIDs in MIB
- Fix to accidentally expanded shebang in console scripts (hopefuly)
Revision 0.3.0, released 28-09-2015
-----------------------------------
- Simulator now depends on the latest pysnmp features introduced in
pysnmp version 4.3.0
- Introducing initial MIB compiler (PySMI) integration. Most command-line
tools can now be given MIB symbols rather than OIDs. Requested
MIBs will be automatically downloaded from http://mibs.snmplabs.com/ .
- New Redis-backed variation module implemented to let users record into
and replay simulation data from noSQL key-value store optionally
involving server-side Lua scripting.
- Full-line comments (#-based) and empty lines are now allowed in data files.
- When recording .snmprec data, hex everything if a non-alpha/numeric
literal is present in a value. This eliminates possible issues with
unescaped contents in a SQL-based recorder.
- New --max-varbinds option can now be used for limiting the number
of variable bindings in SNMP response message on a per-engine-id
basis. Global default is now 64 variable bindings.
- Multiple SNMP ContextEngineID can now be configured per each of possibly
many SNMP Engine IDs.
- SNMP configuration logging reworked for better clarity.
- The notification module now binds to the same local interface through
which Simulator received CommandRequest triggering notification.
Also it supports 'bindaddr' option to override the above behaviour on
a per-OID basis.
- The sql variation module not switches default SQL transaction isolation
level to 'READ COMMITTED'. Isolation level (0-3) could now be specified
on per-instance basis through 'isolationlevel' option.
- The subprocess variation module improved to expose more SNMP engine
parameters to user process.
- Switched to the latest pysnmp's requestObserver facility for getting
request details from pysnmp core.
- Numeric module's 'function' parameter now accepts optional arguments.
- The snmprec.py tool improved to optionally survive SNMP PDU-level errors
and keep walking remote Agent using an OID derived from the failed one.
- Configurable SNMP request timeout and retry count settings now supported
by the snmprec.py tool.
- The --context-engine-id option support added to snmprec.py tool.
- Hex values can now be passed to --v3-context-\* options to snmprec.py tool
- Variation modules options separators can now be escaped by doubling or
tripling them.
- All logging moved to Python logging framework. Some more log targets (such
as remote syslog) added.
- Low-level SNMP and ASN.1 debugging implemented for all relevant scripts.
- Configure both plain-text and hashed versions of snmpCommunityName,
contextName whenever its length does not exceed 32 chars. That might ease
ContextName usage for Agent addressing.
- Wheel distribution format now supported.
- Fix to log file autorotation feature.
- Fix to pcap2dev.py not to loose the last trailing OID in capture.
- Fix to variation module recordContexts isolation to make it dedicated
to each Variaiton Module+Agent instance.
- Fix to snmpEngine configuration code at notification.py variation module.
- Fixes to --logging-method formatting in --help output.
- Fix to numeric.py module value wrapping feature.
- Fix to MIB selection code to prevent (and report) LCD access.
- Multiple comma-separated debug options now supported.
- PostgreSQL is now supported by sql variation module.
- Fix to sql.py variation module to work with Python older than 2.5.
- Fix to sql.py variation module to avoid 'Unread result found' MySQL error.
- The snmpwalk OPAQUE: Float: syntax is now supported.
- Fix to HEX value handling in snmpwalk format handler.
- Fix to absolute file log path on Windows.
- Fix to off-by-one errorIndex as reported by error.py and writecache.py
variation modules.
- Fix to record parsers/builders to fail on empty values.
- Fix to snmprec.py & pcap2dev.py in part of processed OIDs counting.
Revision 0.2.4, released 04-10-2013
-----------------------------------
- A tool for building SNMP Simulator data files from network
packet captures added.
- Automatic online data file index rebuild on data file timestamp
change implemented.
- The sql variation module tweaked to be better compliant with
Python DB API 2.0 so that it can now work with MySQL out of
the box. Module options also reworked to support named
DB connect() parameters.
- Simulator can now run many independent SNMP engines each with its
own set of data files listening at dedicated transport endpoints.
At least pysnmp 4.2.5 is required for this feature to work.
- Simulator now accepts the --transport-id-offset command-line parameter
to specify the initial transport ID instance for each transport domain
configured.
- Variation module API changed to allow recording module to communicate
to its host time of the next probe to occur.
- Variation module API changed so that SNMP engine ID is only available
in variate() context. This is due to the new multi-engine ID design.
- New --args-from-file command-line parameter added to snmpsimd.py to
allow a large number of SNMP engines configured to Simulator. The
--agent-endpoint\*-list= family of options discontinued in favor of
multiple --agent-\*-endpoint options read from args file.
- Distribute is gone, switching to setuptools completely.
- Default logging destination for all tools is now stderr.
- The --version option of snmprec.py renamed into --protocol-version.
- New command-line option --pid-file added.
- Daemonization under a non-root user now works.
- Fixes to time-based log file rotation implementation.
- Fixes to numeric variation module. Also, taglist parameter is now
defaulted into all numerical types.
- Fix to PID file creation on daemonization.
- Fixes to stdio binary mode write to work with Python 3.
Revision 0.2.3, released 01-08-2013
-----------------------------------
- Simulator now supports a list of interfaces to listen on through
the --agent-endpoint\*-list= family of options. It's intended
for simulation a very large pool of devices.
- Introducing new command-line utility "datafile.py" designed to manage data
files. Features include: merging, splitting, sorting, de-duplicating,
convertion between data file formats.
- Automatic log file rotation feature implemented.
- A number of improvement to the mib2dev.py tool:
* Columnar objects for table indices are now automatically populated
from index values
* Tables are can now be populated with arbitrary number of rows
* Hex values can now be given at the prompt using the 0x syntax
* Default automatic value ranges for integers are now much smaller
to increase a chance of automatic selection.
* Values ranges can now be set for each SNMP type separately.
* When generating values, make N probes choosing random values for
better automation
* Produced values are sorted and de-duplicated.
* Fix to OID range checking when specified at the command-line.
- Help messages made more readable and complete.
- Data file search code fixed (not to crash Simulator in corner cases)
and simplified.
- Variable conflict fixed that broke --v2c-arch option operations.
- Fix to OIDs ordering in --v2c-arch GETBULK responder.
- Fix subprocess variation module to work with old Python(s).
- Source code linted and improved.
Revision 0.2.2, released 13-05-2013
-----------------------------------
- Multiple USM user entries with potentially different auth&priv settings
can now be configured to snmpsimd.py.
- Centralized logging facility added. Logging into syslog or file is
now supported.
- Simulator process daemonization and privileges drop implemented.
- More logging added into snmpsimd.py, snmprec.py and variation modules
to ease the understanding of their operation.
- The --quiet flag of snmprec.py now deprecated in favor of "null"
logging method.
- Variation modules execution environment extended to provide contexts
for three scopes: record, agent and module. This simplifies modules
implementation in terms of storing and managing state/configuration
informaton on per-OID/per-Agent and global basis.
- The snmprec.py tool now supports DNS names in c/l target parameter.
- New 'cumulative' flag added to the numeric.py variation module.
- The multiplex module improved to allow .snmprec file selection via
SNMP SET.
- Fatal exceptions are now fully logged.
- Type checking is now performed on SET operation at writecache module.
- Fix to community names '/'-normalization at transport address based
variation logic. It appeared broken on Windows only since 0.2.1.
- Fix to snmprec.py behaviour on missing variation module directory.
- Fix to .snmpwalk grammar parser to support Network Address type tag.
- Fix to multiplex.py module to let its multiple instances working
independently (each for a subtree).
- Multiple fixes and re-work of the numeric.py module
- Fix to snmprec.py tool to write snmprec data to stderr in binary mode.
- Fix to OID search in a .snmprec in case of a subtree configured
on the last line of .snmprec file.
- Fix to line separator character used in file logger -- now it's
platform-dependent.
Revision 0.2.1, released 07-04-2013
-----------------------------------
- WARNING: this release brings some backward incompatibilities in
* variation modules names and options
* snmpsimd.py community names (in Windows platform)
* stock variation modules installation location
* sql module OID format stored in database
Please read the changes below for more information.
- License updated to vanilla BSD 2-Clause
(http://opensource.org/licenses/BSD-2-Clause).
- Variation modules can now participate in .snmprec production what
can be used for capturing additional information about SNMP Agent
being snapshotted in .snmprec files.
The following changes have been made to the system:
* the snmprec.py tool can be passed variation module name.
* variation modules can now define the 'record' callable which
will be given a chance to influence snmprec record being written.
* existing 'process' callable in variation modules renamed into
'variate' for clarity.
* variation modules' init() and shutdown() methods accept \*\*context,
'mode' parameter being passed indicating current operation mode.
* variation modules running in recording mode can communicate to
the upper levels that they either won't produce any data on the
current invocation or request another round of SNMP Agent walk.
- Variation modules options now take shape of a key-value pairs. This
might break backward compatibility with 0.2.0!
- The counter.py and gauge.py variation modules merged into a single
numeric.py module which also supports INTEGER&TIMETICKS values as
well as recording feature.
- The involatilecache.py and volatilecache.py modules merged into a
single writecache.py module which also supports SET value verification
against per-OID access list.
- The error.py variation module extended to support variation based on
SET value.
- The delay.py variation module extended to support variation based on
SET value and time of date.
- Format of the OID stored in SQL database changed in a backward incompatible
manner.
- Recording functionality added to the delay.py and numeric.py modules.
- The new "multiplex" variation module added to be able to record
and replay a sequence of .snmprec files ordered by time.
- SNMP GETBULK operation is now supported by snmprec.py.
- Redesign of grammar objects -- the new concept is that they
are only responsible for basic record layout, fields normalization.
and SNMP types resolution. However complex field formatting (such
as grammar-specific tag modifiers) is now up to higher-level
'Record' objects.
- Simulator-generated community names now uses '/' as path separator
regardless of the platform. This allows for unified Simulator view
in terms of community and context names across the platforms.
- Snapshot files recording now works under Python3.
- Install data and variation modules into package root to make easy_install
work again. Search these directories at runtime as a last resort - prefer
system or home locations as it is more natural to keep changing data there.
- Simulator is now more tolerant to duplicate variation modules (just ignores
recently found) and catches duplicate data files (also ignores more recent).
- On Windows, search both data and variation modules into %PROGRAMFILES%
Revision 0.2.0, released 12-03-2013
-----------------------------------
- Major overhaul aimed at adding value variation features to the Simulator
core:
* data files may now hold not only terminal OIDs but also OID subtrees
* pluggable value variation modules interfaces and basic modules added
* write support added through the use of appropriate variation modules
* SQL backend for keeping and modifying SNMP snapshots added in form of
a value variation module
* subprocess execution variation module added what could be used
for external process invocation on SNMP request to Simulator
* SNMP Notification Originator variation module added what could be
used for sending SNMP TRAP/INFORM messages to SNMP entities
on SNMP requests to Simulator
- SNMP snapshots now being called 'data files' rather than 'device files'
which is a legacy term.
- Data files and variation modules are now installed into platform-specific
directories.
- Data files and variation modules are now looked up at several,
platform-specific, locations including $HOME/.snmpsim
- Simulator data files indices are now created and kept in a dedicated
temporary directory which is also configurable though snmpsimd command-line.
- Example data files simplified, more native and foreign snapshots added.
- Fix to snmprec.py not to record end-of-mib.
- Fix to py2exe settings of setup.py
Revision 0.1.6, released 30-01-2013
-----------------------------------
- Net-SNMP's .snmpwalk files created with the "snmpwalk -ObentU" command
can now be used by the Simulator directly.
- SimpleAgentPro's .sapwalk files support added to Simulator.
- Fixes to --start-oid & --stop-oid params to make the working again.
- Simulator reports supported device files types on startup.
- Shared device files now supported. Snapshots can now be indicated
as shared through a symbolic link. Managers can use different
credentials to access and modify the same set of Managed Objects.
Revision 0.1.5, released 23-08-2012
-----------------------------------
- Simulator device file selection by a combination of ContextName,
Transport ID and source address implemented.
- Rudimentary MIB write support added (snmpset now works). Still need to
support MIB-defined constraints.
- Fix to snmpsimd.py to ignore possibly missing .dbm file on failed
index rebuild.
- Fix to OID search code what used to always pick the first OID in file
while looking for EOL (Python3 only).
Revision 0.1.4, released 25-07-2012
-----------------------------------
- Simulator device file selection by a combination of Community,
Transport ID and source address implemented (for --v2c-arch mode).
- UDP/IPv6 and UNIX domain socket transports support added to
snmpsimd.py and snmprec.py tools.
- The snmpsimd.py and snmprec.py tools now support additional SNMPv3
authentication (SHA) and encryption (3DES, AES192, AES256) algorithms
provided by pysnmp.
- Simulator now supports binding to and listening at multiple local
endpoints. The --agent-address & --agent-port options are now obsolete.
- The snmprec.py tool Agent address specification syntax unified with that
of snmpsimd.py.
- Multiple --device-dir c/l options are now supported by snmpsimd.py.
- Some runtime diagnostics added to snmprec.py.
- The snmpsimd.py tool unconditionally rebuilds existing indices of
unknown format.
- Device files handling indexing made faster by not calling .tell().
That also required opening files in 'binary' mode to make sure offset
calculation will work correctly.
- Attempt to open DBM in "fast" and "unsync" modes when building indices
to speed-up index generation.
- Package meta information updated.
- Fix to snmprec.py to make SNMP debugging working again.
- Fix to snmprec.py to properly support non-default SNMP context name.
- Fix to infinite loop possibly occurring at OID search routine.
- Fix to DBM key type (string vs byte issue)
- Fix to mib2dev.py MIB path handling.
- Fix to index object to make "snmpwalk -c index" work again.
- Fix to index object registration in --v2c-arch mode.
- Fix to SNMPv2 exception objects translation into SNMPv1 PDU in the
--v2c-arch mode
Revision 0.1.3, released 12-11-2011
-----------------------------------
- Initial revision of the mib2dev.py tool.
- Some more MIB-originated device files added.
Revision 0.1.2, released 09-11-2011
-----------------------------------
- Some more py2k refactoring (some features did not work otherwise).
- Fix to values tags matching at snmpsimd.py (simulator did not work
otherwise).
- Fixes to sys.exc_info invocation.
Revision 0.1.1, released 06-11-2011
-----------------------------------
- Major overhawl for Python 2.4 -- 3.2 compatibility:
+ drop explicit long integer type use
+ map()/filter() replaced with list comprehension
+ apply() replaced with \*/\*\*args
+ dictionary operations made 2K/3K compatible
+ division operator made 2K/3K compatible
+ exception syntax made 2K/3K compatible
+ tuple function arguments resolved to scalars to become py3k compatible
Revision 0.0.10, released 31-12-2010
------------------------------------
- --agent-port handling bug fixed in snmprec.py
- --v3-arch command-line flag added to save on large number of
[expensive] addV1System() calls.
- setuptools dependencies improved
Revision 0.0.9, released 21-12-2010
-----------------------------------
- Simulator now builds a table of loaded device files in a
dedicated 'index' context.
- Use OS-specific file extension separator for better portability.
- Support .db extensions voluntarily added by gdbm on OS X.
- Fix to null-typed value read from .dump device file.
- Legacy SNMPv1/v2c community string generation policy dropped.
- SNMPv3 VACM initialization dropped altogether, as the specialized
SMI backend used by Simulator does not implement access control.
- Fix to support zero-length device files.
- Ignore value syntax errors in device files occured when responding.
- Optionally validate device file data while indexing.
- Allow forced device files re-indexing.
- Fix to broken IP address serialization code in recorder.
Revision 0.0.8, released 10-12-2010
-----------------------------------
- Initial public release.
snmpsim-0.4.5/setup.py 0000664 0063214 0063214 00000011162 13412164152 015122 0 ustar ietingof ietingof #!/usr/bin/env python
#
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
"""SNMP Agents simulator
SNMP Simulator is a tool that acts as multitude of SNMP Agents built
into real physical devices, from SNMP Manager's point of view.
Simulator builds and uses a database of physical devices' SNMP footprints
to respond like their original counterparts do.
"""
import sys
import os
import glob
classifiers = """\
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Intended Audience :: Telecommunications Industry
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 2.4
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Communications
Topic :: System :: Monitoring
Topic :: System :: Networking :: Monitoring
"""
def howto_install_setuptools():
print("""
Error: You need setuptools Python package!
It's very easy to install it, just type:
wget https://bootstrap.pypa.io/ez_setup.py
python ez_setup.py
Then you could make eggs from this package.
""")
if sys.version_info[:2] < (2, 4):
print("ERROR: this package requires Python 2.4 or later!")
sys.exit(1)
try:
from setuptools import setup
params = {
'install_requires': ['pysnmp>=4.4.3,<5.0.0'],
'zip_safe': False # this is due to data and variation dirs
}
except ImportError:
for arg in sys.argv:
if 'egg' in arg:
howto_install_setuptools()
sys.exit(1)
from distutils.core import setup
params = {}
if sys.version_info[:2] > (2, 4):
params['requires'] = ['pysnmp(>=4.4.3,<5.0.0)']
doclines = [x.strip() for x in (__doc__ or '').split('\n') if x]
params.update(
{'name': 'snmpsim',
'version': open(os.path.join('snmpsim', '__init__.py')).read().split('\'')[1],
'description': doclines[0],
'long_description': ' '.join(doclines[1:]),
'maintainer': 'Ilya Etingof ',
'author': 'Ilya Etingof',
'author_email': 'etingof@gmail.com',
'url': 'https://github.com/etingof/snmpsim',
'license': 'BSD',
'platforms': ['any'],
'classifiers': [x for x in classifiers.split('\n') if x],
'scripts': ['scripts/snmpsimd.py',
'scripts/snmprec.py',
'scripts/datafile.py',
'scripts/pcap2dev.py',
'scripts/mib2dev.py'],
'packages': ['snmpsim', 'snmpsim.grammar', 'snmpsim.record',
'snmpsim.record.search']}
)
# install stock variation modules as data_files
params['data_files'] = [
('snmpsim/' + 'variation', glob.glob(os.path.join('variation', '*.py')))
]
# install sample .snmprec files as data_files
for x in os.walk('data'):
params['data_files'].append(
('snmpsim/' + '/'.join(os.path.split(x[0])),
glob.glob(os.path.join(x[0], '*.snmprec')) + \
glob.glob(os.path.join(x[0], '*.snmpwalk')) + \
glob.glob(os.path.join(x[0], '*.sapwalk')))
)
if 'py2exe' in sys.argv:
import py2exe
# fix executables
params['console'] = params['scripts']
del params['scripts']
# pysnmp used by snmpsim dynamically loads some of its *.py files
params['options'] = {
'py2exe': {
'includes': [
'pysnmp.smi.mibs.*',
'pysnmp.smi.mibs.instances.*',
'pysnmp.entity.rfc3413.oneliner.*'
],
'bundle_files': 1,
'compressed': True
}
}
params['zipfile'] = None
del params['data_files'] # no need to store these in .exe
# additional modules used by snmpsimd but not seen by py2exe
for m in ('dbm', 'gdbm', 'dbhash', 'dumbdb',
'shelve', 'random', 'math', 'bisect',
'sqlite3', 'subprocess', 'redis'):
try:
__import__(m)
except ImportError:
continue
else:
params['options']['py2exe']['includes'].append(m)
print("!!! Make sure your pysnmp/pyasn1 packages are NOT .egg'ed!!!")
setup(**params)
snmpsim-0.4.5/scripts/ 0000775 0063214 0063214 00000000000 13412164240 015074 5 ustar ietingof ietingof snmpsim-0.4.5/scripts/datafile.py 0000664 0063214 0063214 00000021341 13412164152 017222 0 ustar ietingof ietingof #!/usr/bin/env python
#
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# SNMP Simulator data file management tool
#
import getopt
import sys
from pyasn1.type import univ
from pysnmp.smi import builder, rfc1902, view, compiler
from snmpsim.record.search.file import getRecord
from snmpsim.record import snmprec, dump, mvc, sap, walk
from snmpsim import error
# Defaults
verboseFlag = True
mibSources = []
defaultMibSources = ['http://mibs.snmplabs.com/asn1/@mib@']
sortRecords = ignoreBrokenRecords = deduplicateRecords = lostComments = False
startOID = stopOID = None
srcRecordType = dstRecordType = 'snmprec'
inputFiles = []
outputFile = sys.stdout
escapedStrings = False
if hasattr(outputFile, 'buffer'):
outputFile = outputFile.buffer
writtenCount = skippedCount = duplicateCount = brokenCount = variationCount = 0
class SnmprecRecord(snmprec.SnmprecRecord):
def evaluateValue(self, oid, tag, value, **context):
# Variation module reference
if ':' in tag:
context['backdoor']['textTag'] = tag
return oid, '', value
else:
return snmprec.SnmprecRecord.evaluateValue(self, oid, tag, value)
def formatValue(self, oid, value, **context):
if 'textTag' in context['backdoor']:
return self.formatOid(oid), context['backdoor']['textTag'], value
else:
return snmprec.SnmprecRecord.formatValue(self, oid, value, **context)
# data file types and parsers
recordsSet = {
dump.DumpRecord.ext: dump.DumpRecord(),
mvc.MvcRecord.ext: mvc.MvcRecord(),
sap.SapRecord.ext: sap.SapRecord(),
walk.WalkRecord.ext: walk.WalkRecord(),
SnmprecRecord.ext: SnmprecRecord()
}
helpMessage = """\
Usage: %s [--help]
[--version]
[--quiet]
[--sort-records]
[--ignore-broken-records]
[--deduplicate-records]
[--escaped-strings]
[--mib-source=]
[--start-object=]
[--stop-object=]
[--source-record-type=<%s>]
[--destination-record-type=<%s>]
[--input-file=]
[--output-file=]""" % (sys.argv[0],
'|'.join(recordsSet.keys()),
'|'.join(recordsSet.keys()))
try:
opts, params = getopt.getopt(sys.argv[1:], 'hv',
['help', 'version', 'quiet', 'sort-records',
'ignore-broken-records',
'deduplicate-records',
'escaped-strings',
'start-oid=', 'stop-oid=', 'start-object=',
'stop-object=',
'mib-source=', 'source-record-type=',
'destination-record-type=',
'input-file=', 'output-file=']
)
except Exception:
if verboseFlag:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if params:
if verboseFlag:
sys.stderr.write('ERROR: extra arguments supplied %s\r\n%s\r\n' % (params, helpMessage))
sys.exit(-1)
for opt in opts:
if opt[0] == '-h' or opt[0] == '--help':
sys.stderr.write("""\
Synopsis:
SNMP Simulator data files management and repair tool.
Documentation:
http://snmplabs.com/snmpsim/managing-data-files.html
%s
""" % helpMessage)
sys.exit(-1)
if opt[0] == '-v' or opt[0] == '--version':
import snmpsim
import pysmi
import pysnmp
import pyasn1
sys.stderr.write("""\
SNMP Simulator version %s, written by Ilya Etingof
Using foundation libraries: pysmi %s, pysnmp %s, pyasn1 %s.
Python interpreter: %s
Software documentation and support at http://snmplabs.com/snmpsim
%s
""" % (snmpsim.__version__,
hasattr(pysmi, '__version__') and pysmi.__version__ or 'unknown',
hasattr(pysnmp, '__version__') and pysnmp.__version__ or 'unknown',
hasattr(pyasn1, '__version__') and pyasn1.__version__ or 'unknown',
sys.version, helpMessage))
sys.exit(-1)
if opt[0] == '--quiet':
verboseFlag = False
if opt[0] == '--sort-records':
sortRecords = True
if opt[0] == '--ignore-broken-records':
ignoreBrokenRecords = True
if opt[0] == '--deduplicate-records':
deduplicateRecords = True
if opt[0] == '--escaped-strings':
escapedStrings = True
# obsolete begin
if opt[0] == '--start-oid':
startOID = univ.ObjectIdentifier(opt[1])
if opt[0] == '--stop-oid':
stopOID = univ.ObjectIdentifier(opt[1])
# obsolete end
if opt[0] == '--mib-source':
mibSources.append(opt[1])
if opt[0] == '--start-object':
startOID = rfc1902.ObjectIdentity(*opt[1].split('::', 1))
if opt[0] == '--stop-object':
stopOID = rfc1902.ObjectIdentity(*opt[1].split('::', 1),
**dict(last=True))
if opt[0] == '--source-record-type':
if opt[1] not in recordsSet:
if verboseFlag:
sys.stderr.write('ERROR: unknown record type <%s> (known types are %s)\r\n%s\r\n' % (opt[1], ', '.join(recordsSet.keys()), helpMessage))
sys.exit(-1)
srcRecordType = opt[1]
if opt[0] == '--destination-record-type':
if opt[1] not in recordsSet:
if verboseFlag:
sys.stderr.write('ERROR: unknown record type <%s> (known types are %s)\r\n%s\r\n' % (opt[1], ', '.join(recordsSet.keys()), helpMessage))
sys.exit(-1)
dstRecordType = opt[1]
if opt[0] == '--input-file':
inputFiles.append(open(opt[1], 'rb'))
if opt[0] == '--output-file':
outputFile = open(opt[1], 'wb')
if not inputFiles:
inputFiles.append(sys.stdin)
if isinstance(startOID, rfc1902.ObjectIdentity) or \
isinstance(stopOID, rfc1902.ObjectIdentity):
mibBuilder = builder.MibBuilder()
mibViewController = view.MibViewController(mibBuilder)
compiler.addMibCompiler(
mibBuilder, sources=mibSources or defaultMibSources
)
if isinstance(startOID, rfc1902.ObjectIdentity):
startOID.resolveWithMib(mibViewController)
if isinstance(stopOID, rfc1902.ObjectIdentity):
stopOID.resolveWithMib(mibViewController)
recordsList = []
for inputFile in inputFiles:
if verboseFlag:
sys.stderr.write('# Input file #%s, processing records from %s till %s\r\n' % (inputFiles.index(inputFile), startOID or 'the beginning', stopOID or 'the end'))
lineNo = 0
while True:
line, recLineNo, _ = getRecord(inputFile, lineNo)
if not line:
break
if recLineNo != lineNo + 1:
if verboseFlag:
sys.stderr.write('# Losing comment at lines %s..%s (input file #%s)\r\n' % (lineNo + 1, recLineNo - 1, inputFiles.index(inputFile)))
lineNo = recLineNo
lostComments += 1
backdoor = {}
try:
oid, value = recordsSet[srcRecordType].evaluate(line, backdoor=backdoor)
except error.SnmpsimError:
if ignoreBrokenRecords:
if verboseFlag:
sys.stderr.write('# Skipping broken record <%s>: %s\r\n' % (line, sys.exc_info()[1]))
brokenCount += 1
continue
else:
if verboseFlag:
sys.stderr.write('ERROR: broken record <%s>: %s\r\n' % (line, sys.exc_info()[1]))
sys.exit(-1)
if (startOID and startOID > oid or
stopOID and stopOID < oid):
skippedCount += 1
continue
recordsList.append((oid, value, backdoor))
if sortRecords:
recordsList.sort(key=lambda x: x[0])
uniqueIndices = set()
for record in recordsList:
if deduplicateRecords:
if record[0] in uniqueIndices:
if verboseFlag:
sys.stderr.write('# Skipping duplicate record <%s>\r\n' % record[0])
duplicateCount += 1
continue
else:
uniqueIndices.add(record[0])
try:
outputFile.write(
recordsSet[dstRecordType].format(
record[0], record[1], backdoor=record[2], nohex=escapedStrings
)
)
except:
sys.stderr.write('ERROR: record not written: %s\r\n' % sys.exc_info()[1])
break
writtenCount += 1
if record[2]:
variationCount += 1
if verboseFlag:
sys.stderr.write('# Records: written %s, filtered out %s, deduped %s, ignored %s, broken %s, variated %s\r\n' % (writtenCount, skippedCount, duplicateCount, lostComments, brokenCount, variationCount))
outputFile.flush()
outputFile.close()
snmpsim-0.4.5/scripts/snmpsimd.py 0000664 0063214 0063214 00000160542 13412164152 017312 0 ustar ietingof ietingof #!/usr/bin/env python
#
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# SNMP Agent Simulator
#
import os
import stat
import sys
import getopt
import traceback
if sys.version_info[0] < 3 and sys.version_info[1] < 5:
from md5 import md5
else:
from hashlib import md5
from pyasn1.type import univ
from pyasn1.codec.ber import encoder, decoder
from pyasn1.compat.octets import str2octs
from pyasn1.error import PyAsn1Error
from pysnmp.entity import engine, config
from pysnmp.entity.rfc3413 import cmdrsp, context
from pysnmp.carrier.asynsock.dgram import udp
try:
from pysnmp.carrier.asynsock.dgram import udp6
except ImportError:
udp6 = None
try:
from pysnmp.carrier.asynsock.dgram import unix
except ImportError:
unix = None
from pysnmp.carrier.asynsock.dispatch import AsynsockDispatcher
from pysnmp.smi import exval, indices
from pysnmp.smi.error import MibOperationError
from pysnmp.proto import rfc1902, rfc1905, api
from pysnmp import error
from pyasn1 import debug as pyasn1_debug
from pysnmp import debug as pysnmp_debug
from snmpsim.error import SnmpsimError, NoDataNotification
from snmpsim import confdir, log, daemon
from snmpsim.record import dump, mvc, sap, walk, snmprec
from snmpsim.record.search.file import searchRecordByOid, getRecord
from snmpsim.record.search.database import RecordIndex
# Settings
forceIndexBuild = False
validateData = False
maxVarBinds = 64
transportIdOffset = 0
v2cArch = False
v3Only = False
pidFile = '/var/run/snmpsim/snmpsimd.pid'
foregroundFlag = True
procUser = procGroup = None
variationModulesOptions = {}
variationModules = {}
authProtocols = {
'MD5': config.usmHMACMD5AuthProtocol,
'SHA': config.usmHMACSHAAuthProtocol,
'SHA224': config.usmHMAC128SHA224AuthProtocol,
'SHA256': config.usmHMAC192SHA256AuthProtocol,
'SHA384': config.usmHMAC256SHA384AuthProtocol,
'SHA512': config.usmHMAC384SHA512AuthProtocol,
'NONE': config.usmNoAuthProtocol
}
privProtocols = {
'DES': config.usmDESPrivProtocol,
'3DES': config.usm3DESEDEPrivProtocol,
'AES': config.usmAesCfb128Protocol,
'AES128': config.usmAesCfb128Protocol,
'AES192': config.usmAesCfb192Protocol,
'AES192BLMT': config.usmAesBlumenthalCfb192Protocol,
'AES256': config.usmAesCfb256Protocol,
'AES256BLMT': config.usmAesBlumenthalCfb256Protocol,
'NONE': config.usmNoPrivProtocol
}
# Transport endpoints collection
class TransportEndpointsBase:
def __init__(self):
self.__endpoint = None
def add(self, addr):
self.__endpoint = self._addEndpoint(addr)
return self
def _addEndpoint(self, addr):
raise NotImplementedError()
def __len__(self):
return len(self.__endpoint)
def __getitem__(self, i):
return self.__endpoint[i]
class IPv4TransportEndpoints(TransportEndpointsBase):
def _addEndpoint(self, addr):
f = lambda h, p=161: (h, int(p))
try:
h, p = f(*addr.split(':'))
except:
raise SnmpsimError('improper IPv4/UDP endpoint %s' % addr)
return udp.UdpTransport().openServerMode((h, p)), addr
class IPv6TransportEndpoints(TransportEndpointsBase):
def _addEndpoint(self, addr):
if not udp6:
raise SnmpsimError('This system does not support UDP/IP6')
if addr.find(']:') != -1 and addr[0] == '[':
h, p = addr.split(']:')
try:
h, p = h[1:], int(p)
except:
raise SnmpsimError('improper IPv6/UDP endpoint %s' % addr)
elif addr[0] == '[' and addr[-1] == ']':
h, p = addr[1:-1], 161
else:
h, p = addr, 161
return udp6.Udp6Transport().openServerMode((h, p)), addr
class UnixTransportEndpoints(TransportEndpointsBase):
def _addEndpoint(self, addr):
if not unix:
raise SnmpsimError('This system does not support UNIX domain sockets')
return unix.UnixTransport().openServerMode(addr), addr
# Extended snmprec record handler
class SnmprecRecord(snmprec.SnmprecRecord):
def evaluateValue(self, oid, tag, value, **context):
# Variation module reference
if ':' in tag:
modName, tag = tag[tag.index(':')+1:], tag[:tag.index(':')]
else:
modName = None
if modName:
if ('variationModules' in context and
modName in context['variationModules']):
if 'dataValidation' in context:
return oid, tag, univ.Null
else:
if context['setFlag']:
hexvalue = self.grammar.hexifyValue(context['origValue'])
if hexvalue is not None:
context['hexvalue'] = hexvalue
context['hextag'] = self.grammar.getTagByType(context['origValue']) + 'x'
# prepare agent and record contexts on first reference
(variationModule,
agentContexts,
recordContexts) = context['variationModules'][modName]
if context['dataFile'] not in agentContexts:
agentContexts[context['dataFile']] = {}
if context['dataFile'] not in recordContexts:
recordContexts[context['dataFile']] = {}
variationModule['agentContext'] = agentContexts[context['dataFile']]
recordContexts = recordContexts[context['dataFile']]
if oid not in recordContexts:
recordContexts[oid] = {}
variationModule['recordContext'] = recordContexts[oid]
# invoke variation module
oid, tag, value = variationModule['variate'](oid, tag, value, **context)
else:
raise SnmpsimError('Variation module "%s" referenced but not loaded\r\n' % modName)
if not modName:
if 'dataValidation' in context:
snmprec.SnmprecRecord.evaluateValue(
self, oid, tag, value, **context
)
if (not context['nextFlag'] and not context['exactMatch'] or
context['setFlag']):
return context['origOid'], tag, context['errorStatus']
if not hasattr(value, 'tagSet'): # not already a pyasn1 object
return snmprec.SnmprecRecord.evaluateValue(
self, oid, tag, value, **context
)
return oid, tag, value
def evaluate(self, line, **context):
oid, tag, value = self.grammar.parse(line)
oid = self.evaluateOid(oid)
if context.get('oidOnly'):
value = None
else:
try:
oid, tag, value = self.evaluateValue(oid, tag, value, **context)
except NoDataNotification:
raise
except MibOperationError:
raise
except PyAsn1Error:
raise SnmpsimError('value evaluation for %s = %r failed: %s\r\n' % (oid, value, sys.exc_info()[1]))
return oid, value
recordSet = {
dump.DumpRecord.ext: dump.DumpRecord(),
mvc.MvcRecord.ext: mvc.MvcRecord(),
sap.SapRecord.ext: sap.SapRecord(),
walk.WalkRecord.ext: walk.WalkRecord(),
SnmprecRecord.ext: SnmprecRecord()
}
class AbstractLayout:
layout = '?'
# Data text file and OID index
class DataFile(AbstractLayout):
layout = 'text'
openedQueue = []
maxQueueEntries = 31 # max number of open text and index files
def __init__(self, textFile, textParser):
self.__recordIndex = RecordIndex(textFile, textParser)
self.__textParser = textParser
self.__textFile = os.path.abspath(textFile)
def indexText(self, forceIndexBuild=False):
self.__recordIndex.create(forceIndexBuild, validateData)
return self
def close(self):
self.__recordIndex.close()
def getHandles(self):
if not self.__recordIndex.isOpen():
if len(DataFile.openedQueue) > self.maxQueueEntries:
log.msg('Closing %s' % self)
DataFile.openedQueue[0].close()
del DataFile.openedQueue[0]
DataFile.openedQueue.append(self)
log.msg('Opening %s' % self)
return self.__recordIndex.getHandles()
def processVarBinds(self, varBinds, **context):
rspVarBinds = []
if context.get('nextFlag'):
errorStatus = exval.endOfMib
else:
errorStatus = exval.noSuchInstance
try:
text, db = self.getHandles()
except SnmpsimError:
log.msg('Problem with data file or its index: %s' % sys.exc_info()[1])
return [(vb[0], errorStatus) for vb in varBinds]
varsRemaining = varsTotal = len(varBinds)
log.msg('Request var-binds: %s, flags: %s, %s' % (', '.join(['%s=<%s>' % (vb[0], vb[1].prettyPrint()) for vb in varBinds]), context.get('nextFlag') and 'NEXT' or 'EXACT', context.get('setFlag') and 'SET' or 'GET'))
for oid, val in varBinds:
textOid = str(univ.OctetString('.'.join(['%s' % x for x in oid])))
try:
line = self.__recordIndex.lookup(str(univ.OctetString('.'.join(['%s' % x for x in oid]))))
except KeyError:
offset = searchRecordByOid(oid, text, self.__textParser)
subtreeFlag = exactMatch = False
else:
offset, subtreeFlag, prevOffset = line.split(str2octs(','), 2)
subtreeFlag, exactMatch = int(subtreeFlag), True
offset = int(offset)
text.seek(offset)
varsRemaining -= 1
line, _, _ = getRecord(text) # matched line
while True:
if exactMatch:
if context.get('nextFlag') and not subtreeFlag:
_nextLine, _, _ = getRecord(text) # next line
if _nextLine:
_nextOid, _ = self.__textParser.evaluate(_nextLine, oidOnly=True)
try:
_, subtreeFlag, _ = self.__recordIndex.lookup(str(_nextOid)).split(str2octs(','), 2)
except KeyError:
log.msg('data error for %s at %s, index broken?' % (self, _nextOid))
line = '' # fatal error
else:
subtreeFlag = int(subtreeFlag)
line = _nextLine
else:
line = _nextLine
else: # search function above always rounds up to the next OID
if line:
_oid, _ = self.__textParser.evaluate(
line, oidOnly=True
)
else: # eom
_oid = 'last'
try:
_, _, _prevOffset = self.__recordIndex.lookup(str(_oid)).split(str2octs(','), 2)
except KeyError:
log.msg('data error for %s at %s, index broken?' % (self, _oid))
line = '' # fatal error
else:
_prevOffset = int(_prevOffset)
# previous line serves a subtree?
if _prevOffset >= 0:
text.seek(_prevOffset)
_prevLine, _, _ = getRecord(text)
_prevOid, _ = self.__textParser.evaluate(
_prevLine, oidOnly=True
)
if _prevOid.isPrefixOf(oid):
# use previous line to the matched one
line = _prevLine
subtreeFlag = True
if not line:
_oid = oid
_val = errorStatus
break
callContext = context.copy()
callContext.update(
(),
origOid=oid,
origValue=val,
dataFile=self.__textFile,
subtreeFlag=subtreeFlag,
exactMatch=exactMatch,
errorStatus=errorStatus,
varsTotal=varsTotal,
varsRemaining=varsRemaining,
variationModules=variationModules
)
try:
_oid, _val = self.__textParser.evaluate(line, **callContext)
if _val is exval.endOfMib:
exactMatch = True
subtreeFlag = False
continue
except NoDataNotification:
raise
except MibOperationError:
raise
except Exception:
_oid = oid
_val = errorStatus
log.msg('data error at %s for %s: %s' % (self, textOid, sys.exc_info()[1]))
break
rspVarBinds.append((_oid, _val))
log.msg('Response var-binds: %s' % (', '.join(['%s=<%s>' % (vb[0], vb[1].prettyPrint()) for vb in rspVarBinds])))
return rspVarBinds
def __str__(self):
return '%s controller' % self.__textFile
# Collect data files
def getDataFiles(tgtDir, topLen=None):
if topLen is None:
topLen = len(tgtDir.split(os.path.sep))
dirContent = []
for dFile in os.listdir(tgtDir):
fullPath = tgtDir + os.path.sep + dFile
inode = os.lstat(fullPath)
if stat.S_ISLNK(inode.st_mode):
relPath = fullPath.split(os.path.sep)[topLen:]
fullPath = os.readlink(fullPath)
if not os.path.isabs(fullPath):
fullPath = tgtDir + os.path.sep + fullPath
inode = os.stat(fullPath)
else:
relPath = fullPath.split(os.path.sep)[topLen:]
if stat.S_ISDIR(inode.st_mode):
dirContent = dirContent + getDataFiles(fullPath, topLen)
continue
if not stat.S_ISREG(inode.st_mode):
continue
dExt = os.path.splitext(dFile)[1][1:]
if dExt not in recordSet:
continue
dirContent.append(
(fullPath,
recordSet[dExt],
os.path.splitext(os.path.join(*relPath))[0].replace(os.path.sep, '/'))
)
return dirContent
# Lightweignt MIB instrumentation (API-compatible with pysnmp's)
class MibInstrumController:
def __init__(self, dataFile):
self.__dataFile = dataFile
def __str__(self):
return str(self.__dataFile)
def __getCallContext(self, acInfo, nextFlag=False, setFlag=False):
if acInfo is None:
return {'nextFlag': nextFlag,
'setFlag': setFlag}
acFun, snmpEngine = acInfo # we injected snmpEngine object earlier
# this API is first introduced in pysnmp 4.2.6
execCtx = snmpEngine.observer.getExecutionContext(
'rfc3412.receiveMessage:request'
)
(transportDomain,
transportAddress,
securityModel,
securityName,
securityLevel,
contextName,
pduType) = (execCtx['transportDomain'],
execCtx['transportAddress'],
execCtx['securityModel'],
execCtx['securityName'],
execCtx['securityLevel'],
execCtx['contextName'],
execCtx['pdu'].getTagSet())
log.msg('SNMP EngineID %s, transportDomain %s, transportAddress %s, securityModel %s, securityName %s, securityLevel %s' % (hasattr(snmpEngine, 'snmpEngineID') and snmpEngine.snmpEngineID.prettyPrint() or '', transportDomain, transportAddress, securityModel, securityName, securityLevel))
return {'snmpEngine': snmpEngine,
'transportDomain': transportDomain,
'transportAddress': transportAddress,
'securityModel': securityModel,
'securityName': securityName,
'securityLevel': securityLevel,
'contextName': contextName,
'nextFlag': nextFlag,
'setFlag': setFlag}
def readVars(self, varBinds, acInfo=None):
return self.__dataFile.processVarBinds(
varBinds, **self.__getCallContext(acInfo, False)
)
def readNextVars(self, varBinds, acInfo=None):
return self.__dataFile.processVarBinds(
varBinds, **self.__getCallContext(acInfo, True)
)
def writeVars(self, varBinds, acInfo=None):
return self.__dataFile.processVarBinds(
varBinds, **self.__getCallContext(acInfo, False, True)
)
# Data files index as a MIB instrumentaion at a dedicated SNMP context
class DataIndexInstrumController:
indexSubOid = (1,)
def __init__(self, baseOid=(1, 3, 6, 1, 4, 1, 20408, 999)):
self.__db = indices.OidOrderedDict()
self.__indexOid = baseOid + self.indexSubOid
self.__idx = 1
def __str__(self):
return ' controller'
def readVars(self, varBinds, acInfo=None):
return [(vb[0], self.__db.get(vb[0], exval.noSuchInstance)) for vb in varBinds]
def __getNextVal(self, key, default):
try:
key = self.__db.nextKey(key)
except KeyError:
return key, default
else:
return key, self.__db[key]
def readNextVars(self, varBinds, acInfo=None):
return [self.__getNextVal(vb[0], exval.endOfMib) for vb in varBinds]
def writeVars(self, varBinds, acInfo=None):
return [(vb[0], exval.noSuchInstance) for vb in varBinds]
def addDataFile(self, *args):
for idx in range(len(args)):
self.__db[
self.__indexOid + (idx+1, self.__idx)
] = rfc1902.OctetString(args[idx])
self.__idx += 1
mibInstrumControllerSet = {
DataFile.layout: MibInstrumController
}
# Suggest variations of context name based on request data
def probeContext(transportDomain, transportAddress, contextName):
candidate = [
contextName, '.'.join([str(x) for x in transportDomain])
]
if transportDomain[:len(udp.domainName)] == udp.domainName:
candidate.append(transportAddress[0])
elif udp6 and transportDomain[:len(udp6.domainName)] == udp6.domainName:
candidate.append(
str(transportAddress[0]).replace(':', '_')
)
elif unix and transportDomain[:len(unix.domainName)] == unix.domainName:
candidate.append(transportAddress)
candidate = [str(x) for x in candidate if x]
while candidate:
yield rfc1902.OctetString(os.path.normpath(os.path.sep.join(candidate)).replace(os.path.sep, '/')).asOctets()
del candidate[-1]
# main script body starts here
helpMessage = """\
Usage: %s [--help]
[--version ]
[--debug=<%s>]
[--debug-asn1=<%s>]
[--daemonize]
[--process-user=] [--process-group=]
[--pid-file=]
[--logging-method=<%s[:args>]>]
[--cache-dir=]
[--variation-modules-dir=]
[--variation-module-options=]
[--force-index-rebuild]
[--validate-data]
[--args-from-file=]
[--transport-id-offset=]
[--v2c-arch]
[--v3-only]
[--v3-engine-id=]
[--v3-context-engine-id=]
[--v3-user=]
[--v3-auth-key=]
[--v3-auth-proto=<%s>]
[--v3-priv-key=]
[--v3-priv-proto=<%s>]
[--data-dir=]
[--max-varbinds=]
[--agent-udpv4-endpoint=]
[--agent-udpv6-endpoint=<[X:X:..X]:NNNNN>]
[--agent-unix-endpoint=]""" % (
sys.argv[0],
'|'.join([x for x in getattr(pysnmp_debug, 'FLAG_MAP', getattr(pysnmp_debug, 'flagMap', ()))
if x != 'mibview']),
'|'.join([x for x in getattr(pyasn1_debug, 'FLAG_MAP', getattr(pyasn1_debug, 'flagMap', ()))]),
'|'.join(log.gMap),
'|'.join(sorted([x for x in authProtocols if x != 'NONE'])),
'|'.join(sorted([x for x in privProtocols if x != 'NONE']))
)
try:
opts, params = getopt.getopt(sys.argv[1:], 'hv', [
'help', 'version', 'debug=', 'debug-snmp=', 'debug-asn1=', 'daemonize',
'process-user=', 'process-group=', 'pid-file=', 'logging-method=',
'device-dir=', 'cache-dir=', 'variation-modules-dir=',
'force-index-rebuild', 'validate-device-data', 'validate-data',
'v2c-arch', 'v3-only', 'transport-id-offset=',
'variation-module-options=',
'args-from-file=',
# this option starts new SNMPv3 engine configuration
'v3-engine-id=',
'v3-context-engine-id=',
'v3-user=',
'v3-auth-key=', 'v3-auth-proto=',
'v3-priv-key=', 'v3-priv-proto=',
'data-dir=',
'max-varbinds=',
'agent-udpv4-endpoint=', 'agent-udpv6-endpoint=', 'agent-unix-endpoint='
])
except Exception:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if params:
sys.stderr.write('ERROR: extra arguments supplied %s\r\n%s\r\n' % (params, helpMessage))
sys.exit(-1)
v3Args = []
for opt in opts:
if opt[0] == '-h' or opt[0] == '--help':
sys.stderr.write("""\
Synopsis:
SNMP Agents Simulation tool. Responds to SNMP requests, variate responses
based on transport addresses, SNMP community name or SNMPv3 context name.
Can implement highly complex behavior through variation modules.
Documentation:
http://snmplabs.com/snmpsim/simulating-agents.html
%s
""" % helpMessage)
sys.exit(-1)
if opt[0] == '-v' or opt[0] == '--version':
import snmpsim
import pysnmp
import pyasn1
sys.stderr.write("""\
SNMP Simulator version %s, written by Ilya Etingof
Using foundation libraries: pysnmp %s, pyasn1 %s.
Python interpreter: %s
Software documentation and support at http://snmplabs.com/snmpsim
%s
""" % (snmpsim.__version__, hasattr(pysnmp, '__version__') and pysnmp.__version__ or 'unknown', hasattr(pyasn1, '__version__') and pyasn1.__version__ or 'unknown', sys.version, helpMessage))
sys.exit(-1)
elif opt[0] in ('--debug', '--debug-snmp'):
pysnmp_debug.setLogger(pysnmp_debug.Debug(*opt[1].split(','), **dict(loggerName='snmpsimd.pysnmp')))
elif opt[0] == '--debug-asn1':
pyasn1_debug.setLogger(pyasn1_debug.Debug(*opt[1].split(','), **dict(loggerName='snmpsimd.pyasn1')))
elif opt[0] == '--daemonize':
foregroundFlag = False
elif opt[0] == '--process-user':
procUser = opt[1]
elif opt[0] == '--process-group':
procGroup = opt[1]
elif opt[0] == '--pid-file':
pidFile = opt[1]
elif opt[0] == '--logging-method':
try:
log.setLogger('snmpsimd', *opt[1].split(':'), **dict(force=True))
except SnmpsimError:
sys.stderr.write('%s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
elif opt[0] in ('--device-dir', '--data-dir'):
if [x for x in v3Args if x[0] in ('--v3-engine-id',
'--v3-context-engine-id')]:
v3Args.append(opt)
else:
confdir.data.insert(0, opt[1])
elif opt[0] == '--cache-dir':
confdir.cache = opt[1]
elif opt[0] == '--variation-modules-dir':
confdir.variation.insert(0, opt[1])
elif opt[0] == '--variation-module-options':
args = opt[1].split(':', 1)
try:
modName, args = args[0], args[1]
except:
sys.stderr.write('ERROR: improper variation module options: %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
if '=' in modName:
modName, alias = modName.split('=', 1)
else:
alias = os.path.splitext(os.path.basename(modName))[0]
if modName not in variationModulesOptions:
variationModulesOptions[modName] = []
variationModulesOptions[modName].append((alias, args))
elif opt[0] == '--force-index-rebuild':
forceIndexBuild = True
elif opt[0] in ('--validate-device-data', '--validate-data'):
validateData = True
elif opt[0] == '--v2c-arch':
v2cArch = True
elif opt[0] == '--v3-only':
v3Only = True
elif opt[0] == '--transport-id-offset':
try:
transportIdOffset = max(0, int(opt[1]))
except:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
# processing of the following args is postponed till SNMP engine startup
elif opt[0] in ('--agent-udpv4-endpoint',
'--agent-udpv6-endpoint',
'--agent-unix-endpoint'):
v3Args.append(opt)
elif opt[0] in ('--agent-udpv4-endpoints-list',
'--agent-udpv6-endpoints-list',
'--agent-unix-endpoints-list'):
sys.stderr.write('ERROR: use --args-from-file= option to list many endpoints\r\n%s\r\n' % helpMessage)
sys.exit(-1)
elif opt[0] in ('--v3-engine-id', '--v3-context-engine-id',
'--v3-user', '--v3-auth-key', '--v3-auth-proto',
'--v3-priv-key', '--v3-priv-proto'):
v3Args.append(opt)
elif opt[0] == '--max-varbinds':
try:
if '--v3-engine-id' in [x[0] for x in v3Args]:
v3Args.append((opt[0], max(1, int(opt[1]))))
else:
maxVarBinds = max(1, int(opt[1]))
except:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--args-from-file':
try:
v3Args.extend(
[x.split('=', 1) for x in open(opt[1]).read().split()]
)
except:
sys.stderr.write('ERROR: file %s opening failure: %s\r\n%s\r\n' % (opt[1], sys.exc_info()[1], helpMessage))
sys.exit(-1)
if v2cArch and (v3Only or [x for x in v3Args if x[0][:4] == '--v3']):
sys.stderr.write('ERROR: either of --v2c-arch or --v3-* options should be used\r\n%s\r\n' % helpMessage)
sys.exit(-1)
for opt in tuple(v3Args):
if opt[0] == '--agent-udpv4-endpoint':
try:
v3Args.append((opt[0], IPv4TransportEndpoints().add(opt[1])))
except:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--agent-udpv6-endpoint':
try:
v3Args.append((opt[0], IPv6TransportEndpoints().add(opt[1])))
except:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--agent-unix-endpoint':
try:
v3Args.append((opt[0], UnixTransportEndpoints().add(opt[1])))
except:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
else:
v3Args.append(opt)
if v3Args[:len(v3Args)//2] == v3Args[len(v3Args)//2:]:
sys.stderr.write('ERROR: agent endpoint address(es) not specified\r\n%s\r\n' % helpMessage)
sys.exit(-1)
else:
v3Args = v3Args[len(v3Args)//2:]
log.setLogger('snmpsimd', 'stderr')
try:
daemon.dropPrivileges(procUser, procGroup)
except:
sys.stderr.write('ERROR: cant drop priveleges: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if not foregroundFlag:
try:
daemon.daemonize(pidFile)
except:
sys.stderr.write('ERROR: cant daemonize process: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
# hook up variation modules
for variationModulesDir in confdir.variation:
log.msg('Scanning "%s" directory for variation modules...' % variationModulesDir)
if not os.path.exists(variationModulesDir):
log.msg('Directory "%s" does not exist' % variationModulesDir)
continue
for dFile in os.listdir(variationModulesDir):
if dFile[-3:] != '.py':
continue
_toLoad = []
modName = os.path.splitext(os.path.basename(dFile))[0]
if modName in variationModulesOptions:
while variationModulesOptions[modName]:
alias, args = variationModulesOptions[modName].pop()
_toLoad.append((alias, args))
del variationModulesOptions[modName]
else:
_toLoad.append((modName, ''))
mod = os.path.abspath(variationModulesDir + os.path.sep + dFile)
for alias, args in _toLoad:
if alias in variationModules:
log.msg('WARNING: ignoring duplicate variation module "%s" at "%s"' % (alias, mod))
continue
ctx = {
'path': mod,
'alias': alias,
'args': args,
'moduleContext': {}
}
try:
if sys.version_info[0] > 2:
exec(compile(open(mod).read(), mod, 'exec'), ctx)
else:
execfile(mod, ctx)
except Exception:
log.msg('Variation module "%s" execution failure: %s' % (mod, sys.exc_info()[1]))
sys.exit(-1)
else:
# moduleContext, agentContexts, recordContexts
variationModules[alias] = ctx, {}, {}
log.msg('A total of %s modules found in %s' % (len(variationModules), variationModulesDir))
if variationModulesOptions:
log.msg('WARNING: unused options for variation modules: %s' % ', '.join(variationModulesOptions.keys()))
if not os.path.exists(confdir.cache):
try:
os.makedirs(confdir.cache)
except OSError:
log.msg('ERROR: failed to create cache directory "%s": %s' % (confdir.cache, sys.exc_info()[1]))
sys.exit(-1)
else:
log.msg('Cache directory "%s" created' % confdir.cache)
if variationModules:
log.msg('Initializing variation modules...')
for name, modulesContexts in variationModules.items():
body = modulesContexts[0]
for x in ('init', 'variate', 'shutdown'):
if x not in body:
log.msg('ERROR: missing "%s" handler at variation module "%s"' % (x, name))
sys.exit(-1)
try:
body['init'](options=body['args'], mode='variating')
except Exception:
log.msg('Variation module "%s" from "%s" load FAILED: %s' % (body['alias'], body['path'],
sys.exc_info()[1]))
else:
log.msg('Variation module "%s" from "%s" loaded OK' % (body['alias'], body['path']))
# Build pysnmp Managed Objects base from data files information
def configureManagedObjects(dataDirs, dataIndexInstrumController,
snmpEngine=None, snmpContext=None):
_mibInstrums = {}
_dataFiles = {}
for dataDir in dataDirs:
log.msg('Scanning "%s" directory for %s data files...' % (dataDir, ','.join([' *%s%s' % (os.path.extsep, x.ext) for x in recordSet.values()])))
if not os.path.exists(dataDir):
log.msg('Directory "%s" does not exist' % dataDir)
continue
log.msg.incIdent()
for fullPath, textParser, communityName in getDataFiles(dataDir):
if communityName in _dataFiles:
log.msg('WARNING: ignoring duplicate Community/ContextName "%s" for data file %s (%s already loaded)' % (communityName, fullPath, _dataFiles[communityName]))
continue
elif fullPath in _mibInstrums:
mibInstrum = _mibInstrums[fullPath]
log.msg('Configuring *shared* %s' % (mibInstrum,))
else:
dataFile = DataFile(fullPath, textParser).indexText(forceIndexBuild)
mibInstrum = mibInstrumControllerSet[dataFile.layout](dataFile)
_mibInstrums[fullPath] = mibInstrum
_dataFiles[communityName] = fullPath
log.msg('Configuring %s' % (mibInstrum,))
log.msg('SNMPv1/2c community name: %s' % (communityName,))
if v2cArch:
contexts[univ.OctetString(communityName)] = mibInstrum
dataIndexInstrumController.addDataFile(
fullPath, communityName
)
else:
agentName = contextName = md5(univ.OctetString(communityName).asOctets()).hexdigest()
if not v3Only:
# snmpCommunityTable::snmpCommunityIndex can't be > 32
config.addV1System(
snmpEngine, agentName, communityName, contextName=contextName
)
snmpContext.registerContextName(contextName, mibInstrum)
if len(communityName) <= 32:
snmpContext.registerContextName(communityName, mibInstrum)
dataIndexInstrumController.addDataFile(
fullPath, communityName, contextName
)
log.msg('SNMPv3 Context Name: %s%s' % (contextName, len(communityName) <= 32 and ' or %s' % communityName or ''))
log.msg.decIdent()
del _mibInstrums
del _dataFiles
if v2cArch:
def getBulkHandler(reqVarBinds, nonRepeaters, maxRepetitions, readNextVars):
N = min(int(nonRepeaters), len(reqVarBinds))
M = int(maxRepetitions)
R = max(len(reqVarBinds)-N, 0)
if R:
M = min(M, maxVarBinds/R)
if N:
rspVarBinds = readNextVars(reqVarBinds[:N])
else:
rspVarBinds = []
varBinds = reqVarBinds[-R:]
while M and R:
rspVarBinds.extend(
readNextVars(varBinds)
)
varBinds = rspVarBinds[-R:]
M -= 1
return rspVarBinds
def commandResponderCbFun(transportDispatcher, transportDomain,
transportAddress, wholeMsg):
while wholeMsg:
msgVer = api.decodeMessageVersion(wholeMsg)
if msgVer in api.protoModules:
pMod = api.protoModules[msgVer]
else:
log.msg('Unsupported SNMP version %s' % (msgVer,))
return
reqMsg, wholeMsg = decoder.decode(
wholeMsg, asn1Spec=pMod.Message(),
)
communityName = reqMsg.getComponentByPosition(1)
for candidate in probeContext(transportDomain, transportAddress, communityName):
if candidate in contexts:
log.msg('Using %s selected by candidate %s; transport ID %s, source address %s, community name "%s"' % (contexts[candidate], candidate, univ.ObjectIdentifier(transportDomain), transportAddress[0], communityName))
communityName = candidate
break
else:
log.msg('No data file selected for transport ID %s, source address %s, community name "%s"' % (univ.ObjectIdentifier(transportDomain), transportAddress[0], communityName))
return wholeMsg
rspMsg = pMod.apiMessage.getResponse(reqMsg)
rspPDU = pMod.apiMessage.getPDU(rspMsg)
reqPDU = pMod.apiMessage.getPDU(reqMsg)
if reqPDU.isSameTypeWith(pMod.GetRequestPDU()):
backendFun = contexts[communityName].readVars
elif reqPDU.isSameTypeWith(pMod.SetRequestPDU()):
backendFun = contexts[communityName].writeVars
elif reqPDU.isSameTypeWith(pMod.GetNextRequestPDU()):
backendFun = contexts[communityName].readNextVars
elif (hasattr(pMod, 'GetBulkRequestPDU') and
reqPDU.isSameTypeWith(pMod.GetBulkRequestPDU())):
if not msgVer:
log.msg('GETBULK over SNMPv1 from %s:%s' % (transportDomain, transportAddress))
return wholeMsg
def backendFun(varBinds):
return getBulkHandler(
varBinds, pMod.apiBulkPDU.getNonRepeaters(reqPDU),
pMod.apiBulkPDU.getMaxRepetitions(reqPDU),
contexts[communityName].readNextVars
)
else:
log.msg('Unsupported PDU type %s from %s:%s' % (reqPDU.__class__.__name__, transportDomain, transportAddress))
return wholeMsg
try:
varBinds = backendFun(
pMod.apiPDU.getVarBinds(reqPDU)
)
except NoDataNotification:
return wholeMsg
except Exception:
log.msg('Ignoring SNMP engine failure: %s' % sys.exc_info()[1])
# Poor man's v2c->v1 translation
errorMap = {
rfc1902.Counter64.tagSet: 5,
rfc1905.NoSuchObject.tagSet: 2,
rfc1905.NoSuchInstance.tagSet: 2,
rfc1905.EndOfMibView.tagSet: 2
}
if not msgVer:
for idx in range(len(varBinds)):
oid, val = varBinds[idx]
if val.tagSet in errorMap:
varBinds = pMod.apiPDU.getVarBinds(reqPDU)
pMod.apiPDU.setErrorStatus(rspPDU, errorMap[val.tagSet])
pMod.apiPDU.setErrorIndex(rspPDU, idx + 1)
break
pMod.apiPDU.setVarBinds(rspPDU, varBinds)
transportDispatcher.sendMessage(
encoder.encode(rspMsg), transportDomain, transportAddress
)
return wholeMsg
else: # v3arch
def probeHashContext(self, snmpEngine, stateReference, contextName):
# this API is first introduced in pysnmp 4.2.6
execCtx = snmpEngine.observer.getExecutionContext('rfc3412.receiveMessage:request')
transportDomain, transportAddress = (
execCtx['transportDomain'], execCtx['transportAddress']
)
for candidate in probeContext(transportDomain, transportAddress, contextName):
if len(candidate) > 32:
probedContextName = md5(candidate).hexdigest()
else:
probedContextName = candidate
try:
mibInstrum = self.snmpContext.getMibInstrum(probedContextName)
except error.PySnmpError:
pass
else:
log.msg('Using %s selected by candidate %s; transport ID %s, source address %s, context name "%s"' % (mibInstrum, candidate, univ.ObjectIdentifier(transportDomain), transportAddress[0], probedContextName))
contextName = probedContextName
break
else:
mibInstrum = self.snmpContext.getMibInstrum(contextName)
log.msg('Using %s selected by contextName "%s", transport ID %s, source address %s' % (mibInstrum, contextName, univ.ObjectIdentifier(transportDomain), transportAddress[0]))
if not isinstance(mibInstrum, (MibInstrumController, DataIndexInstrumController)):
log.msg('Warning: LCD access denied (contextName does not match any data file)')
raise NoDataNotification()
return contextName
class GetCommandResponder(cmdrsp.GetCommandResponder):
def handleMgmtOperation(self, snmpEngine, stateReference, contextName, PDU, acInfo):
try:
cmdrsp.GetCommandResponder.handleMgmtOperation(
self, snmpEngine, stateReference,
probeHashContext(
self, snmpEngine, stateReference, contextName
),
PDU, (None, snmpEngine) # custom acInfo
)
except NoDataNotification:
self.releaseStateInformation(stateReference)
class SetCommandResponder(cmdrsp.SetCommandResponder):
def handleMgmtOperation(self, snmpEngine, stateReference, contextName, PDU, acInfo):
try:
cmdrsp.SetCommandResponder.handleMgmtOperation(
self, snmpEngine, stateReference,
probeHashContext(
self, snmpEngine, stateReference, contextName
),
PDU, (None, snmpEngine) # custom acInfo
)
except NoDataNotification:
self.releaseStateInformation(stateReference)
class NextCommandResponder(cmdrsp.NextCommandResponder):
def handleMgmtOperation(self, snmpEngine, stateReference, contextName, PDU, acInfo):
try:
cmdrsp.NextCommandResponder.handleMgmtOperation(
self, snmpEngine, stateReference,
probeHashContext(
self, snmpEngine, stateReference, contextName
),
PDU, (None, snmpEngine) # custom acInfo
)
except NoDataNotification:
self.releaseStateInformation(stateReference)
class BulkCommandResponder(cmdrsp.BulkCommandResponder):
def handleMgmtOperation(self, snmpEngine, stateReference, contextName, PDU, acInfo):
try:
cmdrsp.BulkCommandResponder.handleMgmtOperation(
self, snmpEngine, stateReference,
probeHashContext(
self, snmpEngine, stateReference, contextName
),
PDU, (None, snmpEngine) # custom acInfo
)
except NoDataNotification:
self.releaseStateInformation(stateReference)
# Start configuring SNMP engine(s)
transportDispatcher = AsynsockDispatcher()
if v2cArch:
# Configure access to data index
dataIndexInstrumController = DataIndexInstrumController()
contexts = {univ.OctetString('index'): dataIndexInstrumController}
configureManagedObjects(confdir.data, dataIndexInstrumController)
contexts['index'] = dataIndexInstrumController
agentUDPv4Endpoints = []
agentUDPv6Endpoints = []
agentUnixEndpoints = []
for opt in v3Args:
if opt[0] == '--agent-udpv4-endpoint':
agentUDPv4Endpoints.append(opt[1])
elif opt[0] == '--agent-udpv6-endpoint':
agentUDPv6Endpoints.append(opt[1])
elif opt[0] == '--agent-unix-endpoint':
agentUnixEndpoints.append(opt[1])
if (not agentUDPv4Endpoints and
not agentUDPv6Endpoints and
not agentUnixEndpoints):
log.msg('ERROR: agent endpoint address(es) not specified')
sys.exit(-1)
log.msg('Maximum number of variable bindings in SNMP response: %s' % maxVarBinds)
# Configure socket server
transportIndex = transportIdOffset
for agentUDPv4Endpoint in agentUDPv4Endpoints:
transportDomain = udp.domainName + (transportIndex,)
transportIndex += 1
transportDispatcher.registerTransport(
transportDomain, agentUDPv4Endpoint[0]
)
log.msg('Listening at UDP/IPv4 endpoint %s, transport ID %s' % (agentUDPv4Endpoint[1], '.'.join([str(x) for x in transportDomain])))
transportIndex = transportIdOffset
for agentUDPv6Endpoint in agentUDPv6Endpoints:
transportDomain = udp6.domainName + (transportIndex,)
transportIndex += 1
transportDispatcher.registerTransport(
transportDomain, agentUDPv4Endpoint[0]
)
log.msg('Listening at UDP/IPv6 endpoint %s, transport ID %s' % (agentUDPv4Endpoint[1], '.'.join([str(x) for x in transportDomain])))
transportIndex = transportIdOffset
for agentUnixEndpoint in agentUnixEndpoints:
transportDomain = unix.domainName + (transportIndex,)
transportIndex += 1
transportDispatcher.registerTransport(
transportDomain, agentUnixEndpoint[0]
)
log.msg('Listening at UNIX domain socket endpoint %s, transport ID %s' % (agentUnixEndpoint[1], '.'.join([str(x) for x in transportDomain])))
transportDispatcher.registerRecvCbFun(commandResponderCbFun)
else: # v3 mode
if hasattr(transportDispatcher, 'registerRoutingCbFun'):
transportDispatcher.registerRoutingCbFun(lambda td, t, d: td)
else:
log.msg('WARNING: upgrade pysnmp to 4.2.5 or later get multi-engine ID feature working!')
if v3Args and v3Args[0][0] != '--v3-engine-id':
v3Args.insert(0, ('--v3-engine-id', 'auto'))
v3Args.append(('end-of-options', ''))
def registerTransportDispatcher(snmpEngine, transportDispatcher,
transportDomain):
if hasattr(transportDispatcher, 'registerRoutingCbFun'):
snmpEngine.registerTransportDispatcher(
transportDispatcher, transportDomain
)
else:
try:
snmpEngine.registerTransportDispatcher(
transportDispatcher
)
except error.PySnmpError:
log.msg('WARNING: upgrade pysnmp to 4.2.5 or later get multi-engine ID feature working!')
raise
snmpEngine = None
transportIndex = {
'udpv4': transportIdOffset,
'udpv6': transportIdOffset,
'unix': transportIdOffset
}
for opt in v3Args:
if opt[0] in ('--v3-engine-id', 'end-of-options'):
if snmpEngine:
log.msg('--- SNMP Engine configuration')
log.msg('SNMPv3 EngineID: %s' % (hasattr(snmpEngine, 'snmpEngineID') and snmpEngine.snmpEngineID.prettyPrint() or '',))
if not v3ContextEngineIds:
v3ContextEngineIds.append((None, []))
log.msg.incIdent()
log.msg('--- Data directories configuration')
for v3ContextEngineId, ctxDataDirs in v3ContextEngineIds:
snmpContext = context.SnmpContext(
snmpEngine, v3ContextEngineId
)
log.msg('SNMPv3 Context Engine ID: %s' % snmpContext.contextEngineId.prettyPrint())
dataIndexInstrumController = DataIndexInstrumController()
configureManagedObjects(
ctxDataDirs or dataDirs or confdir.data,
dataIndexInstrumController,
snmpEngine,
snmpContext
)
# Configure access to data index
config.addV1System(snmpEngine, 'index',
'index', contextName='index')
log.msg('--- SNMPv3 USM configuration')
if not v3Users:
v3Users = ['simulator']
v3AuthKeys[v3Users[0]] = 'auctoritas'
v3AuthProtos[v3Users[0]] = 'MD5'
v3PrivKeys[v3Users[0]] = 'privatus'
v3PrivProtos[v3Users[0]] = 'DES'
for v3User in v3Users:
if v3User in v3AuthKeys:
if v3User not in v3AuthProtos:
v3AuthProtos[v3User] = 'MD5'
elif v3User in v3AuthProtos:
log.msg('ERROR: auth protocol configured without key for user %s' % v3User)
sys.exit(-1)
else:
v3AuthKeys[v3User] = None
v3AuthProtos[v3User] = 'NONE'
if v3User in v3PrivKeys:
if v3User not in v3PrivProtos:
v3PrivProtos[v3User] = 'DES'
elif v3User in v3PrivProtos:
log.msg('ERROR: privacy protocol configured without key for user %s' % v3User)
sys.exit(-1)
else:
v3PrivKeys[v3User] = None
v3PrivProtos[v3User] = 'NONE'
if authProtocols[v3AuthProtos[v3User]] == config.usmNoAuthProtocol and privProtocols[v3PrivProtos[v3User]] != config.usmNoPrivProtocol:
log.msg('ERROR: privacy impossible without authentication for USM user %s' % v3User)
sys.exit(-1)
try:
config.addV3User(
snmpEngine,
v3User,
authProtocols[v3AuthProtos[v3User]],
v3AuthKeys[v3User],
privProtocols[v3PrivProtos[v3User]],
v3PrivKeys[v3User]
)
except error.PySnmpError:
log.msg('ERROR: bad USM values for user %s: %s' % (v3User, sys.exc_info()[1]))
sys.exit(-1)
log.msg('SNMPv3 USM SecurityName: %s' % v3User)
if authProtocols[v3AuthProtos[v3User]] != config.usmNoAuthProtocol:
log.msg('SNMPv3 USM authentication key: %s, authentication protocol: %s' % (v3AuthKeys[v3User], v3AuthProtos[v3User]))
if privProtocols[v3PrivProtos[v3User]] != config.usmNoPrivProtocol:
log.msg('SNMPv3 USM encryption (privacy) key: %s, encryption protocol: %s' % (v3PrivKeys[v3User], v3PrivProtos[v3User]))
snmpContext.registerContextName('index', dataIndexInstrumController)
log.msg('Maximum number of variable bindings in SNMP response: %s' % localMaxVarBinds)
log.msg('--- Transport configuration')
if (not agentUDPv4Endpoints and
not agentUDPv6Endpoints and
not agentUnixEndpoints):
log.msg('ERROR: agent endpoint address(es) not specified for SNMP engine ID %s' % v3EngineId)
sys.exit(-1)
for agentUDPv4Endpoint in agentUDPv4Endpoints:
transportDomain = udp.domainName + (transportIndex['udpv4'],)
transportIndex['udpv4'] += 1
registerTransportDispatcher(
snmpEngine, transportDispatcher, transportDomain
)
config.addSocketTransport(
snmpEngine,
transportDomain, agentUDPv4Endpoint[0]
)
log.msg('Listening at UDP/IPv4 endpoint %s, transport ID %s' % (agentUDPv4Endpoint[1], '.'.join([str(x) for x in transportDomain])))
for agentUDPv6Endpoint in agentUDPv6Endpoints:
transportDomain = udp6.domainName + (transportIndex['udpv6'],)
transportIndex['udpv6'] += 1
registerTransportDispatcher(
snmpEngine, transportDispatcher, transportDomain
)
config.addSocketTransport(
snmpEngine,
transportDomain, agentUDPv6Endpoint[0]
)
log.msg('Listening at UDP/IPv6 endpoint %s, transport ID %s' % (agentUDPv6Endpoint[1], '.'.join([str(x) for x in transportDomain])))
for agentUnixEndpoint in agentUnixEndpoints:
transportDomain = unix.domainName + (transportIndex['unix'],)
transportIndex['unix'] += 1
registerTransportDispatcher(
snmpEngine, transportDispatcher, transportDomain
)
config.addSocketTransport(
snmpEngine,
transportDomain, agentUnixEndpoint[0]
)
log.msg('Listening at UNIX domain socket endpoint %s, transport ID %s' % (agentUnixEndpoint[1], '.'.join([str(x) for x in transportDomain])))
# SNMP applications
GetCommandResponder(snmpEngine, snmpContext)
SetCommandResponder(snmpEngine, snmpContext)
NextCommandResponder(snmpEngine, snmpContext)
BulkCommandResponder(snmpEngine, snmpContext).maxVarBinds = localMaxVarBinds
log.msg.decIdent()
if opt[0] == 'end-of-options':
break
# Prepare for next engine ID configuration
v3ContextEngineIds = []
dataDirs = []
localMaxVarBinds = maxVarBinds
v3Users = []
v3AuthKeys = {}
v3AuthProtos = {}
v3PrivKeys = {}
v3PrivProtos = {}
agentUDPv4Endpoints = []
agentUDPv6Endpoints = []
agentUnixEndpoints = []
try:
v3EngineId = opt[1]
if v3EngineId.lower() == 'auto':
snmpEngine = engine.SnmpEngine()
else:
snmpEngine = engine.SnmpEngine(snmpEngineID=univ.OctetString(hexValue=v3EngineId))
except:
log.msg('ERROR: SNMPv3 Engine initialization failed, EngineID "%s": %s' % (v3EngineId, sys.exc_info()[1]))
sys.exit(-1)
config.addContext(snmpEngine, '')
elif opt[0] == '--v3-context-engine-id':
v3ContextEngineIds.append((univ.OctetString(hexValue=opt[1]), []))
elif opt[0] == '--data-dir':
if v3ContextEngineIds:
v3ContextEngineIds[-1][1].append(opt[1])
else:
dataDirs.append(opt[1])
elif opt[0] == '--max-varbinds':
localMaxVarBinds = opt[1]
elif opt[0] == '--v3-user':
v3Users.append(opt[1])
elif opt[0] == '--v3-auth-key':
if not v3Users:
log.msg('ERROR: --v3-user should precede %s' % opt[0])
sys.exit(-1)
if v3Users[-1] in v3AuthKeys:
log.msg('ERROR: repetitive %s option for user %s' % (opt[0], v3Users[-1]))
sys.exit(-1)
v3AuthKeys[v3Users[-1]] = opt[1]
elif opt[0] == '--v3-auth-proto':
if opt[1].upper() not in authProtocols:
log.msg('ERROR: bad v3 auth protocol %s' % opt[1])
sys.exit(-1)
else:
if not v3Users:
log.msg('ERROR: --v3-user should precede %s' % opt[0])
sys.exit(-1)
if v3Users[-1] in v3AuthProtos:
log.msg('ERROR: repetitive %s option for user %s' % (opt[0], v3Users[-1]))
sys.exit(-1)
v3AuthProtos[v3Users[-1]] = opt[1].upper()
elif opt[0] == '--v3-priv-key':
if not v3Users:
log.msg('ERROR: --v3-user should precede %s' % opt[0])
sys.exit(-1)
if v3Users[-1] in v3PrivKeys:
log.msg('ERROR: repetitive %s option for user %s' % (opt[0], v3Users[-1]))
sys.exit(-1)
v3PrivKeys[v3Users[-1]] = opt[1]
elif opt[0] == '--v3-priv-proto':
if opt[1].upper() not in privProtocols:
log.msg('ERROR: bad v3 privacy protocol %s' % opt[1])
sys.exit(-1)
else:
if not v3Users:
log.msg('ERROR: --v3-user should precede %s' % opt[0])
sys.exit(-1)
if v3Users[-1] in v3PrivProtos:
log.msg('ERROR: repetitive %s option for user %s' % (opt[0], v3Users[-1]))
sys.exit(-1)
v3PrivProtos[v3Users[-1]] = opt[1].upper()
elif opt[0] == '--agent-udpv4-endpoint':
agentUDPv4Endpoints.append(opt[1])
elif opt[0] == '--agent-udpv6-endpoint':
agentUDPv6Endpoints.append(opt[1])
elif opt[0] == '--agent-unix-endpoint':
agentUnixEndpoints.append(opt[1])
# Run mainloop
transportDispatcher.jobStarted(1) # server job would never finish
# Python 2.4 does not support the "finally" clause
exc_info = None
try:
transportDispatcher.runDispatcher()
except KeyboardInterrupt:
log.msg('Shutting down process...')
except Exception:
exc_info = sys.exc_info()
if variationModules:
log.msg('Shutting down variation modules:')
for name, contexts in variationModules.items():
body = contexts[0]
try:
body['shutdown'](options=body['args'], mode='variation')
except Exception:
log.msg('Variation module "%s" shutdown FAILED: %s' % (name, sys.exc_info()[1]))
else:
log.msg('Variation module "%s" shutdown OK' % name)
transportDispatcher.closeDispatcher()
log.msg('Process terminated')
if exc_info:
for line in traceback.format_exception(*exc_info):
log.msg(line.replace('\n', ';'))
snmpsim-0.4.5/scripts/pcap2dev.py 0000664 0063214 0063214 00000044712 13412164152 017164 0 ustar ietingof ietingof #!/usr/bin/env python
#
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# SNMP Simulator MIB to data file converter
#
import getopt
import sys
import os
import time
import socket
import struct
import bisect
import traceback
try:
import pcap
except ImportError:
pcap = None
from pyasn1.type import univ
from pyasn1.codec.ber import decoder
from pyasn1.error import PyAsn1Error
from pysnmp.proto import api, rfc1905
from pysnmp.smi import builder, rfc1902, view, compiler
from pysnmp.carrier.asynsock.dgram import udp
from pyasn1 import debug as pyasn1_debug
from pysnmp import debug as pysnmp_debug
from snmpsim.record import snmprec
from snmpsim import confdir, error, log
# Defaults
verboseFlag = True
mibSources = []
defaultMibSources = ['http://mibs.snmplabs.com/asn1/@mib@']
startOID = univ.ObjectIdentifier('1.3.6')
stopOID = None
promiscuousMode = False
outputDir = '.'
transportIdOffset = 0
variationModuleOptions = ""
variationModuleName = variationModule = None
listenInterface = captureFile = None
packetFilter = 'udp and src port 161'
endpoints = {}
contexts = {}
stats = {
'UDP packets': 0,
'IP packets': 0,
'bad packets': 0,
'empty packets': 0,
'unknown L2 protocol': 0,
'SNMP errors': 0,
'SNMP exceptions': 0,
'agents seen': 0,
'contexts seen': 0,
'snapshots taken': 0,
'Response PDUs seen': 0,
'OIDs seen': 0
}
helpMessage = """Usage: %s [--help]
[--version]
[--debug=<%s>]
[--debug-asn1=<%s>]
[--quiet]
[--logging-method=<%s[:args]>]
[--mib-source=]
[--start-object=]
[--stop-object=]
[--output-dir=]
[--transport-id-offset=]
[--capture-file=]
[--listen-interface=]
[--promiscuous-mode]
[--packet-filter=]
[--variation-modules-dir=]
[--variation-module=]
[--variation-module-options=]""" % (
sys.argv[0],
'|'.join([x for x in getattr(pysnmp_debug, 'FLAG_MAP', getattr(pysnmp_debug, 'flagMap', ()))
if x != 'mibview']),
'|'.join([x for x in getattr(pyasn1_debug, 'FLAG_MAP', getattr(pyasn1_debug, 'flagMap', ()))]),
'|'.join(log.gMap)
)
try:
opts, params = getopt.getopt(sys.argv[1:], 'hv', [
'help', 'version', 'debug=', 'debug-snmp=', 'debug-asn1=',
'quiet', 'logging-method=', 'start-oid=', 'stop-oid=',
'start-object=', 'stop-object=', 'mib-source=',
'output-dir=', 'transport-id-offset=',
'capture-file=', 'listen-interface=', 'promiscuous-mode',
'packet-filter=',
'variation-modules-dir=', 'variation-module=',
'variation-module-options='
])
except Exception:
sys.stderr.write(
'ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if params:
sys.stderr.write('ERROR: extra arguments supplied %s\r\n%s\r\n' % (params, helpMessage))
sys.exit(-1)
for opt in opts:
if opt[0] == '-h' or opt[0] == '--help':
sys.stderr.write("""\
Synopsis:
Snoops network traffic for SNMP responses, builds SNMP Simulator
data files.
Can read capture files or listen live network interface.
Documentation:
http://snmplabs.com/snmpsim/
%s
""" % helpMessage)
sys.exit(-1)
if opt[0] == '-v' or opt[0] == '--version':
import snmpsim
import pysmi
import pysnmp
import pyasn1
sys.stderr.write("""\
SNMP Simulator version %s, written by Ilya Etingof
Using foundation libraries: pysmi %s, pysnmp %s, pyasn1 %s.
Python interpreter: %s
Software documentation and support at http://snmplabs.com/snmpsim
%s
""" % (snmpsim.__version__,
hasattr(pysmi, '__version__') and pysmi.__version__ or 'unknown',
hasattr(pysnmp, '__version__') and pysnmp.__version__ or 'unknown',
hasattr(pyasn1, '__version__') and pyasn1.__version__ or 'unknown',
sys.version, helpMessage))
sys.exit(-1)
elif opt[0] in ('--debug', '--debug-snmp'):
pysnmp_debug.setLogger(pysnmp_debug.Debug(*opt[1].split(','), **dict(
loggerName='pcap2dev.pysnmp')))
elif opt[0] == '--debug-asn1':
pyasn1_debug.setLogger(pyasn1_debug.Debug(*opt[1].split(','), **dict(
loggerName='pcap2dev.pyasn1')))
elif opt[0] == '--logging-method':
try:
log.setLogger('pcap2dev', *opt[1].split(':'), **dict(force=True))
except error.SnmpsimError:
sys.stderr.write(
'%s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if opt[0] == '--quiet':
verboseFlag = False
# obsolete begin
elif opt[0] == '--start-oid':
startOID = univ.ObjectIdentifier(opt[1])
elif opt[0] == '--stop-oid':
stopOID = univ.ObjectIdentifier(opt[1])
# obsolete end
if opt[0] == '--mib-source':
mibSources.append(opt[1])
if opt[0] == '--start-object':
startOID = rfc1902.ObjectIdentity(*opt[1].split('::', 1))
if opt[0] == '--stop-object':
stopOID = rfc1902.ObjectIdentity(*opt[1].split('::', 1),
**dict(last=True))
elif opt[0] == '--output-dir':
outputDir = opt[1]
elif opt[0] == '--transport-id-offset':
try:
transportIdOffset = max(0, int(opt[1]))
except:
sys.stderr.write(
'ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--listen-interface':
listenInterface = opt[1]
elif opt[0] == '--promiscuous-mode':
promiscuousMode = True
elif opt[0] == '--capture-file':
captureFile = opt[1]
elif opt[0] == '--packet-filter':
packetFilter = opt[1]
elif opt[0] == '--variation-modules-dir':
confdir.variation.insert(0, opt[1])
elif opt[0] == '--variation-module':
variationModuleName = opt[1]
elif opt[0] == '--variation-module-options':
variationModuleOptions = opt[1]
if params:
sys.stderr.write('ERROR: extra arguments supplied %s\r\n%s\r\n' % (
params, helpMessage))
sys.exit(-1)
if not pcap:
sys.stderr.write('ERROR: pylibpcap package is missing!\r\nGet it by running `pip install https://downloads.sourceforge.net/project/pylibpcap/pylibpcap/0.6.4/pylibpcap-0.6.4.tar.gz`\r\n%s\r\n' % helpMessage)
sys.exit(-1)
log.setLogger('pcap2dev', 'stdout')
if isinstance(startOID, rfc1902.ObjectIdentity) or \
isinstance(stopOID, rfc1902.ObjectIdentity):
mibBuilder = builder.MibBuilder()
mibViewController = view.MibViewController(mibBuilder)
compiler.addMibCompiler(
mibBuilder, sources=mibSources or defaultMibSources
)
if isinstance(startOID, rfc1902.ObjectIdentity):
startOID.resolveWithMib(mibViewController)
if isinstance(stopOID, rfc1902.ObjectIdentity):
stopOID.resolveWithMib(mibViewController)
# Load variation module
if variationModuleName:
for variationModulesDir in confdir.variation:
log.msg('Scanning "%s" directory for variation modules...' % variationModulesDir)
if not os.path.exists(variationModulesDir):
log.msg('Directory "%s" does not exist' % variationModulesDir)
continue
mod = os.path.join(variationModulesDir, variationModuleName + '.py')
if not os.path.exists(mod):
log.msg('Variation module "%s" not found' % mod)
continue
ctx = {'path': mod, 'moduleContext': {}}
try:
if sys.version_info[0] > 2:
exec(compile(open(mod).read(), mod, 'exec'), ctx)
else:
execfile(mod, ctx)
except Exception:
log.msg('Variation module "%s" execution failure: %s' % (mod, sys.exc_info()[1]))
sys.exit(-1)
else:
variationModule = ctx
log.msg('Variation module "%s" loaded' % variationModuleName)
break
else:
log.msg('ERROR: variation module "%s" not found' % variationModuleName)
sys.exit(-1)
# Variation module initialization
if variationModule:
log.msg('Initializing variation module...')
for x in ('init', 'record', 'shutdown'):
if x not in variationModule:
log.msg('ERROR: missing "%s" handler at variation module "%s"' % (x, variationModuleName))
sys.exit(-1)
try:
variationModule['init'](options=variationModuleOptions,
mode='recording',
startOID=startOID,
stopOID=stopOID)
except Exception:
log.msg('Variation module "%s" initialization FAILED: %s' % (variationModuleName, sys.exc_info()[1]))
else:
log.msg('Variation module "%s" initialization OK' % variationModuleName)
# Data file builder
class SnmprecRecord(snmprec.SnmprecRecord):
def formatValue(self, oid, value, **context):
textOid, textTag, textValue = snmprec.SnmprecRecord.formatValue(
self, oid, value
)
# invoke variation module
if context['variationModule']:
plainOid, plainTag, plainValue = snmprec.SnmprecRecord.formatValue(
self, oid, value, nohex=True
)
if plainTag != textTag:
context['hextag'], context['hexvalue'] = textTag, textValue
else:
textTag, textValue = plainTag, plainValue
textOid, textTag, textValue = context['variationModule'][
'record'](
textOid, textTag, textValue, **context
)
elif 'stopFlag' in context and context['stopFlag']:
raise error.NoDataNotification()
return textOid, textTag, textValue
pcapObj = pcap.pcapObject()
if listenInterface:
if verboseFlag:
log.msg('Listening on interface %s in %spromiscuous mode' % (listenInterface, promiscuousMode is False and 'non-' or ''))
try:
pcapObj.open_live(listenInterface, 65536, promiscuousMode, 1000)
except Exception:
log.msg('Error opening interface %s for snooping: %s' % (listenInterface, sys.exc_info()[1]))
sys.exit(-1)
elif captureFile:
if verboseFlag:
log.msg('Opening capture file %s' % captureFile)
try:
pcapObj.open_offline(captureFile)
except Exception:
log.msg('Error opening capture file %s for reading: %s' % (captureFile, sys.exc_info()[1]))
sys.exit(-1)
else:
sys.stderr.write('ERROR: no capture file or live interface specified\r\n%s\r\n' % helpMessage)
sys.exit(-1)
if packetFilter:
if verboseFlag:
log.msg('Applying packet filter \"%s\"' % packetFilter)
pcapObj.setfilter(packetFilter, 0, 0)
if verboseFlag:
log.msg('Processing records from %s till %s' % (startOID or 'the beginning', stopOID or 'the end'))
def parsePacket(s):
d = {}
# http://www.tcpdump.org/linktypes.html
llHeaders = {
0: 4,
1: 14,
108: 4,
228: 0
}
if pcapObj.datalink() in llHeaders:
s = s[llHeaders[pcapObj.datalink()]:]
else:
stats['unknown L2 protocol'] += 1
d['version'] = (ord(s[0]) & 0xf0) >> 4
d['header_len'] = ord(s[0]) & 0x0f
d['tos'] = ord(s[1])
d['total_len'] = socket.ntohs(struct.unpack('H', s[2:4])[0])
d['id'] = socket.ntohs(struct.unpack('H', s[4:6])[0])
d['flags'] = (ord(s[6]) & 0xe0) >> 5
d['fragment_offset'] = socket.ntohs(struct.unpack('H', s[6:8])[0] & 0x1f)
d['ttl'] = ord(s[8])
d['protocol'] = ord(s[9])
d['checksum'] = socket.ntohs(struct.unpack('H', s[10:12])[0])
d['source_address'] = pcap.ntoa(struct.unpack('i', s[12:16])[0])
d['destination_address'] = pcap.ntoa(struct.unpack('i', s[16:20])[0])
if d['header_len'] > 5:
d['options'] = s[20:4 * (d['header_len'] - 5)]
else:
d['options'] = None
s = s[4 * d['header_len']:]
if d['protocol'] == 17:
d['source_port'] = socket.ntohs(struct.unpack('H', s[0:2])[0])
d['destination_port'] = socket.ntohs(struct.unpack('H', s[2:4])[0])
s = s[8:]
stats['UDP packets'] += 1
d['data'] = s
stats['IP packets'] += 1
return d
def handleSnmpMessage(d, t, private={}):
msgVer = api.decodeMessageVersion(d['data'])
if msgVer in api.protoModules:
pMod = api.protoModules[msgVer]
else:
stats['bad packets'] += 1
return
try:
rspMsg, wholeMsg = decoder.decode(
d['data'], asn1Spec=pMod.Message(),
)
except PyAsn1Error:
stats['bad packets'] += 1
return
if rspMsg['data'].getName() == 'response':
rspPDU = pMod.apiMessage.getPDU(rspMsg)
errorStatus = pMod.apiPDU.getErrorStatus(rspPDU)
if errorStatus:
stats['SNMP errors'] += 1
else:
endpoint = d['source_address'], d['source_port']
if endpoint not in endpoints:
endpoints[endpoint] = udp.domainName + (transportIdOffset + len(endpoints),)
stats['agents seen'] += 1
context = '%s/%s' % (pMod.ObjectIdentifier(endpoints[endpoint]),
pMod.apiMessage.getCommunity(rspMsg))
if context not in contexts:
contexts[context] = {}
stats['contexts seen'] += 1
context = '%s/%s' % (pMod.ObjectIdentifier(endpoints[endpoint]),
pMod.apiMessage.getCommunity(rspMsg))
stats['Response PDUs seen'] += 1
if 'basetime' not in private:
private['basetime'] = t
for oid, value in pMod.apiPDU.getVarBinds(rspPDU):
if oid < startOID:
continue
if stopOID and oid >= stopOID:
continue
if oid in contexts[context]:
if value != contexts[context][oid]:
stats['snapshots taken'] += 1
else:
contexts[context][oid] = [], []
contexts[context][oid][0].append(t - private['basetime'])
contexts[context][oid][1].append(value)
stats['OIDs seen'] += 1
def handlePacket(pktlen, data, timestamp):
if not data:
stats['empty packets'] += 1
return
else:
handleSnmpMessage(parsePacket(data), timestamp)
exc_info = None
try:
if listenInterface:
log.msg(
'Listening on interface "%s", kill me when you are done.' % listenInterface)
while True:
pcapObj.dispatch(1, handlePacket)
elif captureFile:
log.msg('Processing capture file "%s"....' % captureFile)
args = pcapObj.next()
while args:
handlePacket(*args)
args = pcapObj.next()
except (TypeError, KeyboardInterrupt):
log.msg('Shutting down process...')
except Exception:
exc_info = sys.exc_info()
dataFileHandler = SnmprecRecord()
for context in contexts:
filename = os.path.join(outputDir,
context + os.path.extsep + SnmprecRecord.ext)
if verboseFlag:
log.msg('Creating simulation context %s at %s' % (context, filename))
try:
os.mkdir(os.path.dirname(filename))
except OSError:
pass
try:
outputFile = open(filename, 'wb')
except IOError:
log.msg('ERROR: writing %s: %s' % (filename, sys.exc_info()[1]))
sys.exit(-1)
count = total = iteration = 0
timeOffset = 0
reqTime = time.time()
oids = list(contexts[context].keys())
oids.sort()
oids.append(oids[-1]) # duplicate last OID to trigger stopFlag
while True:
for oid in oids:
timeline, values = contexts[context][oid]
value = values[
min(len(values) - 1,
bisect.bisect_left(timeline, timeOffset))
]
if value.tagSet in (rfc1905.NoSuchObject.tagSet,
rfc1905.NoSuchInstance.tagSet,
rfc1905.EndOfMibView.tagSet):
stats['SNMP exceptions'] += 1
continue
# remove value enumeration
if value.tagSet == rfc1902.Integer32.tagSet:
value = rfc1902.Integer32(value)
if value.tagSet == rfc1902.Unsigned32.tagSet:
value = rfc1902.Unsigned32(value)
if value.tagSet == rfc1902.Bits.tagSet:
value = rfc1902.OctetString(value)
# Build .snmprec record
ctx = {
'origOid': oid,
'origValue': value,
'count': count,
'total': total,
'iteration': iteration,
'reqTime': reqTime,
'startOID': startOID,
'stopOID': stopOID,
'stopFlag': oids.index(oid) == len(oids) - 1,
'variationModule': variationModule
}
try:
line = dataFileHandler.format(oid, value, **ctx)
except error.MoreDataNotification:
count = 0
iteration += 1
moreDataNotification = sys.exc_info()[1]
if 'period' in moreDataNotification:
timeOffset += moreDataNotification['period']
log.msg(
'%s OIDs dumped, advancing time window to %.2f sec(s)...' % (total, timeOffset))
break
except error.NoDataNotification:
pass
except error.SnmpsimError:
log.msg('ERROR: %s' % (sys.exc_info()[1],))
continue
else:
outputFile.write(line)
count += 1
total += 1
else:
break
outputFile.flush()
outputFile.close()
if variationModule:
log.msg('Shutting down variation module "%s"...' % variationModuleName)
try:
variationModule['shutdown'](options=variationModuleOptions,
mode='recording')
except Exception:
log.msg('Variation module "%s" shutdown FAILED: %s' % (variationModuleName, sys.exc_info()[1]))
else:
log.msg('Variation module "%s" shutdown OK' % variationModuleName)
log.msg("""PCap statistics:
packets snooped: %s
packets dropped: %s
packets dropped: by interface %s""" % pcapObj.stats())
log.msg("""SNMP statistics:
%s""" % ' '.join(['%s: %s\r\n' % kv for kv in stats.items()]))
if exc_info:
for line in traceback.format_exception(*exc_info):
log.msg(line.replace('\n', ';'))
snmpsim-0.4.5/scripts/snmprec.py 0000664 0063214 0063214 00000065077 13412164152 017136 0 ustar ietingof ietingof #!/usr/bin/env python
#
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# SNMP Snapshot Data Recorder
#
import getopt
import time
import sys
import os
import socket
import traceback
from pyasn1.type import univ
from pysnmp.proto import rfc1902
from pysnmp.proto import rfc1905
from pysnmp.entity import engine, config
from pysnmp.carrier.asynsock.dgram import udp
try:
from pysnmp.carrier.asynsock.dgram import udp6
except ImportError:
udp6 = None
try:
from pysnmp.carrier.asynsock.dgram import unix
except ImportError:
unix = None
from pysnmp.entity.rfc3413 import cmdgen
from pysnmp.smi.rfc1902 import ObjectIdentity, ObjectType
from pysnmp.smi import view, compiler
from pyasn1 import debug as pyasn1_debug
from pysnmp import debug as pysnmp_debug
from snmpsim.record import snmprec
from snmpsim import confdir, error, log
# Defaults
getBulkFlag = False
continueOnErrors = 0
getBulkRepetitions = 25
snmpVersion = 1
snmpCommunity = 'public'
v3User = None
v3AuthKey = None
v3PrivKey = None
v3AuthProto = 'NONE'
v3PrivProto = 'NONE'
v3ContextEngineId = None
v3Context = ''
agentUDPv4Address = (None, 161) # obsolete
agentUDPv4Endpoint = None
agentUDPv6Endpoint = None
agentUNIXEndpoint = None
timeout = 300 # 1/100 sec
retryCount = 3
startOID = univ.ObjectIdentifier('1.3.6')
stopOID = None
mibSources = []
defaultMibSources = ['http://mibs.snmplabs.com/asn1/@mib@']
outputFile = sys.stdout
if hasattr(outputFile, 'buffer'):
outputFile = outputFile.buffer
variationModuleOptions = ""
variationModuleName = variationModule = None
authProtocols = {
'MD5': config.usmHMACMD5AuthProtocol,
'SHA': config.usmHMACSHAAuthProtocol,
'SHA224': config.usmHMAC128SHA224AuthProtocol,
'SHA256': config.usmHMAC192SHA256AuthProtocol,
'SHA384': config.usmHMAC256SHA384AuthProtocol,
'SHA512': config.usmHMAC384SHA512AuthProtocol,
'NONE': config.usmNoAuthProtocol
}
privProtocols = {
'DES': config.usmDESPrivProtocol,
'3DES': config.usm3DESEDEPrivProtocol,
'AES': config.usmAesCfb128Protocol,
'AES128': config.usmAesCfb128Protocol,
'AES192': config.usmAesCfb192Protocol,
'AES192BLMT': config.usmAesBlumenthalCfb192Protocol,
'AES256': config.usmAesCfb256Protocol,
'AES256BLMT': config.usmAesBlumenthalCfb256Protocol,
'NONE': config.usmNoPrivProtocol
}
helpMessage = """\
Usage: %s [--help]
[--version]
[--debug=<%s>]
[--debug-asn1=<%s>]
[--logging-method=<%s[:args>]>]
[--protocol-version=<1|2c|3>]
[--community=]
[--v3-user=]
[--v3-auth-key=]
[--v3-auth-proto=<%s>]
[--v3-priv-key=]
[--v3-priv-proto=<%s>]
[--v3-context-engine-id=<[0x]string>]
[--v3-context-name=<[0x]string>]
[--use-getbulk]
[--getbulk-repetitions=]
[--agent-udpv4-endpoint=]
[--agent-udpv6-endpoint=<[X:X:..X]:NNNNN>]
[--agent-unix-endpoint=]
[--timeout=] [--retries=]
[--mib-source=]
[--start-object=]
[--stop-object=]
[--output-file=]
[--variation-modules-dir=]
[--variation-module=]
[--variation-module-options=]
[--continue-on-errors=]""" % (
sys.argv[0],
'|'.join([x for x in getattr(pysnmp_debug, 'FLAG_MAP', getattr(pysnmp_debug, 'flagMap', ()))
if x != 'mibview']),
'|'.join([x for x in getattr(pyasn1_debug, 'FLAG_MAP', getattr(pyasn1_debug, 'flagMap', ()))]),
'|'.join(log.gMap),
'|'.join(sorted([x for x in authProtocols if x != 'NONE'])),
'|'.join(sorted([x for x in privProtocols if x != 'NONE']))
)
try:
opts, params = getopt.getopt(sys.argv[1:], 'hv', [
'help', 'version', 'debug=', 'debug-asn1=', 'logging-method=',
'quiet',
'v1', 'v2c', 'v3', 'protocol-version=', 'community=',
'v3-user=', 'v3-auth-key=', 'v3-priv-key=', 'v3-auth-proto=',
'v3-priv-proto=',
'context-engine-id=', 'v3-context-engine-id=',
'context=', 'v3-context-name=',
'use-getbulk', 'getbulk-repetitions=', 'agent-address=',
'agent-port=',
'agent-udpv4-endpoint=', 'agent-udpv6-endpoint=',
'agent-unix-endpoint=', 'timeout=', 'retries=',
'start-oid=', 'stop-oid=',
'mib-source=',
'start-object=', 'stop-object=',
'output-file=',
'variation-modules-dir=', 'variation-module=',
'variation-module-options=', 'continue-on-errors='
])
except Exception:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if params:
sys.stderr.write('ERROR: extra arguments supplied %s\r\n%s\r\n' % (params, helpMessage))
sys.exit(-1)
for opt in opts:
if opt[0] == '-h' or opt[0] == '--help':
sys.stderr.write("""\
Synopsis:
SNMP Agents Recording tool. Queries specified Agent, stores response
data in data files for subsequent playback by SNMP Simulation tool.
Can store a series of recordings for a more dynamic playback.
Documentation:
http://snmplabs.com/snmpsim/snapshotting.html
%s
""" % helpMessage)
sys.exit(-1)
if opt[0] == '-v' or opt[0] == '--version':
import snmpsim
import pysnmp
import pysmi
import pyasn1
sys.stderr.write("""\
SNMP Simulator version %s, written by Ilya Etingof
Using foundation libraries: pysmi %s, pysnmp %s, pyasn1 %s.
Python interpreter: %s
Software documentation and support at http://snmplabs.com/snmpsim
%s
""" % (snmpsim.__version__,
hasattr(pysmi, '__version__') and pysmi.__version__ or 'unknown',
hasattr(pysnmp, '__version__') and pysnmp.__version__ or 'unknown',
hasattr(pyasn1, '__version__') and pyasn1.__version__ or 'unknown',
sys.version, helpMessage))
sys.exit(-1)
elif opt[0] in ('--debug', '--debug-snmp'):
pysnmp_debug.setLogger(pysnmp_debug.Debug(*opt[1].split(','), **dict(loggerName='snmprec.pysnmp')))
elif opt[0] == '--debug-asn1':
pyasn1_debug.setLogger(pyasn1_debug.Debug(*opt[1].split(','), **dict(loggerName='snmprec.pyasn1')))
elif opt[0] == '--logging-method':
try:
log.setLogger('snmprec', *opt[1].split(':'), **dict(force=True))
except error.SnmpsimError:
sys.stderr.write('%s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--quiet':
log.setLogger('snmprec', 'null', force=True)
elif opt[0] == '--v1':
snmpVersion = 0
elif opt[0] == '--v2c':
snmpVersion = 1
elif opt[0] == '--v3':
snmpVersion = 3
elif opt[0] == '--protocol-version':
if opt[1] in ('1', 'v1'):
snmpVersion = 0
elif opt[1] in ('2', '2c', 'v2c'):
snmpVersion = 1
elif opt[1] in ('3', 'v3'):
snmpVersion = 3
else:
sys.stderr.write('ERROR: unknown SNMP version %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--community':
snmpCommunity = opt[1]
elif opt[0] == '--v3-user':
v3User = opt[1]
elif opt[0] == '--v3-auth-key':
v3AuthKey = opt[1]
elif opt[0] == '--v3-auth-proto':
v3AuthProto = opt[1].upper()
if v3AuthProto not in authProtocols:
sys.stderr.write('ERROR: bad v3 auth protocol %s\r\n%s\r\n' % (v3AuthProto, helpMessage))
sys.exit(-1)
elif opt[0] == '--v3-priv-key':
v3PrivKey = opt[1]
elif opt[0] == '--v3-priv-proto':
v3PrivProto = opt[1].upper()
if v3PrivProto not in privProtocols:
sys.stderr.write('ERROR: bad v3 privacy protocol %s\r\n%s\r\n' % (v3PrivProto, helpMessage))
sys.exit(-1)
elif opt[0] in ('--v3-context-engine-id', '--context-engine-id'):
if opt[1][:2] == '0x':
v3ContextEngineId = univ.OctetString(hexValue=opt[1][2:])
else:
v3ContextEngineId = univ.OctetString(opt[1])
elif opt[0] in ('--v3-context-name', '--context'):
if opt[1][:2] == '0x':
v3Context = univ.OctetString(hexValue=opt[1][2:])
else:
v3Context = univ.OctetString(opt[1])
elif opt[0] == '--use-getbulk':
getBulkFlag = True
elif opt[0] == '--getbulk-repetitions':
getBulkRepetitions = int(opt[1])
elif opt[0] == '--agent-address':
agentUDPv4Address = (opt[1], agentUDPv4Address[1])
elif opt[0] == '--agent-port':
agentUDPv4Address = (agentUDPv4Address[0], int(opt[1]))
elif opt[0] == '--agent-udpv4-endpoint':
f = lambda h, p=161: (h, int(p))
try:
agentUDPv4Endpoint = f(*opt[1].split(':'))
except:
sys.stderr.write('ERROR: improper IPv4/UDP endpoint %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
try:
agentUDPv4Endpoint = \
socket.getaddrinfo(agentUDPv4Endpoint[0],
agentUDPv4Endpoint[1],
socket.AF_INET, socket.SOCK_DGRAM,
socket.IPPROTO_UDP)[0][4][:2]
except socket.gaierror:
sys.stderr.write('ERROR: unknown hostname %s\r\n%s\r\n' % (agentUDPv4Endpoint[0], helpMessage))
sys.exit(-1)
elif opt[0] == '--agent-udpv6-endpoint':
if not udp6:
sys.stderr.write('This system does not support UDP/IP6\r\n')
sys.exit(-1)
if opt[1].find(']:') != -1 and opt[1][0] == '[':
h, p = opt[1].split(']:')
try:
agentUDPv6Endpoint = h[1:], int(p)
except:
sys.stderr.write('ERROR: improper IPv6/UDP endpoint %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
elif opt[1][0] == '[' and opt[1][-1] == ']':
agentUDPv6Endpoint = opt[1][1:-1], 161
else:
agentUDPv6Endpoint = opt[1], 161
try:
agentUDPv6Endpoint = \
socket.getaddrinfo(agentUDPv6Endpoint[0],
agentUDPv6Endpoint[1],
socket.AF_INET6, socket.SOCK_DGRAM,
socket.IPPROTO_UDP)[0][4][:2]
except socket.gaierror:
sys.stderr.write('ERROR: unknown hostname %s\r\n%s\r\n' % (agentUDPv6Endpoint[0], helpMessage))
sys.exit(-1)
elif opt[0] == '--agent-unix-endpoint':
if not unix:
sys.stderr.write('This system does not support UNIX domain sockets\r\n')
sys.exit(-1)
agentUNIXEndpoint = opt[1]
elif opt[0] == '--timeout':
try:
timeout = float(opt[1]) * 100
except:
sys.stderr.write('ERROR: improper --timeout value %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
elif opt[0] == '--retries':
try:
retryCount = int(opt[1])
except:
sys.stderr.write('ERROR: improper --retries value %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
# obsolete begin
elif opt[0] == '--start-oid':
startOID = univ.ObjectIdentifier(opt[1])
elif opt[0] == '--stop-oid':
stopOID = univ.ObjectIdentifier(opt[1])
# obsolete end
elif opt[0] == '--mib-source':
mibSources.append(opt[1])
elif opt[0] == '--start-object':
startOID = ObjectIdentity(*opt[1].split('::', 1))
elif opt[0] == '--stop-object':
stopOID = ObjectIdentity(*opt[1].split('::', 1), **dict(last=True))
elif opt[0] == '--output-file':
outputFile = open(opt[1], 'wb')
elif opt[0] == '--variation-modules-dir':
confdir.variation.insert(0, opt[1])
elif opt[0] == '--variation-module':
variationModuleName = opt[1]
elif opt[0] == '--variation-module-options':
variationModuleOptions = opt[1]
elif opt[0] == '--continue-on-errors':
try:
continueOnErrors = int(opt[1])
except:
sys.stderr.write('ERROR: improper --continue-on-errors retries count %s\r\n%s\r\n' % (opt[1], helpMessage))
sys.exit(-1)
# Catch missing params
if not agentUDPv4Endpoint and not agentUDPv6Endpoint and not agentUNIXEndpoint:
if agentUDPv4Address[0] is None:
sys.stderr.write('ERROR: agent endpoint address not specified\r\n%s\r\n' % helpMessage)
sys.exit(-1)
else:
agentUDPv4Endpoint = agentUDPv4Address
if snmpVersion == 3:
if v3User is None:
sys.stderr.write(
'ERROR: --v3-user is missing\r\n%s\r\n' % helpMessage)
sys.exit(-1)
if v3PrivKey and not v3AuthKey:
sys.stderr.write(
'ERROR: --v3-auth-key is missing\r\n%s\r\n' % helpMessage)
sys.exit(-1)
if authProtocols[v3AuthProto] == config.usmNoAuthProtocol:
if v3AuthKey is not None:
v3AuthProto = 'MD5'
else:
if v3AuthKey is None:
sys.stderr.write('ERROR: --v3-auth-key is missing\r\n%s\r\n' % helpMessage)
sys.exit(-1)
if privProtocols[v3PrivProto] == config.usmNoPrivProtocol:
if v3PrivKey is not None:
v3PrivProto = 'DES'
else:
if v3PrivKey is None:
sys.stderr.write('ERROR: --v3-priv-key is missing\r\n%s\r\n' % helpMessage)
sys.exit(-1)
else:
v3ContextEngineId = None
v3ContextName = ''
log.setLogger('snmprec', 'stderr')
if getBulkFlag and not snmpVersion:
log.msg('WARNING: will be using GETNEXT with SNMPv1!')
getBulkFlag = False
# Attempt to reopen std output stream in binary mode
if outputFile is sys.stderr:
if sys.version_info[0] > 2:
outputFile = outputFile.buffer
elif sys.platform == "win32":
import msvcrt
msvcrt.setmode(outputFile.fileno(), os.O_BINARY)
# Load variation module
if variationModuleName:
for variationModulesDir in confdir.variation:
log.msg(
'Scanning "%s" directory for variation modules...' % variationModulesDir)
if not os.path.exists(variationModulesDir):
log.msg('Directory "%s" does not exist' % variationModulesDir)
continue
mod = os.path.join(variationModulesDir, variationModuleName + '.py')
if not os.path.exists(mod):
log.msg('Variation module "%s" not found' % mod)
continue
ctx = {'path': mod, 'moduleContext': {}}
try:
if sys.version_info[0] > 2:
exec(compile(open(mod).read(), mod, 'exec'), ctx)
else:
execfile(mod, ctx)
except Exception:
log.msg('Variation module "%s" execution failure: %s' % (mod, sys.exc_info()[1]))
sys.exit(-1)
else:
variationModule = ctx
log.msg('Variation module "%s" loaded' % variationModuleName)
break
else:
log.msg('ERROR: variation module "%s" not found' % variationModuleName)
sys.exit(-1)
# SNMP configuration
snmpEngine = engine.SnmpEngine()
if snmpVersion == 3:
if v3PrivKey is None and v3AuthKey is None:
secLevel = 'noAuthNoPriv'
elif v3PrivKey is None:
secLevel = 'authNoPriv'
else:
secLevel = 'authPriv'
config.addV3User(
snmpEngine, v3User,
authProtocols[v3AuthProto], v3AuthKey,
privProtocols[v3PrivProto], v3PrivKey
)
log.msg('SNMP version 3, Context EngineID: %s Context name: %s, SecurityName: %s, SecurityLevel: %s, Authentication key/protocol: %s/%s, Encryption (privacy) key/protocol: %s/%s' % (
v3ContextEngineId and v3ContextEngineId.prettyPrint() or '',
v3Context and v3Context.prettyPrint() or '', v3User,
secLevel, v3AuthKey is None and '' or v3AuthKey,
v3AuthProto,
v3PrivKey is None and '' or v3PrivKey, v3PrivProto))
else:
v3User = 'agt'
secLevel = 'noAuthNoPriv'
config.addV1System(
snmpEngine, v3User, snmpCommunity
)
log.msg('SNMP version %s, Community name: %s' % (snmpVersion == 0 and '1' or '2c', snmpCommunity))
config.addTargetParams(snmpEngine, 'pms', v3User, secLevel, snmpVersion)
if agentUDPv6Endpoint:
config.addSocketTransport(
snmpEngine,
udp6.domainName,
udp6.Udp6SocketTransport().openClientMode()
)
config.addTargetAddr(
snmpEngine, 'tgt', udp6.domainName, agentUDPv6Endpoint, 'pms',
timeout, retryCount
)
log.msg('Querying UDP/IPv6 agent at [%s]:%s' % agentUDPv6Endpoint)
elif agentUNIXEndpoint:
config.addSocketTransport(
snmpEngine,
unix.domainName,
unix.UnixSocketTransport().openClientMode()
)
config.addTargetAddr(
snmpEngine, 'tgt', unix.domainName, agentUNIXEndpoint, 'pms',
timeout, retryCount
)
log.msg('Querying UNIX named pipe agent at %s' % agentUNIXEndpoint)
elif agentUDPv4Endpoint:
config.addSocketTransport(
snmpEngine,
udp.domainName,
udp.UdpSocketTransport().openClientMode()
)
config.addTargetAddr(
snmpEngine, 'tgt', udp.domainName, agentUDPv4Endpoint, 'pms',
timeout, retryCount
)
log.msg('Querying UDP/IPv4 agent at %s:%s' % agentUDPv4Endpoint)
log.msg('Agent response timeout: %.2f secs, retries: %s' % (timeout / 100, retryCount))
if (isinstance(startOID, ObjectIdentity) or
isinstance(stopOID, ObjectIdentity)):
compiler.addMibCompiler(
snmpEngine.getMibBuilder(),
sources=mibSources or defaultMibSources
)
mibViewController = view.MibViewController(snmpEngine.getMibBuilder())
if isinstance(startOID, ObjectIdentity):
startOID.resolveWithMib(mibViewController)
if isinstance(stopOID, ObjectIdentity):
stopOID.resolveWithMib(mibViewController)
# Variation module initialization
if variationModule:
log.msg('Initializing variation module...')
for x in ('init', 'record', 'shutdown'):
if x not in variationModule:
log.msg('ERROR: missing "%s" handler at variation module "%s"' % (x, variationModuleName))
sys.exit(-1)
try:
variationModule['init'](snmpEngine=snmpEngine,
options=variationModuleOptions,
mode='recording',
startOID=startOID,
stopOID=stopOID)
except Exception:
log.msg('Variation module "%s" initialization FAILED: %s' % (variationModuleName, sys.exc_info()[1]))
else:
log.msg('Variation module "%s" initialization OK' % variationModuleName)
# Data file builder
class SnmprecRecord(snmprec.SnmprecRecord):
def formatValue(self, oid, value, **context):
textOid, textTag, textValue = snmprec.SnmprecRecord.formatValue(
self, oid, value
)
# invoke variation module
if context['variationModule']:
plainOid, plainTag, plainValue = snmprec.SnmprecRecord.formatValue(
self, oid, value, nohex=True
)
if plainTag != textTag:
context['hextag'], context['hexvalue'] = textTag, textValue
else:
textTag, textValue = plainTag, plainValue
textOid, textTag, textValue = context['variationModule'][
'record'](
textOid, textTag, textValue, **context
)
elif 'stopFlag' in context and context['stopFlag']:
raise error.NoDataNotification()
return textOid, textTag, textValue
dataFileHandler = SnmprecRecord()
# SNMP worker
def cbFun(snmpEngine, sendRequestHandle, errorIndication,
errorStatus, errorIndex, varBindTable, cbCtx):
if errorIndication and not cbCtx['retries']:
cbCtx['errors'] += 1
log.msg('SNMP Engine error: %s' % errorIndication)
return
# SNMPv1 response may contain noSuchName error *and* SNMPv2c exception,
# so we ignore noSuchName error here
if errorStatus and errorStatus != 2 or errorIndication:
log.msg('Remote SNMP error %s' % (errorIndication or errorStatus.prettyPrint()))
if cbCtx['retries']:
try:
nextOID = varBindTable[-1][0][0]
except IndexError:
nextOID = cbCtx['lastOID']
else:
log.msg('Failed OID: %s' % nextOID)
# fuzzy logic of walking a broken OID
if len(nextOID) < 4:
pass
elif (continueOnErrors - cbCtx['retries']) * 10 / continueOnErrors > 5:
nextOID = nextOID[:-2] + (nextOID[-2] + 1,)
elif nextOID[-1]:
nextOID = nextOID[:-1] + (nextOID[-1] + 1,)
else:
nextOID = nextOID[:-2] + (nextOID[-2] + 1, 0)
cbCtx['retries'] -= 1
cbCtx['lastOID'] = nextOID
log.msg('Retrying with OID %s (%s retries left)...' % (nextOID, cbCtx['retries']))
# initiate another SNMP walk iteration
if getBulkFlag:
cmdGen.sendVarBinds(
snmpEngine,
'tgt',
v3ContextEngineId, v3Context,
0, getBulkRepetitions,
[(nextOID, None)],
cbFun, cbCtx
)
else:
cmdGen.sendVarBinds(
snmpEngine,
'tgt',
v3ContextEngineId, v3Context,
[(nextOID, None)],
cbFun, cbCtx
)
cbCtx['errors'] += 1
return
if continueOnErrors != cbCtx['retries']:
cbCtx['retries'] += 1
if varBindTable and varBindTable[-1] and varBindTable[-1][0]:
cbCtx['lastOID'] = varBindTable[-1][0][0]
stopFlag = False
# Walk var-binds
for varBindRow in varBindTable:
for oid, value in varBindRow:
# EOM
if stopOID and oid >= stopOID:
stopFlag = True # stop on out of range condition
elif (value is None or
value.tagSet in (rfc1905.NoSuchObject.tagSet,
rfc1905.NoSuchInstance.tagSet,
rfc1905.EndOfMibView.tagSet)):
stopFlag = True
# remove value enumeration
if value.tagSet == rfc1902.Integer32.tagSet:
value = rfc1902.Integer32(value)
if value.tagSet == rfc1902.Unsigned32.tagSet:
value = rfc1902.Unsigned32(value)
if value.tagSet == rfc1902.Bits.tagSet:
value = rfc1902.OctetString(value)
# Build .snmprec record
context = {
'origOid': oid,
'origValue': value,
'count': cbCtx['count'],
'total': cbCtx['total'],
'iteration': cbCtx['iteration'],
'reqTime': cbCtx['reqTime'],
'startOID': startOID,
'stopOID': stopOID,
'stopFlag': stopFlag,
'variationModule': variationModule
}
try:
line = dataFileHandler.format(oid, value, **context)
except error.MoreDataNotification:
cbCtx['count'] = 0
cbCtx['iteration'] += 1
moreDataNotification = sys.exc_info()[1]
if 'period' in moreDataNotification:
log.msg('%s OIDs dumped, waiting %.2f sec(s)...' % (cbCtx['total'], moreDataNotification['period']))
time.sleep(moreDataNotification['period'])
# initiate another SNMP walk iteration
if getBulkFlag:
cmdGen.sendVarBinds(
snmpEngine,
'tgt',
v3ContextEngineId, v3Context,
0, getBulkRepetitions,
[(startOID, None)],
cbFun, cbCtx
)
else:
cmdGen.sendVarBinds(
snmpEngine,
'tgt',
v3ContextEngineId, v3Context,
[(startOID, None)],
cbFun, cbCtx
)
stopFlag = True # stop current iteration
except error.NoDataNotification:
pass
except error.SnmpsimError:
log.msg('ERROR: %s' % (sys.exc_info()[1],))
continue
else:
outputFile.write(line)
cbCtx['count'] += 1
cbCtx['total'] += 1
if cbCtx['count'] % 100 == 0:
log.msg('OIDs dumped: %s/%s' % (
cbCtx['iteration'], cbCtx['count']))
# Next request time
cbCtx['reqTime'] = time.time()
# Continue walking
return not stopFlag
cbCtx = {
'total': 0,
'count': 0,
'errors': 0,
'iteration': 0,
'reqTime': time.time(),
'retries': continueOnErrors,
'lastOID': startOID
}
if getBulkFlag:
cmdGen = cmdgen.BulkCommandGenerator()
cmdGen.sendVarBinds(
snmpEngine,
'tgt',
v3ContextEngineId, v3Context,
0, getBulkRepetitions,
[(startOID, None)],
cbFun, cbCtx
)
else:
cmdGen = cmdgen.NextCommandGenerator()
cmdGen.sendVarBinds(
snmpEngine,
'tgt',
v3ContextEngineId, v3Context,
[(startOID, None)],
cbFun, cbCtx
)
log.msg('Sending initial %s request for %s (stop at %s)....' % (getBulkFlag and 'GETBULK' or 'GETNEXT', startOID, stopOID or ''))
t = time.time()
# Python 2.4 does not support the "finally" clause
exc_info = None
try:
snmpEngine.transportDispatcher.runDispatcher()
except KeyboardInterrupt:
log.msg('Shutting down process...')
except Exception:
exc_info = sys.exc_info()
if variationModule:
log.msg('Shutting down variation module %s...' % variationModuleName)
try:
variationModule['shutdown'](snmpEngine=snmpEngine,
options=variationModuleOptions,
mode='recording')
except Exception:
log.msg('Variation module %s shutdown FAILED: %s' % (
variationModuleName, sys.exc_info()[1]))
else:
log.msg('Variation module %s shutdown OK' % variationModuleName)
snmpEngine.transportDispatcher.closeDispatcher()
t = time.time() - t
cbCtx['total'] += cbCtx['count']
log.msg('OIDs dumped: %s, elapsed: %.2f sec, rate: %.2f OIDs/sec, errors: %d' % (cbCtx['total'], t, t and cbCtx['count'] // t or 0, cbCtx['errors']))
if exc_info:
for line in traceback.format_exception(*exc_info):
log.msg(line.replace('\n', ';'))
outputFile.flush()
outputFile.close()
snmpsim-0.4.5/scripts/mib2dev.py 0000664 0063214 0063214 00000036562 13412164152 017014 0 ustar ietingof ietingof #!/usr/bin/env python
#
# This file is part of snmpsim software.
#
# Copyright (c) 2010-2019, Ilya Etingof
# License: http://snmplabs.com/snmpsim/license.html
#
# SNMP Simulator MIB to data file converter
#
import getopt
import sys
import random
from pyasn1.type import univ
from pyasn1.error import PyAsn1Error
from pysnmp.smi import compiler, builder, view, error
from pysnmp.smi.rfc1902 import ObjectIdentity
from pysnmp.proto import rfc1902
from pysnmp import debug
from snmpsim.record import snmprec
from snmpsim.error import SnmpsimError
# Defaults
verboseFlag = True
startOID = stopOID = None
mibSources = []
defaultMibSources = ['http://mibs.snmplabs.com/asn1/@mib@']
outputFile = sys.stdout
if hasattr(outputFile, 'buffer'):
outputFile = outputFile.buffer
stringPool = 'Jaded zombies acted quaintly but kept driving their oxen forward'.split()
counterRange = (0, 0xffffffff)
counter64Range = (0, 0xffffffffffffffff)
gaugeRange = (0, 0xffffffff)
timeticksRange = (0, 0xffffffff)
unsignedRange = (0, 65535)
int32Range = (0, 32) # these values are more likely to fit constraints
automaticValues = 5000
tableSize = 10
modNames = []
mibDirs = []
helpMessage = """Usage: %s [--help]
[--version]
[--debug=<%s>]
[--quiet]
[--mib-source=]
[--pysnmp-mib-dir=]
[--start-object=]
[--stop-object=]
[--manual-values]
[--automatic-values=]
[--table-size=]
[--output-file=]
[--string-pool=]
[--string-pool-file=]
[--counter-range=]
[--counter64-range=]
[--gauge-range=]
[--timeticks-range=]
[--unsigned-range=]
[--integer32-range=]""" % (
sys.argv[0],
'|'.join([x for x in getattr(debug, 'FLAG_MAP', getattr(debug, 'flagMap', ()))
if x not in ('app', 'msgproc', 'proxy', 'io', 'secmod', 'dsp', 'acl')])
)
try:
opts, params = getopt.getopt(sys.argv[1:], 'hv', [
'help', 'version', 'debug=', 'quiet',
'pysnmp-mib-dir=', 'mib-module=', 'start-oid=', 'stop-oid=',
'mib-source=', 'start-object=', 'stop-object=',
'manual-values', 'automatic-values=', 'table-size=',
'output-file=', 'string-pool=', 'string-pool-file=', 'integer32-range=',
'counter-range=', 'counter64-range=', 'gauge-range=',
'unsigned-range=', 'timeticks-range='
])
except Exception:
sys.stderr.write('ERROR: %s\r\n%s\r\n' % (sys.exc_info()[1], helpMessage))
sys.exit(-1)
if params:
sys.stderr.write('ERROR: extra arguments supplied %s\r\n%s\r\n' % (params, helpMessage))
sys.exit(-1)
for opt in opts:
if opt[0] == '-h' or opt[0] == '--help':
sys.stderr.write("""\
Synopsis:
Converts MIB modules into SNMP Simulator data files.
Chooses random values or can ask for them interactively.
Able to fill SNMP conceptual tables with consistent indices.
Documentation:
http://snmplabs.com/snmpsim/simulation-based-on-mibs.html
%s
""" % helpMessage)
sys.exit(-1)
if opt[0] == '-v' or opt[0] == '--version':
import snmpsim
import pysmi
import pysnmp
import pyasn1
sys.stderr.write("""\
SNMP Simulator version %s, written by Ilya Etingof
Using foundation libraries: pysmi %s, pysnmp %s, pyasn1 %s.
Python interpreter: %s
Software documentation and support at http://snmplabs.com/snmpsim
%s
""" % (snmpsim.__version__,
hasattr(pysmi, '__version__') and pysmi.__version__ or 'unknown',
hasattr(pysnmp, '__version__') and pysnmp.__version__ or 'unknown',
hasattr(pyasn1, '__version__') and pyasn1.__version__ or 'unknown',
sys.version, helpMessage))
sys.exit(-1)
if opt[0] == '--debug':
debug.setLogger(debug.Debug(*opt[1].split(',')))
if opt[0] == '--quiet':
verboseFlag = False
if opt[0] == '--pysnmp-mib-dir':
mibDirs.append(opt[1])
if opt[0] == '--mib-module':
modNames.append(opt[1])
# obsolete begin
if opt[0] == '--start-oid':
startOID = univ.ObjectIdentifier(opt[1])
if opt[0] == '--stop-oid':
stopOID = univ.ObjectIdentifier(opt[1])
# obsolete end
if opt[0] == '--mib-source':
mibSources.append(opt[1])
if opt[0] == '--start-object':
startOID = ObjectIdentity(*opt[1].split('::', 1))
if opt[0] == '--stop-object':
stopOID = ObjectIdentity(*opt[1].split('::', 1), **dict(last=True))
if opt[0] == '--manual-values':
automaticValues = 0
if opt[0] == '--automatic-values':
try:
automaticValues = int(opt[1])
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--table-size':
try:
tableSize = int(opt[1])
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--output-file':
outputFile = open(opt[1], 'wb')
if opt[0] == '--string-pool':
stringPool = opt[1].split()
if opt[0] == '--string-pool-file':
try:
f = open(opt[1])
stringPool = f.read().split()
f.close()
except Exception:
sys.stderr.write('ERROR: text file "%s" open failure %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--counter-range':
try:
counterRange = [int(x) for x in opt[1].split(',')]
except ValueError:
sys.stderr.write(
'ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--counter64-range':
try:
counter64Range = [int(x) for x in opt[1].split(',')]
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--gauge-range':
try:
gaugeRange = [int(x) for x in opt[1].split(',')]
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--timeticks-range':
try:
timeticksRange = [int(x) for x in opt[1].split(',')]
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--integer32-range':
try:
int32Range = [int(x) for x in opt[1].split(',')]
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
if opt[0] == '--unsigned-range':
try:
unsignedRange = [int(x) for x in opt[1].split(',')]
except ValueError:
sys.stderr.write('ERROR: bad value %s: %s\r\n' % (opt[1], sys.exc_info()[1]))
sys.exit(-1)
# Catch missing params
if not modNames:
sys.stderr.write('ERROR: MIB modules not specified\r\n%s\r\n' % helpMessage)
sys.exit(-1)
def getValue(syntax, hint='', automaticValues=automaticValues):
# Optionally approve chosen value with the user
makeGuess = automaticValues
val = None
while True:
if makeGuess:
# Pick a value
if isinstance(syntax, rfc1902.IpAddress):
val = '.'.join([str(random.randrange(1, 256)) for x in range(4)])
elif isinstance(syntax, rfc1902.TimeTicks):
val = random.randrange(timeticksRange[0], timeticksRange[1])
elif isinstance(syntax, rfc1902.Gauge32):
val = random.randrange(gaugeRange[0], gaugeRange[1])
elif isinstance(syntax, rfc1902.Counter32):
val = random.randrange(counterRange[0], counterRange[1])
elif isinstance(syntax, rfc1902.Integer32):
val = random.randrange(int32Range[0], int32Range[1])
elif isinstance(syntax, rfc1902.Unsigned32):
val = random.randrange(unsignedRange[0], unsignedRange[1])
elif isinstance(syntax, rfc1902.Counter64):
val = random.randrange(counter64Range[0], counter64Range[1])
elif isinstance(syntax, univ.OctetString):
maxWords = 10
val = ' '.join([stringPool[random.randrange(0, len(stringPool))] for i in range(random.randrange(1, maxWords))])
elif isinstance(syntax, univ.ObjectIdentifier):
val = '.'.join(['1', '3', '6', '1', '3'] + [
'%d' % random.randrange(0, 255) for x in range(random.randrange(0, 10))])
elif isinstance(syntax, rfc1902.Bits):
val = [random.randrange(0, 256) for x in range(random.randrange(0, 9))]
else:
val = '?'
try:
# remove value enumeration
if syntax.tagSet == rfc1902.Integer32.tagSet:
return rfc1902.Integer32(syntax.clone(val))
if syntax.tagSet == rfc1902.Unsigned32.tagSet:
return rfc1902.Unsigned32(syntax.clone(val))
if syntax.tagSet == rfc1902.Bits.tagSet:
return rfc1902.OctetString(syntax.clone(val))
return syntax.clone(val)
except PyAsn1Error:
if makeGuess == 1:
sys.stderr.write(
'*** Inconsistent value: %s\r\n*** See constraints and suggest a better one for:\r\n' % (sys.exc_info()[1],)
)
if makeGuess:
makeGuess -= 1
continue
sys.stderr.write('%s# Value [\'%s\'] ? ' % (hint, (val is None and '' or val),))
sys.stderr.flush()
line = sys.stdin.readline().strip()
if line:
if line[:2] == '0x':
if line[:4] == '0x0x':
line = line[2:]
elif isinstance(syntax, univ.OctetString):
val = syntax.clone(hexValue=line[2:])
else:
val = int(line[2:], 16)
else:
val = line
# Data file builder
dataFileHandler = snmprec.SnmprecRecord()
mibBuilder = builder.MibBuilder()
mibBuilder.setMibSources(
*mibBuilder.getMibSources() + tuple(
[builder.ZipMibSource(m).init() for m in mibDirs]
)
)
# Load MIB tree foundation classes
(MibScalar,
MibTable,
MibTableRow,
MibTableColumn) = mibBuilder.importSymbols(
'SNMPv2-SMI',
'MibScalar',
'MibTable',
'MibTableRow',
'MibTableColumn'
)
mibViewController = view.MibViewController(mibBuilder)
compiler.addMibCompiler(
mibBuilder, sources=mibSources or defaultMibSources
)
if isinstance(startOID, ObjectIdentity):
startOID.resolveWithMib(mibViewController)
if isinstance(stopOID, ObjectIdentity):
stopOID.resolveWithMib(mibViewController)
output = []
# MIBs walk
for modName in modNames:
if verboseFlag:
sys.stderr.write('# MIB module: %s, from %s till %s\r\n' % (modName, startOID or 'the beginning', stopOID or 'the end'))
oid = ObjectIdentity(modName).resolveWithMib(mibViewController)
hint = rowHint = ''
rowOID = None
suffix = ()
thisTableSize = 0
while True:
try:
oid, label, _ = mibViewController.getNextNodeName(oid)
except error.NoSuchObjectError:
break
if rowOID and not rowOID.isPrefixOf(oid):
thisTableSize += 1
if automaticValues:
if thisTableSize < tableSize:
oid = tuple(rowOID)
if verboseFlag:
sys.stderr.write('# Synthesizing row #%d of table %s\r\n' % (thisTableSize, rowOID))
else:
if verboseFlag:
sys.stderr.write('# Finished table %s (%d rows)\r\n' % (rowOID, thisTableSize))
rowOID = None
else:
while True:
sys.stderr.write('# Synthesize row #%d for table %s (y/n)? ' % (thisTableSize, rowOID))
sys.stderr.flush()
line = sys.stdin.readline().strip()
if line:
if line[0] in ('y', 'Y'):
oid = tuple(rowOID)
break
elif line[0] in ('n', 'N'):
if verboseFlag:
sys.stderr.write('# Finished table %s (%d rows)\r\n' % (rowOID, thisTableSize))
rowOID = None
break
if startOID and oid < startOID:
continue # skip on premature OID
if stopOID and oid > stopOID:
break # stop on out of range condition
mibName, symName, _ = mibViewController.getNodeLocation(oid)
node, = mibBuilder.importSymbols(mibName, symName)
if isinstance(node, MibTable):
hint = '# Table %s::%s\r\n' % (mibName, symName)
if verboseFlag:
sys.stderr.write('# Starting table %s::%s (%s)\r\n' % (mibName, symName, univ.ObjectIdentifier(oid)))
continue
elif isinstance(node, MibTableRow):
rowIndices = {}
suffix = ()
rowHint = hint + '# Row %s::%s\r\n' % (mibName, symName)
for impliedFlag, idxModName, idxSymName in node.getIndexNames():
idxNode, = mibBuilder.importSymbols(idxModName, idxSymName)
rowHint += '# Index %s::%s (type %s)\r\n' % (idxModName, idxSymName, idxNode.syntax.__class__.__name__)
rowIndices[idxNode.name] = getValue(idxNode.syntax, verboseFlag and rowHint or '')
suffix = suffix + node.getAsName(rowIndices[idxNode.name], impliedFlag)
if not rowIndices:
if verboseFlag:
sys.stderr.write('# WARNING: %s::%s table has no index!\r\n' % (mibName, symName))
if rowOID is None:
thisTableSize = 0
rowOID = univ.ObjectIdentifier(oid)
continue
elif isinstance(node, MibTableColumn):
oid = node.name
if oid in rowIndices:
val = rowIndices[oid]
else:
val = getValue(node.syntax,
verboseFlag and rowHint + '# Column %s::%s (type %s)\r\n' % (mibName, symName, node.syntax.__class__.__name__) or '')
elif isinstance(node, MibScalar):
hint = ''
oid = node.name
suffix = (0,)
val = getValue(node.syntax, verboseFlag and '# Scalar %s::%s (type %s)\r\n' % (mibName, symName, node.syntax.__class__.__name__) or '')
else:
hint = ''
continue
output.append((oid + suffix, val))
output.sort(key=lambda x: univ.ObjectIdentifier(x[0]))
unique = set()
for oid, val in output:
if oid in unique:
if verboseFlag:
sys.stderr.write('# Dropping duplicate OID %s\r\n' % (univ.ObjectIdentifier(oid),))
else:
try:
outputFile.write(
dataFileHandler.format(oid, val)
)
except SnmpsimError:
sys.stderr.write('ERROR: %s\r\n' % (sys.exc_info()[1],))
else:
unique.add(oid)
if verboseFlag:
sys.stderr.write('# End of %s, %s OID(s) dumped\r\n' % (modName, len(unique)))
outputFile.flush()
outputFile.close()
snmpsim-0.4.5/THANKS.txt 0000664 0063214 0063214 00000000065 13051045252 015137 0 ustar ietingof ietingof Simon Crook
Yateen Bhagat
Florent Brisson
Rich Brown
snmpsim-0.4.5/MANIFEST.in 0000664 0063214 0063214 00000000235 13175435562 015161 0 ustar ietingof ietingof include *.txt *.md *.sh
recursive-include data *.snmprec *.snmpwalk *.sapwalk *.txt
recursive-include variation *.py
recursive-include docs *.rst *.py *.svg
snmpsim-0.4.5/PKG-INFO 0000664 0063214 0063214 00000003261 13412164240 014504 0 ustar ietingof ietingof Metadata-Version: 1.0
Name: snmpsim
Version: 0.4.5
Summary: SNMP Agents simulator
Home-page: https://github.com/etingof/snmpsim
Author: Ilya Etingof
Author-email: etingof@gmail.com
License: BSD
Description: SNMP Simulator is a tool that acts as multitude of SNMP Agents built into real physical devices, from SNMP Manager's point of view. Simulator builds and uses a database of physical devices' SNMP footprints to respond like their original counterparts do.
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Communications
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Networking :: Monitoring
snmpsim-0.4.5/devel-requirements.txt 0000664 0063214 0063214 00000000114 13345010600 017755 0 ustar ietingof ietingof Sphinx <= 1.6; python_version < '2.7'
Sphinx > 1.6; python_version >= '2.7'
snmpsim-0.4.5/README.md 0000664 0063214 0063214 00000010655 13412164152 014675 0 ustar ietingof ietingof
SNMP Simulator
--------------
[](https://pypi.org/project/snmpsim/)
[](https://pypi.org/project/snmpsim/)
[](https://travis-ci.org/etingof/snmpsim)
[](https://raw.githubusercontent.com/etingof/snmpsim/master/LICENSE.txt)
This is a pure-Python, open source and free implementation of SNMP agents simulator
distributed under 2-clause [BSD license](http://snmplabs.com/snmpsim/license.html).
Features
--------
* Pure-Python, easy to deploy and highly portable
* SNMPv1/v2c/v3 support
* SNMPv3 USM supports MD5/SHA/SHA224/SHA256/SHA384/SHA512 auth and
DES/3DES/AES128/AES192/AES256 privacy crypto algorithms
* Runs over IPv4 and/or IPv6 transports
* Simulates many EngineID's, each with its own set of simulated objects
* Varies response based on SNMP Community, Context, source/destination addresses and ports
* Can gather and store snapshots of SNMP Agents for later simulation
* Can run simulation based on MIB files, snmpwalk and sapwalk output
* Can gather simulation data from network traffic or tcpdump snoops
* Can gather simulation data from external program invocation or a SQL database
* Can trigger SNMP TRAP/INFORMs on SET operations
* Capable to simultaneously simulate tens of thousands of Agents
* Easy to extend by Python scripting
Download
--------
SNMP simulator software is freely available for download from [PyPI](https://pypi.org/project/snmpsim/)
and [project site](http://snmplabs.com/snmpsim/download.html).
Installation
------------
Just run:
```bash
$ pip install snmpsim
```
How to use SNMP simulator
-------------------------
Once installed, invoke snmpsimd.py and point it to a directory with simulation data:
```
$ snmpsimd.py --data-dir=./data --agent-udpv4-endpoint=127.0.0.1:1024
```
Simulation data is stored in simple plaint-text files having OID|TYPE|VALUE
format:
```
$ cat ./data/public.snmprec
1.3.6.1.2.1.1.1.0|4|Linux 2.6.25.5-smp SMP Tue Jun 19 14:58:11 CDT 2007 i686
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|233425120
1.3.6.1.2.1.2.2.1.6.2|4x|00127962f940
1.3.6.1.2.1.4.22.1.3.2.192.21.54.7|64x|c3dafe61
...
```
Simulator maps query parameters like SNMP community names, SNMPv3 contexts or
IP addresses into data files.
You can immediately generate simulation data file by querying existing SNMP agent:
```
$ snmprec.py --agent-udpv4-endpoint=demo.snmplabs.com --output-file=./data/public.snmprec
SNMP version 2c, Community name: public
Querying UDP/IPv4 agent at 195.218.195.228:161
Agent response timeout: 3.00 secs, retries: 3
Sending initial GETNEXT request for 1.3.6 (stop at )....
OIDs dumped: 182, elapsed: 11.97 sec, rate: 7.00 OIDs/sec, errors: 0
```
Alternatively, you could build simulation data from a MIB file:
```
$ mib2dev.py --output-file=./data/public.snmprec --mib-module=IF-MIB
# MIB module: IF-MIB, from the beginning till the end
# Starting table IF-MIB::ifTable (1.3.6.1.2.1.2.2)
# Synthesizing row #1 of table 1.3.6.1.2.1.2.2.1
...
# Finished table 1.3.6.1.2.1.2.2.1 (10 rows)
# End of IF-MIB, 177 OID(s) dumped
```
Or even sniff on the wire, recover SNMP traffic there and build simulation
data from it.
Besides static files, SNMP simulator can be configured to call its plugin modules
for simulation data. We ship plugins to interface SQL and noSQL databases, file-based
key-value stores and other sources of information.
We maintain publicly available SNMP simulator instance at
[demo.snmplabs.com](http://snmplabs.com/snmpsim/public-snmp-simulator.html). You are
welcome to query it as much as you wish.
Documentation
-------------
Detailed information on SNMP simulator usage could be found at
[snmpsim site](http://snmplabs.com/snmpsim/).
Getting help
------------
If something does not work as expected,
[open an issue](https://github.com/etingof/snmpsim/issues) at GitHub or
post your question [on Stack Overflow](https://stackoverflow.com/questions/ask)
or try browsing snmpsim [mailing list archives](https://sourceforge.net/p/snmpsim/mailman/snmpsim-users/).
Feedback and collaboration
--------------------------
I'm interested in bug reports, fixes, suggestions and improvements. Your
pull requests are very welcome!
Copyright (c) 2010-2019, [Ilya Etingof](mailto:etingof@gmail.com). All rights reserved.